diff vp3.c @ 11195:d464f498e19f libavcodec

Use LOCAL_ALIGNED macro for local arrays
author mru
date Wed, 17 Feb 2010 20:36:20 +0000
parents c11bcf7e3e6b
children 5811a86f55f1
line wrap: on
line diff
--- a/vp3.c	Wed Feb 17 20:36:12 2010 +0000
+++ b/vp3.c	Wed Feb 17 20:36:20 2010 +0000
@@ -1385,7 +1385,7 @@
 {
     int x;
     int16_t *dequantizer;
-    DECLARE_ALIGNED_16(DCTELEM, block)[64];
+    LOCAL_ALIGNED_16(DCTELEM, block, [64]);
     int motion_x = 0xdeadbeef, motion_y = 0xdeadbeef;
     int motion_halfpel_index;
     uint8_t *motion_source;