diff dsputil.h @ 975:e05d525505c5 libavcodec

fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
author bellard
date Tue, 07 Jan 2003 18:15:48 +0000
parents 13aec7e50c52
children e162c09efbe7
line wrap: on
line diff
--- a/dsputil.h	Tue Jan 07 18:15:14 2003 +0000
+++ b/dsputil.h	Tue Jan 07 18:15:48 2003 +0000
@@ -265,6 +265,8 @@
 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);