]> git.sesse.net Git - vlc/commitdiff
* Don't skip SPS/PPS after all. Apparently there is sometimes proper data behind...
authorDerk-Jan Hartman <hartman@videolan.org>
Sun, 8 Oct 2006 10:40:59 +0000 (10:40 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Sun, 8 Oct 2006 10:40:59 +0000 (10:40 +0000)
modules/mux/mp4.c

index 86ae6982077352349a82b19d15110d3b07d79776..10acd510f37b9593d010789614d57c0462520a81 100644 (file)
@@ -698,7 +698,7 @@ static block_t *ConvertAVC1( sout_mux_t *p_mux, mp4_stream_t *tk, block_t *p_blo
 
         /* Skip blocks with SPS/PPS */ 
         if( (last[4]&0x1f) == 7 || (last[4]&0x1f) == 8 )
-            p_block->i_buffer = 0;
+            ; // FIXME Find a way to skip dat without frelling everything
 
         last = dat;
         dat += 4;