diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-01-27 14:46:56 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-01-27 14:46:56 +0000 |
commit | 27215c6bf436f935a60523897ee11bebcda86728 (patch) | |
tree | ca8c241be75edf9c5d8111dc5d16c9e5ec17a4e3 /libavcodec/i386/simple_idct_mmx.c | |
parent | d761f089870c76ab5f18a789adc96fd190448b8d (diff) | |
download | ffmpeg-27215c6bf436f935a60523897ee11bebcda86728.tar.gz |
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.c | 2 |
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( |