Commit 8997bb88 authored by Mans Rullgard's avatar Mans Rullgard

bink: use LOCAL_ALIGNED for aligned stack data

Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent 04973f80
...@@ -790,7 +790,7 @@ static int binkb_decode_plane(BinkContext *c, GetBitContext *gb, int plane_idx, ...@@ -790,7 +790,7 @@ static int binkb_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]);
int coordmap[64]; int coordmap[64];
int ybias = is_key ? -15 : 0; int ybias = is_key ? -15 : 0;
int qp; int qp;
......
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