diff options
| author | Michael Giacomelli <giac2000@hotmail.com> | 2008-04-07 02:32:48 +0000 |
|---|---|---|
| committer | Michael Giacomelli <giac2000@hotmail.com> | 2008-04-07 02:32:48 +0000 |
| commit | 82dc8175cfcfa82f426d6ccfdceacc0e83b31445 (patch) | |
| tree | 2de593beeb74206d24b0a757b6448a550de28aa6 /apps/codecs/libwma | |
| parent | c6bbb0f690753bbbc7239658d52acc6061e6d172 (diff) | |
| download | rockbox-82dc8175cfcfa82f426d6ccfdceacc0e83b31445.zip rockbox-82dc8175cfcfa82f426d6ccfdceacc0e83b31445.tar.gz rockbox-82dc8175cfcfa82f426d6ccfdceacc0e83b31445.tar.bz2 rockbox-82dc8175cfcfa82f426d6ccfdceacc0e83b31445.tar.xz | |
Make the WMA decoder less noisy in the sim.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17014 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libwma')
| -rw-r--r-- | apps/codecs/libwma/wmadeci.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/codecs/libwma/wmadeci.c b/apps/codecs/libwma/wmadeci.c index cba5180..f8fabd3 100644 --- a/apps/codecs/libwma/wmadeci.c +++ b/apps/codecs/libwma/wmadeci.c @@ -625,9 +625,8 @@ int wma_decode_init(WMADecodeContext* s, asf_waveformatex_t *wfx) window[j] = fsincos(fixmul32(j2,alpha)<<16, 0); //alpha between 0 and pi/2 } - //printf("created window\n"); s->windows[i] = window; - //printf("assigned window\n"); + } s->reset_block_lengths = 1; @@ -914,7 +913,7 @@ static int wma_decode_block(WMADecodeContext *s) int nb_coefs[MAX_CHANNELS]; fixed32 mdct_norm; - DEBUGF("***decode_block: %d (%d samples of %d in frame)\n", s->block_num, s->block_len, s->frame_len); + /*DEBUGF("***decode_block: %d (%d samples of %d in frame)\n", s->block_num, s->block_len, s->frame_len);*/ /* compute current block length */ if (s->use_variable_block_len) |