diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-06-02 19:28:56 -0700 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-06-03 09:52:09 -0700 |
commit | a3e9bb5deed0f43c84ee3006962f7bd27ae4f811 (patch) | |
tree | 4a5835328946ffcb5bff4bb779d49d9755be73a5 /libswscale/ppc/yuv2rgb_altivec.c | |
parent | 0e5d31b16b39f0b4d2e3307714af592dd65cf123 (diff) | |
download | ffmpeg-a3e9bb5deed0f43c84ee3006962f7bd27ae4f811.tar.gz |
swscale: remove indirections in ppc/swscale_template.c.
Diffstat (limited to 'libswscale/ppc/yuv2rgb_altivec.c')
-rw-r--r-- | libswscale/ppc/yuv2rgb_altivec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libswscale/ppc/yuv2rgb_altivec.c b/libswscale/ppc/yuv2rgb_altivec.c index 54ebee1edf..4b2bdafca0 100644 --- a/libswscale/ppc/yuv2rgb_altivec.c +++ b/libswscale/ppc/yuv2rgb_altivec.c @@ -630,7 +630,8 @@ ff_yuv2packedX_altivec(SwsContext *c, const int16_t *lumFilter, const int16_t **lumSrc, int lumFilterSize, const int16_t *chrFilter, const int16_t **chrUSrc, const int16_t **chrVSrc, int chrFilterSize, - uint8_t *dest, int dstW, int dstY) + const int16_t **alpSrc, uint8_t *dest, + int dstW, int dstY) { int i,j; vector signed short X,X0,X1,Y0,U0,V0,Y1,U1,V1,U,V; |