mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
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:
parent
392ab35db1
commit
2fdaeec41b
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user