diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-01-07 18:15:48 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-01-07 18:15:48 +0000 |
commit | 8d268a7d4c4b4f58b5561e7384d91ee39a72d3a7 (patch) | |
tree | 20bc09db45303225c2b448a0242902ce67cfaec4 /libavcodec/dsputil.h | |
parent | 15e35d0d42b93014d228d344ffa538eb16270f19 (diff) | |
download | ffmpeg-8d268a7d4c4b4f58b5561e7384d91ee39a72d3a7.tar.gz |
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
Originally committed as revision 1417 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 a672f89863..c7df750c6a 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -265,6 +265,8 @@ int fft_init(FFTContext *s, int nbits, int inverse); void fft_permute(FFTContext *s, FFTComplex *z); void fft_calc_c(FFTContext *s, FFTComplex *z); void fft_calc_sse(FFTContext *s, FFTComplex *z); +void fft_calc_altivec(FFTContext *s, FFTComplex *z); + static inline void fft_calc(FFTContext *s, FFTComplex *z) { s->fft_calc(s, z); |