]> git.sesse.net Git - vlc/commitdiff
* modules/packetizer/h264.c: oops, forgot to remove a bit of debug code.
authorGildas Bazin <gbazin@videolan.org>
Fri, 22 Oct 2004 11:11:27 +0000 (11:11 +0000)
committerGildas Bazin <gbazin@videolan.org>
Fri, 22 Oct 2004 11:11:27 +0000 (11:11 +0000)
modules/packetizer/h264.c

index 7dfca166dad51f405e3e5169599c377a327b32f8..dd51eb8f4e4a8a29a8d68ba4b537ec5c3f565498 100644 (file)
@@ -182,7 +182,7 @@ static int Open( vlc_object_t *p_this )
         for( i = 0; i < i_sps; i++ )
         {
             int i_length = GetWBE( p );
-            block_t *p_sps = nal_get_annexeb( p_dec, p+2, i_length );
+            block_t *p_sps = nal_get_annexeb( p_dec, p + 2, i_length );
 
             ParseNALBlock( p_dec, p_sps );
             p += 2 + i_length;
@@ -192,7 +192,7 @@ static int Open( vlc_object_t *p_this )
         for( i = 0; i < i_pps; i++ )
         {
             int i_length = GetWBE( p );
-            block_t *p_pps = nal_get_annexeb( p_dec, p+2, i_length );
+            block_t *p_pps = nal_get_annexeb( p_dec, p + 2, i_length );
 
             ParseNALBlock( p_dec, p_pps );
             p += 2 + i_length;
@@ -209,8 +209,6 @@ static int Open( vlc_object_t *p_this )
         p_dec->pf_packetize = Packetize;
     }
 
-        block_ChainRelease( p_sys->p_frame );
-        p_sys->p_frame = 0;
     return VLC_SUCCESS;
 }