Commit c2e3e7bb authored by Gildas Bazin's avatar Gildas Bazin

* src/audio_output/input.c: too much locking.

parent 4db4bfc6
......@@ -309,10 +309,8 @@ int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input,
if( p_input->b_restart )
{
vlc_mutex_lock( &p_aout->mixer_lock );
vlc_mutex_lock( &p_input->lock );
aout_InputDelete( p_aout, p_input );
aout_InputNew( p_aout, p_input );
vlc_mutex_unlock( &p_input->lock );
vlc_mutex_unlock( &p_aout->mixer_lock );
}
......
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