aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/vf_hqdn3d.c
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2014-03-05 10:41:33 +0100
committerSean McGovern <gseanmcg@gmail.com>2014-04-14 18:29:46 -0400
commitb1432e905d462198a8d7834b256848f2b9e4f8e6 (patch)
tree2d45052b83f59c40a6eb808e8ea46cb2aed97c55 /libavfilter/vf_hqdn3d.c
parent1bccf68caeee787139f22679e1300a5eea048cf5 (diff)
downloadffmpeg-b1432e905d462198a8d7834b256848f2b9e4f8e6.tar.gz
avfilter: Add missing emms_c when needed
Arch specific calls should have an emms_c following to keep the cpu state consistent. Reported-By: wm4 CC: libav-stable@libav.org (cherry picked from commit e995cf1bccc6e91bbaa6a8771e23fb3ab259c110)
Diffstat (limited to 'libavfilter/vf_hqdn3d.c')
-rw-r--r--libavfilter/vf_hqdn3d.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_hqdn3d.c b/libavfilter/vf_hqdn3d.c
index e2d90d53ab..ae794d8df0 100644
--- a/libavfilter/vf_hqdn3d.c
+++ b/libavfilter/vf_hqdn3d.c
@@ -155,6 +155,7 @@ static void denoise_depth(HQDN3DContext *hqdn3d,
else
denoise_temporal(src, dst, frame_ant,
w, h, sstride, dstride, temporal, depth);
+ emms_c();
}
#define denoise(...) \