comparison x86/fft_sse.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 7a463923ecd1
children 5cf49858179a
comparison
equal deleted inserted replaced
9792:05ea4942df9b 9793:54456267c77c
20 */ 20 */
21 21
22 #include "libavutil/x86_cpu.h" 22 #include "libavutil/x86_cpu.h"
23 #include "libavcodec/dsputil.h" 23 #include "libavcodec/dsputil.h"
24 24
25 static const int m1m1m1m1[4] __attribute__((aligned(16))) = 25 DECLARE_ALIGNED(16, static const int, m1m1m1m1[4]) =
26 { 1 << 31, 1 << 31, 1 << 31, 1 << 31 }; 26 { 1 << 31, 1 << 31, 1 << 31, 1 << 31 };
27 27
28 void ff_fft_dispatch_sse(FFTComplex *z, int nbits); 28 void ff_fft_dispatch_sse(FFTComplex *z, int nbits);
29 void ff_fft_dispatch_interleave_sse(FFTComplex *z, int nbits); 29 void ff_fft_dispatch_interleave_sse(FFTComplex *z, int nbits);
30 30