Browse Source

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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
06f576c4ab
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/x86/dct_init.c

+ 1
- 1
libavcodec/x86/dct_init.c View File

@@ -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;


Loading…
Cancel
Save