diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-06-14 20:21:03 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-06-22 13:38:52 +0200 |
commit | 25e39f8c727190520e1274be9bf0b4b3302587f9 (patch) | |
tree | 41042681f2ca6e49cf44c9c9b9f4b5b67bb0e77d /libavcodec/x86/imdct36.asm | |
parent | 6cb3ee80b3b58d692a722fb38ee05f170ae8b0d2 (diff) | |
download | ffmpeg-25e39f8c727190520e1274be9bf0b4b3302587f9.tar.gz |
avcodec/x86/mpegaudiodsp: Remove obsolete SSE function
The only systems which benefit from imdct36_blocks_sse are truely
ancient 32bit x86s as all other systems use at least the SSE2 versions
(this includes all x64 cpus (which is why this code is restricted
to x86-32)).
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/x86/imdct36.asm')
-rw-r--r-- | libavcodec/x86/imdct36.asm | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/x86/imdct36.asm b/libavcodec/x86/imdct36.asm index b386ab95fc..888c6bf4d6 100644 --- a/libavcodec/x86/imdct36.asm +++ b/libavcodec/x86/imdct36.asm @@ -373,11 +373,6 @@ cglobal imdct36_float, 4,4,9, out, buf, in, win RET %endmacro -%if ARCH_X86_32 -INIT_XMM sse -DEFINE_IMDCT -%endif - INIT_XMM sse2 DEFINE_IMDCT |