diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-06-04 23:25:09 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-06-04 23:25:09 +0000 |
commit | 74a841af8bbdec8070f9eaeb7f7b235cd9c8be7e (patch) | |
tree | 25cb96fa9fb50b39516300f570d95d12105a71ca /libavcodec/x86/fft_sse.c | |
parent | c0cf20a24a230b0937ad494b43ffe3e4cf318c27 (diff) | |
download | ffmpeg-74a841af8bbdec8070f9eaeb7f7b235cd9c8be7e.tar.gz |
Replace more uses of __attribute__((aligned)) by DECLARE_ALIGNED.
Originally committed as revision 19089 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/fft_sse.c')
-rw-r--r-- | libavcodec/x86/fft_sse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/fft_sse.c b/libavcodec/x86/fft_sse.c index 3d9f1c5145..e6cb3dce65 100644 --- a/libavcodec/x86/fft_sse.c +++ b/libavcodec/x86/fft_sse.c @@ -22,7 +22,7 @@ #include "libavutil/x86_cpu.h" #include "libavcodec/dsputil.h" -static const int m1m1m1m1[4] __attribute__((aligned(16))) = +DECLARE_ALIGNED(16, static const int, m1m1m1m1[4]) = { 1 << 31, 1 << 31, 1 << 31, 1 << 31 }; void ff_fft_dispatch_sse(FFTComplex *z, int nbits); |