Commit 3760ad34 authored by Marian Durkovic's avatar Marian Durkovic

don't perform prebuffering for UDP, since it causes refclock fluctuation

as large as +/- 25 msec and too frequent audio up/down sampling
parent e8f15ad9
......@@ -564,6 +564,7 @@ static block_t *BlockChoose( access_t *p_access )
{
msg_Dbg( p_access, "detected TS over raw UDP" );
p_access->pf_block = BlockUDP;
p_access->info.b_prebuffered = VLC_TRUE;
return p_block;
}
......@@ -581,6 +582,7 @@ static block_t *BlockChoose( access_t *p_access )
{
msg_Dbg( p_access, "no supported RTP header detected" );
p_access->pf_block = BlockUDP;
p_access->info.b_prebuffered = VLC_TRUE;
return p_block;
}
......@@ -604,6 +606,7 @@ static block_t *BlockChoose( access_t *p_access )
default:
msg_Dbg( p_access, "no RTP header detected" );
p_access->pf_block = BlockUDP;
p_access->info.b_prebuffered = VLC_TRUE;
return p_block;
}
......
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