diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-08-31 21:30:44 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-04 11:04:45 +0200 |
commit | 30e8ab8bc4782dc8ddfe2bb1b80e9b64bf221c98 (patch) | |
tree | 1ed76acfb0868c4c8c1e01bbf53b97adb2531e4c /libavfilter | |
parent | 78d4bd260ff40ef15838d5a38a70c0ba6cf3981d (diff) | |
download | ffmpeg-30e8ab8bc4782dc8ddfe2bb1b80e9b64bf221c98.tar.gz |
avfilter/af_amultiply: Remove unnecessary emms_c()
The floating point dsp code does not use MMX registers
since 2718a3be1f8867fd4f6cb3f452d6917838b1ed88.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/af_amultiply.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/af_amultiply.c b/libavfilter/af_amultiply.c index 3d8782002b..0e2bdacd8f 100644 --- a/libavfilter/af_amultiply.c +++ b/libavfilter/af_amultiply.c @@ -90,7 +90,6 @@ static int activate(AVFilterContext *ctx) plane_samples); } } - emms_c(); av_frame_free(&s->frames[0]); av_frame_free(&s->frames[1]); |