diff --git a/libavcodec/mathops.h b/libavcodec/mathops.h index 1365903913..880e94671f 100644 --- a/libavcodec/mathops.h +++ b/libavcodec/mathops.h @@ -24,7 +24,7 @@ #include "libavutil/common.h" -#if ARCH_X86_32 +#if ARCH_X86 #include "x86/mathops.h" diff --git a/libavcodec/x86/mathops.h b/libavcodec/x86/mathops.h index 6bd4b17705..a66c601878 100644 --- a/libavcodec/x86/mathops.h +++ b/libavcodec/x86/mathops.h @@ -25,6 +25,7 @@ #include "config.h" #include "libavutil/common.h" +#if ARCH_X86_32 #define MULL(ra, rb, shift) \ ({ int rt, dummy; __asm__ (\ "imull %3 \n\t"\ @@ -42,6 +43,7 @@ ({ int64_t rt;\ __asm__ ("imull %2\n\t" : "=A"(rt) : "a" ((int)ra), "g" ((int)rb));\ rt; }) +#endif #if HAVE_CMOV /* median of 3 */