Commit 392ab35d authored by Andreas Rheinhardt's avatar Andreas Rheinhardt

avfilter/vf_mpdecimate: Remove emms_c

Unnecessary now that the pixelutils API abides by the ABI.
Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@outlook.com>
parent 5b85ca53
......@@ -24,7 +24,6 @@
* Rich Felker.
*/
#include "libavutil/emms.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "libavutil/pixelutils.h"
......@@ -142,13 +141,10 @@ static int decimate_frame(AVFilterContext *ctx,
cur->data[plane], cur->linesize[plane],
ref->data[plane], ref->linesize[plane],
AV_CEIL_RSHIFT(ref->width, hsub),
AV_CEIL_RSHIFT(ref->height, vsub))) {
emms_c();
AV_CEIL_RSHIFT(ref->height, vsub)))
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