diff options
author | Gildas Bazin <gbazi@altern.org> | 2004-03-13 21:43:24 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-03-13 21:43:24 +0000 |
commit | 68951ecf0ced82b33f84d8ec79984d87291c93dc (patch) | |
tree | 1161da34081805c2fa2227bcba5e368344f7052f /libavcodec/mdct.c | |
parent | ebcd2f968969192dd1286d9cbdd41197bff09a2f (diff) | |
download | ffmpeg-68951ecf0ced82b33f84d8ec79984d87291c93dc.tar.gz |
fft_*() renamed into ff_fft_*() patch by (Gildas Bazin <gbazin at altern dot org>)
Originally committed as revision 2882 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mdct.c')
-rw-r--r-- | libavcodec/mdct.c | 8 |
1 files changed, 4 insertions, 4 deletions
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;i<n4;i++) { @@ -171,5 +171,5 @@ void ff_mdct_end(MDCTContext *s) { av_freep(&s->tcos); av_freep(&s->tsin); - fft_end(&s->fft); + ff_fft_end(&s->fft); } |