summaryrefslogtreecommitdiff
path: root/postproc/swscale.c
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2004-10-05 19:11:00 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-10-05 19:11:00 +0000
commit582552fb56ba6559cb1d094a7e7ae5dde3073c5c (patch)
treeee586b06993556f6b2a12c039a6f613e67cded88 /postproc/swscale.c
parent693390099320a7a11d4c217f15877bcc9365d033 (diff)
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>) Originally committed as revision 13565 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/swscale.c')
-rw-r--r--postproc/swscale.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/postproc/swscale.c b/postproc/swscale.c
index 5f46210894..4b7eec8cc8 100644
--- a/postproc/swscale.c
+++ b/postproc/swscale.c
@@ -1724,7 +1724,7 @@ int sws_setColorspaceDetails(SwsContext *c, const int inv_table[4], int srcRange
//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;
}