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/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/fft.h')
-rw-r--r-- | libavcodec/fft.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/fft.h b/libavcodec/fft.h index 8930c93ec7..eb6714fe95 100644 --- a/libavcodec/fft.h +++ b/libavcodec/fft.h @@ -112,6 +112,7 @@ void ff_fft_calc_c(FFTContext *s, FFTComplex *z); void ff_fft_init_altivec(FFTContext *s); void ff_fft_init_mmx(FFTContext *s); void ff_fft_init_arm(FFTContext *s); +void ff_dct_init_mmx(DCTContext *s); /** * Do the permutation needed BEFORE calling ff_fft_calc(). |