diff libswscale/yuv2rgb.c @ 29370:059ff1f4e280

The AltiVec code in libswscale no longer is under GPL. Remove one erroneous preprocessor check for CONFIG_GPL in the AltiVec code.
author diego
date Sun, 05 Jul 2009 20:10:59 +0000
parents 321437b5bde2
children 3b88f0acdc0b
line wrap: on
line diff
--- a/libswscale/yuv2rgb.c	Sat Jul 04 13:26:51 2009 +0000
+++ b/libswscale/yuv2rgb.c	Sun Jul 05 20:10:59 2009 +0000
@@ -511,7 +511,7 @@
 #if CONFIG_MLIB
     t = ff_yuv2rgb_init_mlib(c);
 #endif
-#if HAVE_ALTIVEC && CONFIG_GPL
+#if HAVE_ALTIVEC
     if (c->flags & SWS_CPU_CAPS_ALTIVEC)
         t = ff_yuv2rgb_init_altivec(c);
 #endif