x86: Use LOCAL_ALIGNED in mpegvideo_mmx_template
authorMartin Storsjö <martin@martin.st>
Sun, 17 Jul 2011 15:43:11 +0000 (18:43 +0300)
committerMartin Storsjö <martin@martin.st>
Sun, 17 Jul 2011 21:10:45 +0000 (00:10 +0300)
Signed-off-by: Martin Storsjö <martin@martin.st>
libavcodec/x86/mpegvideo_mmx_template.c

index 0f01cb2..0b6cff3 100644 (file)
@@ -98,7 +98,7 @@ static int RENAME(dct_quantize)(MpegEncContext *s,
     x86_reg last_non_zero_p1;
     int level=0, q; //=0 is because gcc says uninitialized ...
     const uint16_t *qmat, *bias;
-    DECLARE_ALIGNED(16, int16_t, temp_block)[64];
+    LOCAL_ALIGNED_16(int16_t, temp_block, [64]);
 
     assert((7&(int)(&temp_block[0])) == 0); //did gcc align it correctly?