mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 20:50:09 +00:00
bink: correctly align local arrays
Originally committed as revision 23425 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
2a00992fbd
commit
5dc051f4c1
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user