Commit 8ee331bf authored by Marian Durkovic's avatar Marian Durkovic

forwardport [13195]

parent 3c3f388b
...@@ -99,7 +99,7 @@ struct access_sys_t ...@@ -99,7 +99,7 @@ struct access_sys_t
vlc_bool_t b_auto_mtu; vlc_bool_t b_auto_mtu;
/* reorder rtp packets when out-of-sequence */ /* reorder rtp packets when out-of-sequence */
int64_t i_rtp_late; mtime_t i_rtp_late;
uint16_t i_last_seqno; uint16_t i_last_seqno;
block_t *p_list; block_t *p_list;
block_t *p_end; block_t *p_end;
...@@ -458,6 +458,7 @@ static block_t *BlockParseRTP( access_t *p_access, block_t *p_block ) ...@@ -458,6 +458,7 @@ static block_t *BlockParseRTP( access_t *p_access, block_t *p_block )
/* Return the packet without the RTP header, remember seqno in i_dts */ /* Return the packet without the RTP header, remember seqno in i_dts */
p_block->i_buffer -= i_skip; p_block->i_buffer -= i_skip;
p_block->p_buffer += i_skip; p_block->p_buffer += i_skip;
p_block->i_pts = mdate();
p_block->i_dts = (mtime_t) i_sequence_number; p_block->i_dts = (mtime_t) i_sequence_number;
#if 0 #if 0
...@@ -482,19 +483,19 @@ trash: ...@@ -482,19 +483,19 @@ trash:
static block_t *BlockPrebufferRTP( access_t *p_access, block_t *p_block ) static block_t *BlockPrebufferRTP( access_t *p_access, block_t *p_block )
{ {
access_sys_t *p_sys = p_access->p_sys; access_sys_t *p_sys = p_access->p_sys;
int64_t i_first = mdate(); mtime_t i_first = mdate();
int i_count = 0; int i_count = 0;
block_t *p = p_block; block_t *p = p_block;
for( ;; ) for( ;; )
{ {
int64_t i_date = mdate(); mtime_t i_date = mdate();
if( p && rtp_ChainInsert( p_access, p )) if( p && rtp_ChainInsert( p_access, p ))
i_count++; i_count++;
/* Require at least 3 packets in the buffer */ /* Require at least 2 packets in the buffer */
if( i_count > 3 && (i_date - i_first) > p_sys->i_rtp_late ) if( i_count > 2 && (i_date - i_first) > p_sys->i_rtp_late )
break; break;
p = BlockParseRTP( p_access, BlockUDP( p_access )); p = BlockParseRTP( p_access, BlockUDP( p_access ));
...@@ -519,17 +520,19 @@ static block_t *BlockRTP( access_t *p_access ) ...@@ -519,17 +520,19 @@ static block_t *BlockRTP( access_t *p_access )
access_sys_t *p_sys = p_access->p_sys; access_sys_t *p_sys = p_access->p_sys;
block_t *p; block_t *p;
again: while ( !p_sys->p_list ||
p = BlockParseRTP( p_access, BlockUDP( p_access )); ( mdate() - p_sys->p_list->i_pts ) < p_sys->i_rtp_late )
{
if ( !p ) p = BlockParseRTP( p_access, BlockUDP( p_access ));
return NULL;
if ( !p_access->info.b_prebuffered ) if ( !p )
return BlockPrebufferRTP( p_access, p ); return NULL;
if( !rtp_ChainInsert( p_access, p )) if ( !p_access->info.b_prebuffered )
goto again; return BlockPrebufferRTP( p_access, p );
rtp_ChainInsert( p_access, p );
}
p = p_sys->p_list; p = p_sys->p_list;
p_sys->p_list = p_sys->p_list->p_next; p_sys->p_list = p_sys->p_list->p_next;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment