Commit 7f4ef985 authored by Felix Paul Kühne's avatar Felix Paul Kühne

zvbi: fix teletext decoding broken in b3c35a76 (close #7730)

parent 7439ce19
...@@ -362,7 +362,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block ) ...@@ -362,7 +362,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block )
} }
if( i_lines > 0 ) if( i_lines > 0 )
vbi_decode( p_sys->p_vbi_dec, p_sliced, i_lines, (double)p_block->i_pts / 1000000 ); vbi_decode( p_sys->p_vbi_dec, p_sliced, i_lines, 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