Mercurial > libavcodec.hg
changeset 6544:8a059debc2ba libavcodec
Altivec and SSE2 require 16-byte alignment, so make sure they get it
patch by Alexander Strange %astrange A ithinksw P com%
author | gpoirier |
---|---|
date | Sun, 30 Mar 2008 10:30:33 +0000 |
parents | 948d9453432b |
children | 85acd5166cf8 |
files | dct-test.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/dct-test.c Sun Mar 30 10:29:28 2008 +0000 +++ b/dct-test.c Sun Mar 30 10:30:33 2008 +0000 @@ -169,7 +169,7 @@ } } -static DCTELEM block[64] __attribute__ ((aligned (8))); +static DCTELEM block[64] __attribute__ ((aligned (16))); static DCTELEM block1[64] __attribute__ ((aligned (8))); static DCTELEM block_org[64] __attribute__ ((aligned (8)));