changeset 11811:2501df1cabc5 libavcodec

bink: correctly align local arrays
author mru
date Wed, 02 Jun 2010 15:22:21 +0000
parents 2ae71694d6ae
children b7d5e6078e04
files bink.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/bink.c	Wed Jun 02 10:54:50 2010 +0000
+++ b/bink.c	Wed Jun 02 15:22:21 2010 +0000
@@ -681,8 +681,8 @@
     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];