aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/dsputil.h
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2003-01-07 18:15:48 +0000
committerFabrice Bellard <fabrice@bellard.org>2003-01-07 18:15:48 +0000
commit8d268a7d4c4b4f58b5561e7384d91ee39a72d3a7 (patch)
tree20bc09db45303225c2b448a0242902ce67cfaec4 /libavcodec/dsputil.h
parent15e35d0d42b93014d228d344ffa538eb16270f19 (diff)
downloadffmpeg-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.h2
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);