]> git.sesse.net Git - vlc/commitdiff
* packetizer h264: Donwq't gather the block chain when resending the headers. Only...
authorDerk-Jan Hartman <hartman@videolan.org>
Tue, 17 Oct 2006 18:23:48 +0000 (18:23 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Tue, 17 Oct 2006 18:23:48 +0000 (18:23 +0000)
modules/packetizer/h264.c

index bf75ec806ab20c56f4df2b923425adc7bde52314..8b9b4c6579b3fc1fc2fdfde8bb0cea96c5afb7ea 100644 (file)
@@ -502,7 +502,7 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
             p_sps->i_pts = p_pps->i_pts = p_pic->i_pts;       \
             block_ChainAppend( &p_sps, p_pps );               \
             block_ChainAppend( &p_sps, p_pic );               \
-            p_pic = block_ChainGather( p_sps );               \
+            p_pic = p_sps;                                    \
             p_sys->b_header = VLC_TRUE;                       \
         }                                                     \
     } while(0)