changeset 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 b95c20d423b3
children 3fa15eca924e
files libswscale/yuv2rgb.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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