[vlc-commits] packetizer: dts: implement draining and handle discontinuities

Francois Cartegnie git at videolan.org
Wed Oct 26 19:07:04 CEST 2016


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Wed Oct 26 15:41:36 2016 +0200| [265bb9ebf702ee23b0fa5144b6598060a4d9fca4] | committer: Francois Cartegnie

packetizer: dts: implement draining and handle discontinuities

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

 modules/packetizer/dts.c | 51 ++++++++++++++++++++++++------------------------
 1 file changed, 26 insertions(+), 25 deletions(-)

diff --git a/modules/packetizer/dts.c b/modules/packetizer/dts.c
index f4a0801..0d97fd1 100644
--- a/modules/packetizer/dts.c
+++ b/modules/packetizer/dts.c
@@ -125,35 +125,33 @@ static block_t *PacketizeBlock( decoder_t *p_dec, block_t **pp_block )
     uint8_t p_header[VLC_DTS_HEADER_SIZE];
     block_t *p_out_buffer;
 
-    if( !pp_block || !*pp_block ) return NULL;
+    block_t *p_block = pp_block ? *pp_block : NULL;
 
-    if( (*pp_block)->i_flags & (BLOCK_FLAG_DISCONTINUITY | BLOCK_FLAG_CORRUPTED) )
+    if( p_block )
     {
-        if( (*pp_block)->i_flags & BLOCK_FLAG_CORRUPTED )
-        {
+        if ( p_block->i_flags & (BLOCK_FLAG_DISCONTINUITY|BLOCK_FLAG_CORRUPTED) ) {
+            /* First always drain complete blocks before discontinuity */
+            block_t *p_drain = PacketizeBlock( p_dec, NULL );
+            if(p_drain)
+                return p_drain;
+
             PacketizeFlush( p_dec );
-            block_Release( *pp_block );
-            *pp_block = NULL;
-            return NULL;
-        }
-        else /* BLOCK_FLAG_DISCONTINUITY */
-        {
-            p_sys->b_discontinuity = true;
-            date_Set( &p_sys->end_date, 0 );
+
+            if ( p_block->i_flags & BLOCK_FLAG_CORRUPTED ) {
+                block_Release( p_block );
+                return NULL;
+            }
         }
 
-    }
+        if ( !date_Get( &p_sys->end_date ) && p_block->i_pts <= VLC_TS_INVALID ) {
+            /* We've just started the stream, wait for the first PTS. */
+            block_Release( p_block );
+            return NULL;
+        }
 
-    if( !date_Get( &p_sys->end_date ) && (*pp_block)->i_pts <= VLC_TS_INVALID)
-    {
-        /* We've just started the stream, wait for the first PTS. */
-        block_Release( *pp_block );
-        *pp_block = NULL;
-        return NULL;
+        block_BytestreamPush( &p_sys->bytestream, p_block );
     }
 
-    block_BytestreamPush( &p_sys->bytestream, *pp_block );
-
     while( 1 )
     {
         switch( p_sys->i_state )
@@ -211,14 +209,16 @@ static block_t *PacketizeBlock( decoder_t *p_dec, block_t **pp_block )
             p_sys->i_state = STATE_NEXT_SYNC;
 
         case STATE_NEXT_SYNC:
-            /* TODO: If pp_block == NULL, flush the buffer without checking the
-             * next sync word */
-
             /* Check if next expected frame contains the sync word */
             if( block_PeekOffsetBytes( &p_sys->bytestream,
                                        p_sys->dts.i_frame_size, p_header, 6 )
                 != VLC_SUCCESS )
             {
+                if( p_block == NULL ) /* drain */
+                {
+                    p_sys->i_state = STATE_SEND_DATA;
+                    break;
+                }
                 /* Need more data */
                 return NULL;
             }
@@ -283,7 +283,8 @@ static block_t *PacketizeBlock( decoder_t *p_dec, block_t **pp_block )
             }
 
             /* So p_block doesn't get re-added several times */
-            *pp_block = block_BytestreamPop( &p_sys->bytestream );
+            if( pp_block )
+                *pp_block = block_BytestreamPop( &p_sys->bytestream );
 
             p_sys->i_state = STATE_NOSYNC;
 



More information about the vlc-commits mailing list