diff options
author | Zuxy Meng <zuxy.meng@gmail.com> | 2006-03-08 04:13:55 +0000 |
---|---|---|
committer | Corey Hickey <bugfood-ml@fatooh.org> | 2006-03-08 04:13:55 +0000 |
commit | 82eb4b0f1bea743f6eaf58c13c475e1e3d045a6a (patch) | |
tree | 64212de0c864fdc87d03f66dfc23f1fcdb087679 /libavcodec/dsputil.h | |
parent | 8e32161943efb0486bf83134dc6f695b46ff743c (diff) | |
download | ffmpeg-82eb4b0f1bea743f6eaf58c13c475e1e3d045a6a.tar.gz |
3DNow! & Extended 3DNow! versions of FFT
Patch by Zuxy Meng, zuxy <<dot>> meng >>at<< gmail <<dot>> com
Minor non-functional diff-related fixes by me.
Originally committed as revision 5125 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 5188bf8ee9..e165eede2d 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -564,6 +564,8 @@ int ff_fft_init(FFTContext *s, int nbits, int inverse); void ff_fft_permute(FFTContext *s, FFTComplex *z); void ff_fft_calc_c(FFTContext *s, FFTComplex *z); void ff_fft_calc_sse(FFTContext *s, FFTComplex *z); +void ff_fft_calc_3dn(FFTContext *s, FFTComplex *z); +void ff_fft_calc_3dn2(FFTContext *s, FFTComplex *z); void ff_fft_calc_altivec(FFTContext *s, FFTComplex *z); static inline void ff_fft_calc(FFTContext *s, FFTComplex *z) |