aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/x86/h264_qpel_10bit.asm
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-06-09 03:32:03 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-06-22 13:35:11 +0200
commit4011a76494a5ff6844312813bc753aae8e54c2f0 (patch)
tree5b5e294f550a8da9375d487beaa4cec835e3a1b7 /libavcodec/x86/h264_qpel_10bit.asm
parenta51279bbdea0d6db920d71980262bccd0ce78226 (diff)
downloadffmpeg-4011a76494a5ff6844312813bc753aae8e54c2f0.tar.gz
avcodec/x86/h264_qpel: Remove obsolete MMXEXT functions
x64 always has MMX, MMXEXT, SSE and SSE2 and this means that some functions for MMX, MMXEXT and 3dnow are always overridden by other functions (unless one e.g. explicitly disables SSE2) for x64. So given that the only systems that benefit from these functions are truely ancient 32bit x86s they are removed. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/x86/h264_qpel_10bit.asm')
-rw-r--r--libavcodec/x86/h264_qpel_10bit.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/h264_qpel_10bit.asm b/libavcodec/x86/h264_qpel_10bit.asm
index 872268300a..c862cb2226 100644
--- a/libavcodec/x86/h264_qpel_10bit.asm
+++ b/libavcodec/x86/h264_qpel_10bit.asm
@@ -153,7 +153,7 @@ cglobal %1_h264_qpel%4_%2_10, %5,%6 + 2,%7
;cpu, put/avg, mc, 4/8, ...
%macro cglobal_mc 6
%assign i %3*2
-%if ARCH_X86_32 || cpuflag(sse2)
+%if cpuflag(sse2)
MCAxA_OP %1, %2, %3, i, %4,%5,%6
%endif