Commit 8f114b49 authored by Thomas Guillem's avatar Thomas Guillem

Revert "decoder: fix signal call from input_DecoderFlush"

Decoder still need to be signaled when FIFO is already empty.

This reverts commit 32040fdc.
parent 4637aca0
......@@ -1881,10 +1881,9 @@ void input_DecoderFlush( decoder_t *p_dec )
* to display one frame */
if( p_owner->fmt.i_cat == VIDEO_ES && p_owner->paused
&& p_owner->frames_countdown == 0 )
{
p_owner->frames_countdown++;
vlc_fifo_Signal( p_owner->p_fifo );
}
vlc_fifo_Unlock( p_owner->p_fifo );
}
......
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