vlc | branch: master | Jean-Baptiste Kempf <[email protected]> | Mon Apr  6 
19:53:25 2015 +0200| [ac5806cb25c0bdf6482b12b6a453d851d3cbdb0f] | committer: 
Jean-Baptiste Kempf

Telx: Remove trailing spaces

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ac5806cb25c0bdf6482b12b6a453d851d3cbdb0f
---

 modules/codec/telx.c |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/modules/codec/telx.c b/modules/codec/telx.c
index 3b221fb..dfc5dcb 100644
--- a/modules/codec/telx.c
+++ b/modules/codec/telx.c
@@ -459,7 +459,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t 
**pp_block )
     {
         uint8_t * packet = (uint8_t *) p_block->p_buffer+offset;
 //        int vbi = ((0x20 & packet[2]) != 0 ? 0 : 313) + (0x1F & packet[2]);
- 
+
 //        dbg((p_dec, "vbi %d header %02x %02x %02x\n", vbi, packet[0], 
packet[1], packet[2]));
         if ( packet[0] == 0xFF ) continue;
 
@@ -491,7 +491,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t 
**pp_block )
             /* row 0 : flags and header line */
             int flag = 0;
             int a;
- 
+
             for ( a = 0; a < 6; a++ )
             {
                 flag |= (0xF & (bytereverse( hamming_8_4(packet[8 + a]) ) >> 
4))
@@ -527,7 +527,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t 
**pp_block )
                   (1 & (flag>>18))? " interrupt" : "",
                   (1 & (flag>>19))? " inhibit" : "",
                   (1 & (flag>>20)) ));
- 
+
             if ( (p_sys->i_wanted_page != -1
                    && p_sys->i_page[magazine] != p_sys->i_wanted_page)
                    || !p_sys->b_is_subtitle[magazine] )
@@ -546,7 +546,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t 
**pp_block )
                  p_sys->b_erase[magazine] )
             {
                 int i;
- 
+
                 dbg((p_dec, "ERASE !\n"));
 
                 p_sys->b_erase[magazine] = 0;
@@ -691,7 +691,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t 
**pp_block )
         msg_Warn( p_dec, "can't get spu buffer" );
         goto error;
     }
- 
+
     /* Create a new subpicture region */
     video_format_Init(&fmt, VLC_CODEC_TEXT);
     fmt.i_width = fmt.i_height = 0;

_______________________________________________
vlc-commits mailing list
[email protected]
https://mailman.videolan.org/listinfo/vlc-commits

Reply via email to