From 532877894b2bbb8aa89ebff516e3d4b55deb155d Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Fri, 4 Aug 2006 19:03:01 +0000 Subject: Fix a stupid typo and another error, thanks to Emanuele Giaquinta for pointing out the issue and the patch Originally committed as revision 5932 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ppc/dsputil_altivec.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavcodec/ppc/dsputil_altivec.c') diff --git a/libavcodec/ppc/dsputil_altivec.c b/libavcodec/ppc/dsputil_altivec.c index 570969ab7a..c0874cae12 100644 --- a/libavcodec/ppc/dsputil_altivec.c +++ b/libavcodec/ppc/dsputil_altivec.c @@ -1714,10 +1714,10 @@ static void vorbis_inverse_coupling_altivec(float *mag, float *ang, a = vec_xor(a, (vector float) vec_sl((vector unsigned int)t0, v_31)); t0 = (vector bool int)vec_and(a, t1); t1 = (vector bool int)vec_andc(a, t1); - a = vec_add(m, (vector float)t0); - m = vec_sub(m, (vector float)t1); - vec_ste(a, 0, ang+i); - vec_ste(m, 0, mag+i); + a = vec_sub(m, (vector float)t0); + m = vec_add(m, (vector float)t1); + vec_stl(a, 0, ang+i); + vec_stl(m, 0, mag+i); } } -- cgit v1.2.3