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:
authorMåns Rullgård <mans@mansr.com>2010-06-02 19:22:21 +0400
committerMåns Rullgård <mans@mansr.com>2010-06-02 19:22:21 +0400
commit5dc051f4c137888c2d37d383ed31bf6514b257cd (patch)
tree3a3549a72568958d7e4b2b9afca9ba3dc9372b29 /libavcodec/bink.c
parent2a00992fbd43dd00c38e09620ac461825a17ce34 (diff)
bink: correctly align local arrays
Originally committed as revision 23425 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/bink.c')
-rw-r--r--libavcodec/bink.c4
1 files 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];