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/mdct.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavcodec/mdct.c') diff --git a/libavcodec/mdct.c b/libavcodec/mdct.c index a0f5671771..6628958b62 100644 --- a/libavcodec/mdct.c +++ b/libavcodec/mdct.c @@ -48,7 +48,7 @@ int ff_mdct_init(MDCTContext *s, int nbits, int inverse) s->tcos[i] = -cos(alpha); s->tsin[i] = -sin(alpha); } - if (fft_init(&s->fft, s->nbits - 2, inverse) < 0) + if (ff_fft_init(&s->fft, s->nbits - 2, inverse) < 0) goto fail; return 0; fail: @@ -98,7 +98,7 @@ void ff_imdct_calc(MDCTContext *s, FFTSample *output, in1 += 2; in2 -= 2; } - fft_calc(&s->fft, z); + ff_fft_calc(&s->fft, z); /* post rotation + reordering */ /* XXX: optimize */ @@ -155,7 +155,7 @@ void ff_mdct_calc(MDCTContext *s, FFTSample *out, CMUL(x[j].re, x[j].im, re, im, -tcos[n8 + i], tsin[n8 + i]); } - fft_calc(&s->fft, x); + ff_fft_calc(&s->fft, x); /* post rotation */ for(i=0;itcos); av_freep(&s->tsin); - fft_end(&s->fft); + ff_fft_end(&s->fft); } -- cgit v1.2.3