Commit 2d26dc27 authored by lu_zero's avatar lu_zero

Fix a stupid typo and another error, thanks to Emanuele Giaquinta...

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5932 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0ef1f6c3
......@@ -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);
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment