From 55727a835bd04de3d42026e093a26de0866f290b Mon Sep 17 00:00:00 2001 From: Alexander Strange Date: Sun, 30 Mar 2008 10:30:33 +0000 Subject: [PATCH] Altivec and SSE2 require 16-byte alignment, so make sure they get it patch by Alexander Strange %astrange A ithinksw P com% Originally committed as revision 12629 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dct-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c index a8a3649466..27a9e957c2 100644 --- a/libavcodec/dct-test.c +++ b/libavcodec/dct-test.c @@ -169,7 +169,7 @@ void idct_mmx_init(void) } } -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))); -- 2.20.1