From bfb28b5ce89f3e950214b67ea95b45e3355c2caf Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Fri, 10 Jun 2022 20:28:06 +0200 Subject: avcodec/x86/idctdsp: Remove obsolete MMX(EXT) 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 --- libavcodec/tests/x86/dct.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'libavcodec/tests') diff --git a/libavcodec/tests/x86/dct.c b/libavcodec/tests/x86/dct.c index 207a2bcb36..ef0662ae37 100644 --- a/libavcodec/tests/x86/dct.c +++ b/libavcodec/tests/x86/dct.c @@ -65,9 +65,6 @@ static const struct algo fdct_tab_arch[] = { }; static const struct algo idct_tab_arch[] = { -#if HAVE_MMX_EXTERNAL - { "SIMPLE-MMX", ff_simple_idct_mmx, FF_IDCT_PERM_SIMPLE, AV_CPU_FLAG_MMX }, -#endif #if CONFIG_MPEG4_DECODER && HAVE_X86ASM #if HAVE_SSE2_EXTERNAL { "XVID-SSE2", ff_xvid_idct_sse2, FF_IDCT_PERM_SSE2, AV_CPU_FLAG_SSE2, 1 }, -- cgit v1.2.3