Browse Source

Fix compilation with --disable-mmx.

tags/n2.1
Carl Eugen Hoyos 12 years ago
parent
commit
8fe1fb41ac
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/x86/dsputil_init.c

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

@@ -678,7 +678,7 @@ av_cold void ff_dsputil_init_x86(DSPContext *c, AVCodecContext *avctx)
int cpu_flags = av_get_cpu_flags();

#if HAVE_7REGS && HAVE_INLINE_ASM
if (cpu_flags & AV_CPU_FLAG_CMOV)
if (HAVE_MMX && cpu_flags & AV_CPU_FLAG_CMOV)
c->add_hfyu_median_prediction = ff_add_hfyu_median_prediction_cmov;
#endif



Loading…
Cancel
Save