Commit 8132ed4a authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_mpdecimate: Add missing emms_c()

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 997de2e8)
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent fc0f08f9
......@@ -120,10 +120,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