From 5dc051f4c137888c2d37d383ed31bf6514b257cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Wed, 2 Jun 2010 15:22:21 +0000 Subject: [PATCH] bink: correctly align local arrays Originally committed as revision 23425 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/bink.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/bink.c b/libavcodec/bink.c index a988a34933..b5921f9f4f 100644 --- a/libavcodec/bink.c +++ b/libavcodec/bink.c @@ -681,8 +681,8 @@ static int bink_decode_plane(BinkContext *c, GetBitContext *gb, int plane_idx, int v, col[2]; const uint8_t *scan; int xoff, yoff; - DECLARE_ALIGNED(16, DCTELEM, block[64]); - DECLARE_ALIGNED(16, uint8_t, ublock[64]); + LOCAL_ALIGNED_16(DCTELEM, block, [64]); + LOCAL_ALIGNED_16(uint8_t, ublock, [64]); int coordmap[64]; const int stride = c->pic.linesize[plane_idx];