Mercurial > libavcodec.hg
diff ppc/dsputil_altivec.c @ 5964:34f551bd0509 libavcodec
Fix alignment broke by my last patch
author | vitor |
---|---|
date | Sat, 01 Dec 2007 22:35:38 +0000 |
parents | 80103098c797 |
children | 33674fb857b5 |
line wrap: on
line diff
--- a/ppc/dsputil_altivec.c Sat Dec 01 22:21:04 2007 +0000 +++ b/ppc/dsputil_altivec.c Sat Dec 01 22:35:38 2007 +0000 @@ -1094,7 +1094,7 @@ dstV = \ (vector signed short)vec_mergeh((vector signed char)vzero, \ (vector signed char)dstO); \ - /* subtractions inside the first butterfly */ \ + /* subtractions inside the first butterfly */ \ but0 = vec_sub(srcV, dstV); \ op1 = vec_perm(but0, but0, perm1); \ but1 = vec_mladd(but0, vprod1, op1); \ @@ -1267,7 +1267,7 @@ dstW = \ (vector signed short)vec_mergel((vector signed char)vzero, \ (vector signed char)dstO); \ - /* subtractions inside the first butterfly */ \ + /* subtractions inside the first butterfly */ \ but0 = vec_sub(srcV, dstV); \ but0S = vec_sub(srcW, dstW); \ op1 = vec_perm(but0, but0, perm1); \