diff postproc/swscale.c @ 13564:992960f68af0

postproc/yuv2rgb_altivec.c compile fix yuv2rgb_altivec_init_tables does initialize the SwsContext vectors. missing vec_splat. patch by (Luca Barbato <lu_zero at gentoo dot org>) and (Romain Dolbeau <dolbeau at irisa dot fr>)
author michael
date Tue, 05 Oct 2004 19:11:00 +0000
parents 6bd869a18d2c
children 821f464b4d90
line wrap: on
line diff
--- a/postproc/swscale.c	Tue Oct 05 14:05:17 2004 +0000
+++ b/postproc/swscale.c	Tue Oct 05 19:11:00 2004 +0000
@@ -1724,7 +1724,7 @@
 	//FIXME factorize
 
 #ifdef HAVE_ALTIVEC
-	yuv2rgb_altivec_init_tables (c, inv_table);
+	yuv2rgb_altivec_init_tables (c, inv_table, brightness, contrast, saturation);
 #endif	
 	return 0;
 }