diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-03-25 21:30:46 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-03-25 21:30:46 +0000 |
commit | ebfa5122b3b6db29e39c8960a536b1554964f6ec (patch) | |
tree | 63e64a83b38bd8b506859fa5f615937bb9306078 | |
parent | 8740ba4b47bf9042dcf60f2fb1873ddf3575abc6 (diff) |
Classify mlib as a configurable option, not as a hardware feature.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26275 b3059339-0415-0410-9bf9-f77b7e298cf2
-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; |