[vlc-commits] zvbi: fix teletext decoding broken in b3c35a765 (close #7730)
Felix Paul Kühne
git at videolan.org
Sat Sep 7 19:33:08 CEST 2013
vlc/vlc-2.1 | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sat Sep 7 15:23:43 2013 +0200| [1435abbf7cd8e2349dca452683936bc70c255a76] | committer: Jean-Baptiste Kempf
zvbi: fix teletext decoding broken in b3c35a765 (close #7730)
(cherry picked from commit 7f4ef985c1e92daabfbeb959f02f058c4c3f1d0c)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.1.git/?a=commit;h=1435abbf7cd8e2349dca452683936bc70c255a76
---
modules/codec/zvbi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/codec/zvbi.c b/modules/codec/zvbi.c
index ccae4e8..2a1e131 100644
--- a/modules/codec/zvbi.c
+++ b/modules/codec/zvbi.c
@@ -362,7 +362,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block )
}
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 );
}
/* */
More information about the vlc-commits
mailing list