[vlc-commits] zvbi: fix teletext decoding broken in b3c35a765 (close #7730)

Felix Paul Kühne git at videolan.org
Sat Sep 7 17:20:57 CEST 2013


vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sat Sep  7 15:23:43 2013 +0200| [7f4ef985c1e92daabfbeb959f02f058c4c3f1d0c] | committer: Felix Paul Kühne

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

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

 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