diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2011-05-14 14:17:15 +0200 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2011-05-21 17:42:26 +0200 |
commit | 6204feb160c843320f6001d7e2bb2361c82b90ca (patch) | |
tree | 7dca115f3bbb36703fadbf3dda48ab593964e44a /libavcodec/x86/fft.h | |
parent | 4e653b98c888a922ee192c6c8f914dde6ea2dc40 (diff) | |
download | ffmpeg-6204feb160c843320f6001d7e2bb2361c82b90ca.tar.gz |
dct32: Add AVX implementation of 32-point DCT
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 c6379050d9..0ade2b2e7b 100644 --- a/libavcodec/x86/fft.h +++ b/libavcodec/x86/fft.h @@ -35,5 +35,6 @@ 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_imdct_half_avx(FFTContext *s, FFTSample *output, const FFTSample *input); void ff_dct32_float_sse(FFTSample *out, const FFTSample *in); +void ff_dct32_float_avx(FFTSample *out, const FFTSample *in); #endif /* AVCODEC_X86_FFT_H */ |