Commit 997de2e8 authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_mpdecimate: Add missing emms_c()

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent ade31b94
......@@ -131,10 +131,13 @@ static int decimate_frame(AVFilterContext *ctx,
cur->data[plane], cur->linesize[plane],
ref->data[plane], ref->linesize[plane],
FF_CEIL_RSHIFT(ref->width, hsub),
FF_CEIL_RSHIFT(ref->height, vsub)))
FF_CEIL_RSHIFT(ref->height, vsub))) {
emms_c();
return 0;
}
}
emms_c();
return 1;
}
......
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