comparison x86/fft_sse.c @ 10175:5cf49858179a libavcodec

Move per-arch fft init bits into the corresponding subdirs
author mru
date Tue, 15 Sep 2009 21:14:14 +0000
parents 54456267c77c
children 38ab367d4231
comparison
equal deleted inserted replaced
10174:89cd870ca180 10175:5cf49858179a
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
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 #include "fft.h"
24 25
25 DECLARE_ALIGNED(16, static const int, m1m1m1m1[4]) = 26 DECLARE_ALIGNED(16, static const int, m1m1m1m1[4]) =
26 { 1 << 31, 1 << 31, 1 << 31, 1 << 31 }; 27 { 1 << 31, 1 << 31, 1 << 31, 1 << 31 };
27 28
28 void ff_fft_dispatch_sse(FFTComplex *z, int nbits); 29 void ff_fft_dispatch_sse(FFTComplex *z, int nbits);