Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-02-25 17:52:23 +0300
committerMans Rullgard <mans@mansr.com>2011-02-25 22:50:14 +0300
commit8997bb8807336dd6d6c96364952bb71c161ac3b2 (patch)
tree28b89d8140731392297caf57707580fbcd3a77a2 /libavcodec
parent04973f8082c5a822112d2e42d535b7f3f59dccc0 (diff)
bink: use LOCAL_ALIGNED for aligned stack data
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/bink.c2
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;