summaryrefslogtreecommitdiff
path: root/libavcodec/i386/simple_idct_mmx.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2008-01-27 14:46:56 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2008-01-27 14:46:56 +0000
commit27215c6bf436f935a60523897ee11bebcda86728 (patch)
treeca8c241be75edf9c5d8111dc5d16c9e5ec17a4e3 /libavcodec/i386/simple_idct_mmx.c
parentd761f089870c76ab5f18a789adc96fd190448b8d (diff)
Use DECLARE_ALIGNED
Originally committed as revision 11630 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386/simple_idct_mmx.c')
-rw-r--r--libavcodec/i386/simple_idct_mmx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/i386/simple_idct_mmx.c b/libavcodec/i386/simple_idct_mmx.c
index dd22ee8aa3..12f352c609 100644
--- a/libavcodec/i386/simple_idct_mmx.c
+++ b/libavcodec/i386/simple_idct_mmx.c
@@ -209,7 +209,7 @@ row[7] = input[13];
static inline void idct(int16_t *block)
{
- int64_t __attribute__((aligned(8))) align_tmp[16];
+ DECLARE_ALIGNED(8, int64_t, align_tmp[16]);
int16_t * const temp= (int16_t*)align_tmp;
asm volatile(