From ebaf571aca2dd6ce3caeeeec4210a3fccd47e7db Mon Sep 17 00:00:00 2001 From: Henrik Gramner Date: Sat, 1 Aug 2015 17:12:48 +0200 Subject: x86: dct: Disable dct32_float_sse on x86-64 There is an SSE2 implementation so the SSE version is never used. The "SSE" version also happens to contain SSE2 instructions on x86-64. Signed-off-by: Anton Khirnov --- libavcodec/x86/dct32.asm | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libavcodec/x86/dct32.asm') diff --git a/libavcodec/x86/dct32.asm b/libavcodec/x86/dct32.asm index 9c147b9c00..0879c685f1 100644 --- a/libavcodec/x86/dct32.asm +++ b/libavcodec/x86/dct32.asm @@ -482,7 +482,10 @@ cglobal dct32_float, 2, 3, 16, out, in, tmp %endif %endmacro +%if ARCH_X86_32 INIT_XMM sse DCT32_FUNC +%endif + INIT_XMM sse2 DCT32_FUNC -- cgit v1.2.3