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
committerMichael Niedermayer <michaelni@gmx.at>2011-02-26 05:16:06 +0300
commit22c679d3db3802f0de64d93603eee887b5ffb4c1 (patch)
treec9d6beaceae1ee9a9083ce0f52d716aef26d2d25 /libavcodec/bink.c
parenta63ba97384e7ef9487b887fabc52794181c861d9 (diff)
bink: use LOCAL_ALIGNED for aligned stack data
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 8997bb8807336dd6d6c96364952bb71c161ac3b2)
Diffstat (limited to 'libavcodec/bink.c')
-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;