summaryrefslogtreecommitdiff
path: root/apps/codecs/libwma/wmadeci.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libwma/wmadeci.c')
-rw-r--r--apps/codecs/libwma/wmadeci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libwma/wmadeci.c b/apps/codecs/libwma/wmadeci.c
index 5677ac69f8..d362c6d1e9 100644
--- a/apps/codecs/libwma/wmadeci.c
+++ b/apps/codecs/libwma/wmadeci.c
@@ -1388,7 +1388,7 @@ static int wma_decode_block(WMADecodeContext *s, int32_t *scratch_buffer)
1388 n4 = s->block_len >>1; 1388 n4 = s->block_len >>1;
1389 1389
1390 /*faster IMDCT from Vorbis*/ 1390 /*faster IMDCT from Vorbis*/
1391 mdct_backward( (1 << (12-bsize)), (int32_t*)(*(s->coefs))[ch], (int32_t*)scratch_buffer); 1391 mdct_backward( (1 << (s->block_len_bits+1)), (int32_t*)(*(s->coefs))[ch], (int32_t*)scratch_buffer);
1392 1392
1393 /*slower but more easily understood IMDCT from FFMPEG*/ 1393 /*slower but more easily understood IMDCT from FFMPEG*/
1394 //ff_imdct_calc(&s->mdct_ctx[bsize], 1394 //ff_imdct_calc(&s->mdct_ctx[bsize],