diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-08-31 20:37:56 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-04 11:04:45 +0200 |
commit | d84ee80c04d3704c571025364f73c7d0208c7c6a (patch) | |
tree | e3b69aeea77a40af5528c63424b16562d844c552 | |
parent | c59b082e20a1b3acb68c25913996c8781f7a07b2 (diff) | |
download | ffmpeg-d84ee80c04d3704c571025364f73c7d0208c7c6a.tar.gz |
avfilter/vf_gblur: Remove unnecessary emms_c()
There is no MMX ASM code for gblur.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavfilter/vf_gblur.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/vf_gblur.c b/libavfilter/vf_gblur.c index 6e8ef96235..6ce2c84736 100644 --- a/libavfilter/vf_gblur.c +++ b/libavfilter/vf_gblur.c @@ -73,7 +73,6 @@ static int filter_horizontally(AVFilterContext *ctx, void *arg, int jobnr, int n s->horiz_slice(buffer + width * slice_start, width, slice_end - slice_start, steps, nu, boundaryscale, localbuf); - emms_c(); return 0; } |