1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

Classify mlib as a configurable option, not as a hardware feature.

Originally committed as revision 26275 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
Diego Biurrun
2008-03-25 21:30:46 +00:00
parent a815037409
commit bfffdb81c2

View 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;