diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2008-08-12 00:38:30 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2008-08-12 00:38:30 +0000 |
commit | d46ac5bfde98b57265de4aaf994e1690afa5d5b5 (patch) | |
tree | 483b38b640129a8c5e45f6d28a21e48de78155b4 /libavcodec/nellymoserdec.c | |
parent | 0a570e826d7cb6602219236e20a15d85ab68b073 (diff) | |
download | ffmpeg-streaming-d46ac5bfde98b57265de4aaf994e1690afa5d5b5.zip ffmpeg-streaming-d46ac5bfde98b57265de4aaf994e1690afa5d5b5.tar.gz |
mdct wrapper function to match fft
Originally committed as revision 14703 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/nellymoserdec.c')
-rw-r--r-- | libavcodec/nellymoserdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c index 8374a68..f2a413e 100644 --- a/libavcodec/nellymoserdec.c +++ b/libavcodec/nellymoserdec.c @@ -119,7 +119,7 @@ static void nelly_decode_block(NellyMoserDecodeContext *s, memset(&aptr[NELLY_FILL_LEN], 0, (NELLY_BUF_LEN - NELLY_FILL_LEN) * sizeof(float)); - s->imdct_ctx.fft.imdct_calc(&s->imdct_ctx, s->imdct_out, aptr); + ff_imdct_calc(&s->imdct_ctx, s->imdct_out, aptr); /* XXX: overlapping and windowing should be part of a more generic imdct function */ overlap_and_window(s, s->state, aptr, s->imdct_out); |