mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avfilter/vf_mpdecimate: Add missing emms_c()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 997de2e8107cc4256e50611463d609b18fe9619f) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
748d5fa2ed
commit
e4a6a8553e
@ -131,10 +131,13 @@ static int decimate_frame(AVFilterContext *ctx,
|
|||||||
cur->data[plane], cur->linesize[plane],
|
cur->data[plane], cur->linesize[plane],
|
||||||
ref->data[plane], ref->linesize[plane],
|
ref->data[plane], ref->linesize[plane],
|
||||||
FF_CEIL_RSHIFT(ref->width, hsub),
|
FF_CEIL_RSHIFT(ref->width, hsub),
|
||||||
FF_CEIL_RSHIFT(ref->height, vsub)))
|
FF_CEIL_RSHIFT(ref->height, vsub))) {
|
||||||
|
emms_c();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
emms_c();
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user