diff vp8dsp.c @ 11985:1cffcc7b1470 libavcodec

Fix linking if MMX is disabled.
author stefano
date Sun, 27 Jun 2010 23:25:04 +0000
parents c3afb5be0d9b
children ec7be1d7d5b4
line wrap: on
line diff
--- a/vp8dsp.c	Sun Jun 27 20:18:28 2010 +0000
+++ b/vp8dsp.c	Sun Jun 27 23:25:04 2010 +0000
@@ -452,6 +452,6 @@
     VP8_BILINEAR_MC_FUNC(1, 8);
     VP8_BILINEAR_MC_FUNC(2, 4);
 
-    if (ARCH_X86)
+    if (HAVE_MMX)
         ff_vp8dsp_init_x86(dsp);
 }