diff options
| author | Mohamed Tarek <mt@rockbox.org> | 2010-07-17 09:13:55 +0000 |
|---|---|---|
| committer | Mohamed Tarek <mt@rockbox.org> | 2010-07-17 09:13:55 +0000 |
| commit | 56161967c64656574f601721c1f91eaec11dd7fe (patch) | |
| tree | 90b89eccc697ed85e421610fdc2e444efecc8999 /apps/codecs/libwmapro/wmaprodec.c | |
| parent | 331460c1f520ccc9c2e29fc1c2f228d737c148fa (diff) | |
| download | rockbox-56161967c64656574f601721c1f91eaec11dd7fe.zip rockbox-56161967c64656574f601721c1f91eaec11dd7fe.tar.gz rockbox-56161967c64656574f601721c1f91eaec11dd7fe.tar.bz2 rockbox-56161967c64656574f601721c1f91eaec11dd7fe.tar.xz | |
Increase the size of quant table in libwmapro to accomodate more values for exp. Fixes wma pro failure on test files in download.rockbox.org/test_files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27460 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libwmapro/wmaprodec.c')
| -rw-r--r-- | apps/codecs/libwmapro/wmaprodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libwmapro/wmaprodec.c b/apps/codecs/libwmapro/wmaprodec.c index 8b2043a..88becb7 100644 --- a/apps/codecs/libwmapro/wmaprodec.c +++ b/apps/codecs/libwmapro/wmaprodec.c @@ -1249,7 +1249,7 @@ static int decode_subframe(WMAProDecodeCtx *s) s->channel[c].scale_factor_step; if(exp < EXP_MIN || exp > EXP_MAX) { - DEBUGF("in wmaprodec.c : unhandled value for exp, please report sample.\n"); + DEBUGF("in wmaprodec.c : unhandled value for exp (%d), please report sample.\n", exp); return -1; } const int32_t quant = QUANT(exp); |