mirror of https://github.com/mpv-player/mpv
The AltiVec code in libswscale no longer is under GPL.
Remove one erroneous preprocessor check for CONFIG_GPL in the AltiVec code. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29412 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
4200f091ff
commit
cd6a9ea77a
|
@ -511,7 +511,7 @@ SwsFunc ff_yuv2rgb_get_func_ptr(SwsContext *c)
|
||||||
#if CONFIG_MLIB
|
#if CONFIG_MLIB
|
||||||
t = ff_yuv2rgb_init_mlib(c);
|
t = ff_yuv2rgb_init_mlib(c);
|
||||||
#endif
|
#endif
|
||||||
#if HAVE_ALTIVEC && CONFIG_GPL
|
#if HAVE_ALTIVEC
|
||||||
if (c->flags & SWS_CPU_CAPS_ALTIVEC)
|
if (c->flags & SWS_CPU_CAPS_ALTIVEC)
|
||||||
t = ff_yuv2rgb_init_altivec(c);
|
t = ff_yuv2rgb_init_altivec(c);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue