Commit f20f1ca7 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

playlist: remove redundant call to input_Stop()

The input is already stopped if it has reached end or error.
parent 8e662f59
......@@ -462,12 +462,6 @@ static void LoopInput( playlist_t *p_playlist )
PL_LOCK;
return;
}
/* This input has finished, ask it to die ! */
else if( p_input->b_error || p_input->b_eof )
{
PL_DEBUG( "finished input" );
input_Stop( p_input );
}
vlc_cond_wait( &p_sys->signal, &p_sys->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