summaryrefslogtreecommitdiff
path: root/libavfilter/vf_gradfun.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-11-01 14:41:07 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-11-01 14:42:06 +0100
commit599c285162197dae164704131b8f3ff6276c8496 (patch)
tree40abc0be7589a53b3ef5ef1ce1106e4931156f95 /libavfilter/vf_gradfun.c
parent969329fe119a86556766ee0665dfcfb903221408 (diff)
downloadffmpeg-599c285162197dae164704131b8f3ff6276c8496.tar.gz
avfilter/vf_gradfun: add emms_c() for mmxext
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_gradfun.c')
-rw-r--r--libavfilter/vf_gradfun.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_gradfun.c b/libavfilter/vf_gradfun.c
index 6ae7c60d55..0da9e0b7bb 100644
--- a/libavfilter/vf_gradfun.c
+++ b/libavfilter/vf_gradfun.c
@@ -118,6 +118,7 @@ static void filter(GradFunContext *ctx, uint8_t *dst, const uint8_t *src, int wi
ctx->filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh, dither[y & 7]);
if (++y >= height) break;
}
+ emms_c();
}
static av_cold int init(AVFilterContext *ctx)