comparison ppc/mpegvideo_altivec.c @ 6486:3f96dc62c4b9 libavcodec

misc spelling fixes
author diego
date Mon, 10 Mar 2008 18:42:09 +0000
parents f1d701294a89
children f7cbb7733146
comparison
equal deleted inserted replaced
6485:949e4f444a50 6486:3f96dc62c4b9
195 // The following adds are rolled into the multiplies above 195 // The following adds are rolled into the multiplies above
196 // z3 = vec_add(z3, z5); // z3 += z5; 196 // z3 = vec_add(z3, z5); // z3 += z5;
197 // z4 = vec_add(z4, z5); // z4 += z5; 197 // z4 = vec_add(z4, z5); // z4 += z5;
198 198
199 // z2 = MULTIPLY(z2, - FIX_2_562915447); /* sqrt(2) * (-c1-c3) */ 199 // z2 = MULTIPLY(z2, - FIX_2_562915447); /* sqrt(2) * (-c1-c3) */
200 // Wow! It's actually more effecient to roll this multiply 200 // Wow! It's actually more efficient to roll this multiply
201 // into the adds below, even thought the multiply gets done twice! 201 // into the adds below, even thought the multiply gets done twice!
202 // z2 = vec_madd(z2, vec_2_562915447, (vector float)zero); 202 // z2 = vec_madd(z2, vec_2_562915447, (vector float)zero);
203 203
204 // z1 = MULTIPLY(z1, - FIX_0_899976223); /* sqrt(2) * (c7-c3) */ 204 // z1 = MULTIPLY(z1, - FIX_0_899976223); /* sqrt(2) * (c7-c3) */
205 // Same with this one... 205 // Same with this one...