summaryrefslogtreecommitdiffstats
path: root/postproc/swscale.c
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-10-05 19:11:00 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-10-05 19:11:00 +0000
commitfe4f5a43369f5316f71beda73b4cd331ed9c2e28 (patch)
tree58fa746fe37926e379ee32df6e4be8fca6b69312 /postproc/swscale.c
parenteaa1bc9e8a00d366f7b39038e6cfee722c232cac (diff)
downloadmpv-fe4f5a43369f5316f71beda73b4cd331ed9c2e28.tar.bz2
mpv-fe4f5a43369f5316f71beda73b4cd331ed9c2e28.tar.xz
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>) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13565 b3059339-0415-0410-9bf9-f77b7e298cf2
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;
}