diff options
author | Mans Rullgard <mans@mansr.com> | 2011-02-25 14:52:23 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-02-25 19:50:14 +0000 |
commit | 8997bb8807336dd6d6c96364952bb71c161ac3b2 (patch) | |
tree | 28b89d8140731392297caf57707580fbcd3a77a2 /libavcodec/bink.c | |
parent | 04973f8082c5a822112d2e42d535b7f3f59dccc0 (diff) | |
download | ffmpeg-8997bb8807336dd6d6c96364952bb71c161ac3b2.tar.gz |
bink: use LOCAL_ALIGNED for aligned stack data
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/bink.c')
-rw-r--r-- | libavcodec/bink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bink.c b/libavcodec/bink.c index b77e9db0f6..d1985eddb2 100644 --- a/libavcodec/bink.c +++ b/libavcodec/bink.c @@ -790,7 +790,7 @@ static int binkb_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]); + LOCAL_ALIGNED_16(DCTELEM, block, [64]); int coordmap[64]; int ybias = is_key ? -15 : 0; int qp; |