1
0
Fork 0

avfilter/vf_deshake: Remove unnecessary emms_c

Redundant since ea043cc53e
(which made 16x16 no longer use MMX).

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2023-11-01 10:12:26 +01:00
parent 392ab35db1
commit 2fdaeec41b
1 changed files with 0 additions and 2 deletions

View File

@ -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);
}