diff x86/h264dsp_mmx.c @ 9793:54456267c77c libavcodec

Replace more uses of __attribute__((aligned)) by DECLARE_ALIGNED.
author ramiro
date Thu, 04 Jun 2009 23:25:09 +0000
parents 96e6cab7470a
children afb9e56fbee9
line wrap: on
line diff
--- a/x86/h264dsp_mmx.c	Thu Jun 04 10:37:29 2009 +0000
+++ b/x86/h264dsp_mmx.c	Thu Jun 04 23:25:09 2009 +0000
@@ -157,7 +157,7 @@
 static void ff_h264_idct8_add_mmx(uint8_t *dst, int16_t *block, int stride)
 {
     int i;
-    int16_t __attribute__ ((aligned(8))) b2[64];
+    DECLARE_ALIGNED_8(int16_t, b2[64]);
 
     block[0] += 32;