From 8e5f465f4c5e5750058da3b65a61e77db08b4d1c Mon Sep 17 00:00:00 2001 From: Alexander Strange Date: Tue, 8 Apr 2008 01:09:33 +0000 Subject: Increase alignment for DCT block arrays from 8 to 16 Patch by Alexander Strange ( astrange ithinksw com ) Originally committed as revision 12767 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/asv1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/asv1.c') diff --git a/libavcodec/asv1.c b/libavcodec/asv1.c index f7d3f4c462..ba8ca16ab9 100644 --- a/libavcodec/asv1.c +++ b/libavcodec/asv1.c @@ -47,7 +47,7 @@ typedef struct ASV1Context{ int mb_height; int mb_width2; int mb_height2; - DECLARE_ALIGNED_8(DCTELEM, block[6][64]); + DECLARE_ALIGNED_16(DCTELEM, block[6][64]); DECLARE_ALIGNED_8(uint16_t, intra_matrix[64]); DECLARE_ALIGNED_8(int, q_intra_matrix[64]); uint8_t *bitstream_buffer; -- cgit v1.2.3