diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-06-12 00:14:26 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-06-14 01:28:29 +0200 |
commit | 0e8a5ded7e95f67a0681553cb879d97bd6d24c06 (patch) | |
tree | 27bf24679890ebbad5fea4cde1ce37838a7638dd | |
parent | dd61d6489bf27942f8d24b7e31b3b140f1d2f0c6 (diff) | |
download | ffmpeg-0e8a5ded7e95f67a0681553cb879d97bd6d24c06.tar.gz |
swresample/resample: Remove unnecessary emms_c
The last MMX code in swresample has just been removed.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libswresample/resample.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libswresample/resample.c b/libswresample/resample.c index 9c5b7fee72..8f9efc3f21 100644 --- a/libswresample/resample.c +++ b/libswresample/resample.c @@ -497,8 +497,6 @@ static int multiple_resample(ResampleContext *c, AudioData *dst, int dst_size, A } } - emms_c(); - if (c->compensation_distance) { c->compensation_distance -= dst_size; if (!c->compensation_distance) { |