comparison x86/fft_3dn2.c @ 11369:98970e51365a libavcodec

Remove DECLARE_ALIGNED_{8,16} macros These macros are redundant. All uses are replaced with the generic DECLARE_ALIGNED macro instead.
author mru
date Sat, 06 Mar 2010 14:24:59 +0000
parents 34a65026fa06
children b64b8e5a2d3a
comparison
equal deleted inserted replaced
11368:3d4f64b8fb10 11369:98970e51365a
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"\