diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2010-07-06 16:58:54 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2010-07-06 16:58:54 +0000 |
commit | 4dcc4f8eaa23dc3ff85f6b4eed58d719e50cbe92 (patch) | |
tree | 5e72e1f3252b0a225d401749011ab953ba5f1767 /libavcodec/x86/fft.h | |
parent | defb0009cff57d66fe952915917864cc5b3a417f (diff) | |
download | ffmpeg-4dcc4f8eaa23dc3ff85f6b4eed58d719e50cbe92.tar.gz |
SSE optimized 32-point DCT
Originally committed as revision 24077 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/fft.h')
-rw-r--r-- | libavcodec/x86/fft.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/x86/fft.h b/libavcodec/x86/fft.h index 7ef5839141..2affacb62b 100644 --- a/libavcodec/x86/fft.h +++ b/libavcodec/x86/fft.h @@ -32,5 +32,6 @@ void ff_imdct_calc_3dn2(FFTContext *s, FFTSample *output, const FFTSample *input void ff_imdct_half_3dn2(FFTContext *s, FFTSample *output, const FFTSample *input); void ff_imdct_calc_sse(FFTContext *s, FFTSample *output, const FFTSample *input); void ff_imdct_half_sse(FFTContext *s, FFTSample *output, const FFTSample *input); +void ff_dct32_float_sse(FFTSample *out, const FFTSample *in); #endif |