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

decoder: fix data race in input_DecoderFrameNext()

See also 0fde3bea.
parent cc116115
......@@ -578,7 +578,7 @@ void input_DecoderFrameNext( decoder_t *p_dec, mtime_t *pi_duration )
*pi_duration = 0;
vlc_mutex_lock( &p_owner->lock );
if( p_dec->fmt_out.i_cat == VIDEO_ES )
if( p_owner->fmt.i_cat == VIDEO_ES )
{
if( p_owner->b_paused && p_owner->p_vout )
{
......
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