diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2010-07-06 17:48:23 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2010-07-06 17:48:23 +0000 |
commit | 881fd7a62f6f1d52beee62fa570088935935b2af (patch) | |
tree | 5ca3e03dc9149559571fe7e908c8076b5c4358f1 /libavcodec/x86/fft.c | |
parent | 4dcc4f8eaa23dc3ff85f6b4eed58d719e50cbe92 (diff) | |
download | ffmpeg-881fd7a62f6f1d52beee62fa570088935935b2af.tar.gz |
Move SSE optimized 32-point DCT to its own file. Should fix breakage with YASM
disabled.
Originally committed as revision 24078 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/fft.c')
-rw-r--r-- | libavcodec/x86/fft.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/x86/fft.c b/libavcodec/x86/fft.c index 6f641b6f02..eb5c65ecbb 100644 --- a/libavcodec/x86/fft.c +++ b/libavcodec/x86/fft.c @@ -43,10 +43,12 @@ av_cold void ff_fft_init_mmx(FFTContext *s) #endif } +#if CONFIG_DCT av_cold void ff_dct_init_mmx(DCTContext *s) { int has_vectors = mm_support(); if (has_vectors & FF_MM_SSE && HAVE_SSE) s->dct32 = ff_dct32_float_sse; } +#endif |