aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-11-01 10:12:26 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-11-04 01:26:25 +0100
commit2fdaeec41bef822df6a0c6294878a723300035b6 (patch)
treeafb21a798b56ff22dfce4749dc45f2cb25928e51
parent392ab35db1300141220e2e772e2f785c5bae8784 (diff)
downloadffmpeg-2fdaeec41bef822df6a0c6294878a723300035b6.tar.gz
avfilter/vf_deshake: Remove unnecessary emms_c
Redundant since ea043cc53ed3506775ec6239ed5f8a20718b1098 (which made 16x16 no longer use MMX). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libavfilter/vf_deshake.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavfilter/vf_deshake.c b/libavfilter/vf_deshake.c
index d44dd71eb0..cb062dd11f 100644
--- a/libavfilter/vf_deshake.c
+++ b/libavfilter/vf_deshake.c
@@ -53,7 +53,6 @@
#include "internal.h"
#include "video.h"
#include "libavutil/common.h"
-#include "libavutil/emms.h"
#include "libavutil/file_open.h"
#include "libavutil/mem.h"
#include "libavutil/opt.h"
@@ -178,7 +177,6 @@ static void find_block_motion(DeshakeContext *deshake, uint8_t *src1,
mv->x = -1;
mv->y = -1;
}
- emms_c();
//av_log(NULL, AV_LOG_ERROR, "%d\n", smallest);
//av_log(NULL, AV_LOG_ERROR, "Final: (%d, %d) = %d x %d\n", cx, cy, mv->x, mv->y);
}