* modules/access_out/udp.c: Issue a warning when two PCRs are put inside a

single UDP frame (may disturb some decoders).
This commit is contained in:
Christophe Massiot 2005-01-13 19:03:03 +00:00
parent bca6b23c04
commit cf6e33afe3
1 changed files with 4 additions and 0 deletions

View File

@ -383,7 +383,11 @@ static int Write( sout_access_out_t *p_access, block_t *p_buffer )
p_buffer->p_buffer += i_write;
p_buffer->i_buffer -= i_write;
if ( p_buffer->i_flags & BLOCK_FLAG_CLOCK )
{
if ( p_sys->p_buffer->i_flags & BLOCK_FLAG_CLOCK )
msg_Warn( p_access, "putting two PCRs at once" );
p_sys->p_buffer->i_flags |= BLOCK_FLAG_CLOCK;
}
if( p_sys->p_buffer->i_buffer == p_sys->i_mtu || i_packets > 1 )
{