Commit 9f2aa4b1 authored by Laurent Aimar's avatar Laurent Aimar

* input_dec: do not switch to minimize-threads in sout mode if input are

not pace controlable (temporary workaround, we should create a thread
that handles all packetizers).
parent bacc1e26
......@@ -133,7 +133,7 @@ decoder_t * input_RunDecoder( input_thread_t * p_input, es_descriptor_t * p_es )
return NULL;
}
if( !p_es->b_force_decoder && p_input->stream.p_sout )
if( !p_es->b_force_decoder && p_input->stream.p_sout && p_input->stream.b_pace_control )
{
msg_Dbg( p_input, "stream out mode -> no decoder thread" );
p_dec->p_owner->b_own_thread = VLC_FALSE;
......
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