From 68951ecf0ced82b33f84d8ec79984d87291c93dc Mon Sep 17 00:00:00 2001 From: Gildas Bazin Date: Sat, 13 Mar 2004 21:43:24 +0000 Subject: fft_*() renamed into ff_fft_*() patch by (Gildas Bazin ) Originally committed as revision 2882 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ppc/fft_altivec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/ppc/fft_altivec.c') diff --git a/libavcodec/ppc/fft_altivec.c b/libavcodec/ppc/fft_altivec.c index e39c9dbb73..29d85e87dd 100644 --- a/libavcodec/ppc/fft_altivec.c +++ b/libavcodec/ppc/fft_altivec.c @@ -50,7 +50,7 @@ /** - * Do a complex FFT with the parameters defined in fft_init(). The + * Do a complex FFT with the parameters defined in ff_fft_init(). The * input data must be permuted before with s->revtab table. No * 1.0/sqrt(n) normalization is done. * AltiVec-enabled @@ -60,7 +60,7 @@ * that successive MUL + ADD/SUB have been merged into * fused multiply-add ('vec_madd' in altivec) */ -void fft_calc_altivec(FFTContext *s, FFTComplex *z) +void ff_fft_calc_altivec(FFTContext *s, FFTComplex *z) { POWERPC_PERF_DECLARE(altivec_fft_num, s->nbits >= 6); #ifdef ALTIVEC_USE_REFERENCE_C_CODE -- cgit v1.2.3