OSDN Git Service

Classify mlib as a configurable option, not as a hardware feature.
authorDiego Biurrun <diego@biurrun.de>
Tue, 25 Mar 2008 21:30:46 +0000 (21:30 +0000)
committerDiego Biurrun <diego@biurrun.de>
Tue, 25 Mar 2008 21:30:46 +0000 (21:30 +0000)
Originally committed as revision 26275 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale

libswscale/yuv2rgb.c

index 8ece0f6..c2dec15 100644 (file)
@@ -43,7 +43,7 @@
 #include "yuv2rgb_vis.c"
 #endif
 
-#ifdef HAVE_MLIB
+#ifdef CONFIG_MLIB
 #include "yuv2rgb_mlib.c"
 #endif
 
@@ -627,7 +627,7 @@ SwsFunc yuv2rgb_get_func_ptr (SwsContext *c)
         if (t) return t;
     }
 #endif
-#ifdef HAVE_MLIB
+#ifdef CONFIG_MLIB
     {
         SwsFunc t= yuv2rgb_init_mlib(c);
         if (t) return t;