OSDN Git Service

bink: use LOCAL_ALIGNED for aligned stack data
authorMans Rullgard <mans@mansr.com>
Fri, 25 Feb 2011 14:52:23 +0000 (14:52 +0000)
committerMans Rullgard <mans@mansr.com>
Fri, 25 Feb 2011 19:50:14 +0000 (19:50 +0000)
Signed-off-by: Mans Rullgard <mans@mansr.com>
libavcodec/bink.c

index b77e9db..d1985ed 100644 (file)
@@ -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;