]> git.sesse.net Git - vlc/commitdiff
Revert "ts.c: check that pts is valid for H264"
authorIlkka Ollakka <ileoo@videolan.org>
Thu, 8 Jul 2010 13:09:56 +0000 (16:09 +0300)
committerIlkka Ollakka <ileoo@videolan.org>
Thu, 8 Jul 2010 13:09:56 +0000 (16:09 +0300)
This reverts commit cf45f5073677d2e7bfe57066c426340703198107.

modules/mux/mpeg/ts.c

index abe62c4fa86711263faade1fcd0c954e4d090ed0..eb0ce1243aa75823a414a7c191ca0d4a4eabbd0e 100644 (file)
@@ -1604,8 +1604,7 @@ static int Mux( sout_mux_t *p_mux )
                         }
 
                         /* Convert to pes */
-                        if( (p_stream->i_stream_id == 0xa0 ||
-                             p_stream->i_stream_type == 0x1b ) && /*Workaroud for bug #3306 */
+                        if( p_stream->i_stream_id == 0xa0 &&
                             p_data->i_pts <= 0 )
                         {
                             /* XXX yes I know, it's awful, but it's needed,