Mercurial > libavcodec.hg
diff dsputil.h @ 3175:c20c181e0eca libavcodec
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.
| author | corey |
|---|---|
| date | Wed, 08 Mar 2006 04:13:55 +0000 |
| parents | 2d35fb3cb940 |
| children | 6b9f0c4fbdbe |
line wrap: on
line diff
--- a/dsputil.h Tue Mar 07 22:45:56 2006 +0000 +++ b/dsputil.h Wed Mar 08 04:13:55 2006 +0000 @@ -564,6 +564,8 @@ 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)
