[FFmpeg-cvslog] avfilter/af_sofalizer: Remove unnecessary emms_c()
Andreas Rheinhardt
git at videolan.org
Mon Sep 4 12:19:06 EEST 2023
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Thu Aug 31 21:28:01 2023 +0200| [e2ec90cd0e9434edcb88660acc98f8162d554428] | committer: Andreas Rheinhardt
avfilter/af_sofalizer: Remove unnecessary emms_c()
The floating point dsp code does not use MMX registers
since 2718a3be1f8867fd4f6cb3f452d6917838b1ed88.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e2ec90cd0e9434edcb88660acc98f8162d554428
---
libavfilter/af_sofalizer.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/libavfilter/af_sofalizer.c b/libavfilter/af_sofalizer.c
index 60e0da30e9..5c2f34aa42 100644
--- a/libavfilter/af_sofalizer.c
+++ b/libavfilter/af_sofalizer.c
@@ -598,7 +598,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
} else if (s->type == FREQUENCY_DOMAIN) {
ff_filter_execute(ctx, sofalizer_fast_convolute, &td, NULL, 2);
}
- emms_c();
/* display error message if clipping occurred */
if (n_clippings[0] + n_clippings[1] > 0) {
More information about the ffmpeg-cvslog
mailing list