Mercurial > libavcodec.hg
changeset 5964:34f551bd0509 libavcodec
Fix alignment broke by my last patch
author | vitor |
---|---|
date | Sat, 01 Dec 2007 22:35:38 +0000 |
parents | 80103098c797 |
children | febfff2ccb8d |
files | ppc/dsputil_altivec.c vc1.c |
diffstat | 2 files changed, 3 insertions(+), 3 deletions(-) [+] |
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); \
--- a/vc1.c Sat Dec 01 22:21:04 2007 +0000 +++ b/vc1.c Sat Dec 01 22:35:38 2007 +0000 @@ -4102,7 +4102,7 @@ } /* Return the Picture timestamp as the frame number */ - /* we subtract 1 because it is added on utils.c */ + /* we subtract 1 because it is added on utils.c */ avctx->frame_number = s->picture_number - 1; av_free(buf2);