1
mirror of https://github.com/mpv-player/mpv synced 2025-01-16 22:37:28 +01:00

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
This commit is contained in:
diego 2008-03-25 21:30:46 +00:00
parent 8740ba4b47
commit ebfa5122b3

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;