Преглед изворни кода

avcodec/x86/dct_init: fix build failure with clang && disable-optimizations

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Michael Niedermayer пре 11 година
родитељ
комит
06f576c4ab
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      libavcodec/x86/dct_init.c

+ 1 - 1
libavcodec/x86/dct_init.c

@@ -30,7 +30,7 @@ av_cold void ff_dct_init_x86(DCTContext *s)
 {
     int cpu_flags = av_get_cpu_flags();
 
-    if (EXTERNAL_SSE(cpu_flags) && ARCH_X86_32)
+    if (ARCH_X86_32 && EXTERNAL_SSE(cpu_flags))
         s->dct32 = ff_dct32_float_sse;
     if (EXTERNAL_SSE2(cpu_flags))
         s->dct32 = ff_dct32_float_sse2;