projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1066a99
)
Fix a stupid typo and another error, thanks to Emanuele Giaquinta <exg@gentoo.org...
author
Luca Barbato
<lu_zero@gentoo.org>
Fri, 4 Aug 2006 19:03:01 +0000
(19:03 +0000)
committer
Luca Barbato
<lu_zero@gentoo.org>
Fri, 4 Aug 2006 19:03:01 +0000
(19:03 +0000)
Originally committed as revision 5932 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/ppc/dsputil_altivec.c
patch
|
blob
|
blame
|
history
diff --git
a/libavcodec/ppc/dsputil_altivec.c
b/libavcodec/ppc/dsputil_altivec.c
index
570969a
..
c0874ca
100644
(file)
--- 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_st
e
(a, 0, ang+i);
- vec_st
e
(m, 0, mag+i);
+ a = vec_
sub
(m, (vector float)t0);
+ m = vec_
add
(m, (vector float)t1);
+ vec_st
l
(a, 0, ang+i);
+ vec_st
l
(m, 0, mag+i);
}
}