From 74a841af8bbdec8070f9eaeb7f7b235cd9c8be7e Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Thu, 4 Jun 2009 23:25:09 +0000 Subject: Replace more uses of __attribute__((aligned)) by DECLARE_ALIGNED. Originally committed as revision 19089 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dct-test.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libavcodec/dct-test.c') diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c index 9522e1d7f0..419464cf54 100644 --- a/libavcodec/dct-test.c +++ b/libavcodec/dct-test.c @@ -186,9 +186,9 @@ static void idct_mmx_init(void) } } -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 @@ static void dct_error(const char *name, int is_idct, #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) { -- cgit v1.2.3