Commit 9ed9ce96 authored by mru's avatar mru

bink: correctly align local arrays

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@23425 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2cc6980b
...@@ -681,8 +681,8 @@ static int bink_decode_plane(BinkContext *c, GetBitContext *gb, int plane_idx, ...@@ -681,8 +681,8 @@ static int bink_decode_plane(BinkContext *c, GetBitContext *gb, int plane_idx,
int v, col[2]; int v, col[2];
const uint8_t *scan; const uint8_t *scan;
int xoff, yoff; int xoff, yoff;
DECLARE_ALIGNED(16, DCTELEM, block[64]); LOCAL_ALIGNED_16(DCTELEM, block, [64]);
DECLARE_ALIGNED(16, uint8_t, ublock[64]); LOCAL_ALIGNED_16(uint8_t, ublock, [64]);
int coordmap[64]; int coordmap[64];
const int stride = c->pic.linesize[plane_idx]; const int stride = c->pic.linesize[plane_idx];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment