Browse Source

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

Originally committed as revision 26275 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
tags/v0.5
Diego Biurrun 17 years ago
parent
commit
bfffdb81c2
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libswscale/yuv2rgb.c

+ 2
- 2
libswscale/yuv2rgb.c 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;


Loading…
Cancel
Save