Commit 52e0dc0d authored by Laurent Aimar's avatar Laurent Aimar

Do not rebufferize when transcoding to a non real time output.

parent 04590f5e
......@@ -2288,7 +2288,8 @@ static int EsOutControlLocked( es_out_t *out, int i_query, va_list args )
/* Check buffering state on master clock update */
EsOutDecodersStopBuffering( out, false );
}
else if( b_late )
else if( b_late && ( !out->b_sout ||
!p_sys->p_input->p->b_out_pace_control ) )
{
mtime_t i_pts_delay = input_clock_GetJitter( p_pgrm->p_clock );
......
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