diff h264_loopfilter.c @ 11195:d464f498e19f libavcodec

Use LOCAL_ALIGNED macro for local arrays
author mru
date Wed, 17 Feb 2010 20:36:20 +0000
parents d9725977b699
children 10c06a9bd3d9
line wrap: on
line diff
--- a/h264_loopfilter.c	Wed Feb 17 20:36:12 2010 +0000
+++ b/h264_loopfilter.c	Wed Feb 17 20:36:20 2010 +0000
@@ -367,7 +367,7 @@
         filter_mb_edgech( &img_cr[2*2*uvlinesize], uvlinesize, bS3, qpc, h);
         return;
     } else {
-        DECLARE_ALIGNED_8(int16_t, bS)[2][4][4];
+        LOCAL_ALIGNED_8(int16_t, bS, [2], [4][4]);
         uint64_t (*bSv)[4] = (uint64_t(*)[4])bS;
         int edges;
         if( IS_8x8DCT(mb_type) && (h->cbp&7) == 7 ) {