Commit 02eae249 authored by Laurent Aimar's avatar Laurent Aimar

Do not issue input times event when buffering.

parent c90c5e39
......@@ -2399,7 +2399,8 @@ static int EsOutControlLocked( es_out_t *out, int i_query, va_list args )
if( f_position < 0 )
f_position = 0;
input_SendEventTimes( p_sys->p_input, f_position, i_time, i_length );
if( !p_sys->b_buffering )
input_SendEventTimes( p_sys->p_input, f_position, i_time, i_length );
return VLC_SUCCESS;
}
......
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