comparison x86/fft_3dn2.c @ 10961:34a65026fa06 libavcodec

Move array specifiers outside DECLARE_ALIGNED() invocations
author mru
date Fri, 22 Jan 2010 03:25:11 +0000
parents 38ab367d4231
children 98970e51365a
comparison
equal deleted inserted replaced
10960:10759fd39860 10961:34a65026fa06
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 #include "fft.h" 24 #include "fft.h"
25 25
26 DECLARE_ALIGNED_8(static const int, m1m1[2]) = { 1<<31, 1<<31 }; 26 DECLARE_ALIGNED_8(static const int, m1m1)[2] = { 1<<31, 1<<31 };
27 27
28 #ifdef EMULATE_3DNOWEXT 28 #ifdef EMULATE_3DNOWEXT
29 #define PSWAPD(s,d)\ 29 #define PSWAPD(s,d)\
30 "movq "#s","#d"\n"\ 30 "movq "#s","#d"\n"\
31 "psrlq $32,"#d"\n"\ 31 "psrlq $32,"#d"\n"\