diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2008-08-12 00:36:36 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2008-08-12 00:36:36 +0000 |
commit | 0a570e826d7cb6602219236e20a15d85ab68b073 (patch) | |
tree | 6ac326a85a91f45414a4ccbf19f1c72cc757cf55 /libavcodec/wmaenc.c | |
parent | e8dd7b0c9a3d61a2a5be7e763e5bdde486cdfc29 (diff) | |
download | ffmpeg-0a570e826d7cb6602219236e20a15d85ab68b073.tar.gz |
remove mdct tmp buffer
Originally committed as revision 14702 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/wmaenc.c')
-rw-r--r-- | libavcodec/wmaenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmaenc.c b/libavcodec/wmaenc.c index b2ea90e638..4558947cb3 100644 --- a/libavcodec/wmaenc.c +++ b/libavcodec/wmaenc.c @@ -89,7 +89,7 @@ static void apply_window_and_mdct(AVCodecContext * avctx, signed short * audio, s->output[i+window_len] = audio[j] / n * win[window_len - i - 1]; s->frame_out[channel][i] = audio[j] / n * win[i]; } - ff_mdct_calc(&s->mdct_ctx[window_index], s->coefs[channel], s->output, s->mdct_tmp); + ff_mdct_calc(&s->mdct_ctx[window_index], s->coefs[channel], s->output); } } |