diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-03-25 21:30:46 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-25 21:30:46 +0000 |
commit | bfffdb81c25e9fe4700375ee394c3f13d52f4a22 (patch) | |
tree | 93f87fc63618caf6592c29efc1cfe53ecd12b597 /libswscale/yuv2rgb.c | |
parent | a8150374097de8187ebff49755cb7c08be40e340 (diff) | |
download | ffmpeg-bfffdb81c25e9fe4700375ee394c3f13d52f4a22.tar.gz |
Classify mlib as a configurable option, not as a hardware feature.
Originally committed as revision 26275 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/yuv2rgb.c')
-rw-r--r-- | libswscale/yuv2rgb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/yuv2rgb.c b/libswscale/yuv2rgb.c index 8ece0f6183..c2dec15500 100644 --- a/libswscale/yuv2rgb.c +++ b/libswscale/yuv2rgb.c @@ -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; |