diff mpegvideo_enc.c @ 11195:d464f498e19f libavcodec

Use LOCAL_ALIGNED macro for local arrays
author mru
date Wed, 17 Feb 2010 20:36:20 +0000
parents 34a65026fa06
children 421c9441c11e
line wrap: on
line diff
--- a/mpegvideo_enc.c	Wed Feb 17 20:36:12 2010 +0000
+++ b/mpegvideo_enc.c	Wed Feb 17 20:36:20 2010 +0000
@@ -3311,7 +3311,7 @@
                         DCTELEM *block, int16_t *weight, DCTELEM *orig,
                         int n, int qscale){
     int16_t rem[64];
-    DECLARE_ALIGNED_16(DCTELEM, d1)[64];
+    LOCAL_ALIGNED_16(DCTELEM, d1, [64]);
     const uint8_t *scantable= s->intra_scantable.scantable;
     const uint8_t *perm_scantable= s->intra_scantable.permutated;
 //    unsigned int threshold1, threshold2;