diff dct-test.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 8d51b340393e
children 34a65026fa06
line wrap: on
line diff
--- a/dct-test.c	Thu Jun 04 10:37:29 2009 +0000
+++ b/dct-test.c	Thu Jun 04 23:25:09 2009 +0000
@@ -186,9 +186,9 @@
     }
 }
 
-static DCTELEM block[64] __attribute__ ((aligned (16)));
-static DCTELEM block1[64] __attribute__ ((aligned (8)));
-static DCTELEM block_org[64] __attribute__ ((aligned (8)));
+DECLARE_ALIGNED(16, static DCTELEM, block[64]);
+DECLARE_ALIGNED(8, static DCTELEM, block1[64]);
+DECLARE_ALIGNED(8, static DCTELEM, block_org[64]);
 
 static inline void mmx_emms(void)
 {
@@ -384,8 +384,8 @@
 #endif
 }
 
-static uint8_t img_dest[64] __attribute__ ((aligned (8)));
-static uint8_t img_dest1[64] __attribute__ ((aligned (8)));
+DECLARE_ALIGNED(8, static uint8_t, img_dest[64]);
+DECLARE_ALIGNED(8, static uint8_t, img_dest1[64]);
 
 static void idct248_ref(uint8_t *dest, int linesize, int16_t *block)
 {