Commit ac5806cb authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Telx: Remove trailing spaces

parent 0b6c9d7a
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment