Browse Source

Fix a stupid typo and another error, thanks to Emanuele Giaquinta <exg@gentoo.org> for pointing out the issue and the patch

Originally committed as revision 5932 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Luca Barbato 19 years ago
parent
commit
532877894b
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      libavcodec/ppc/dsputil_altivec.c

+ 4
- 4
libavcodec/ppc/dsputil_altivec.c View File

@@ -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);
}
}



Loading…
Cancel
Save