diff options
| author | Michael Giacomelli <giac2000@hotmail.com> | 2008-01-19 23:00:50 +0000 |
|---|---|---|
| committer | Michael Giacomelli <giac2000@hotmail.com> | 2008-01-19 23:00:50 +0000 |
| commit | 5730da2ba882372836795eac9b05eadc23a694d1 (patch) | |
| tree | d8149cae60d37e6d3d96059d694097c09f2ed0f4 /apps/codecs | |
| parent | 099c96ebc9ac62e062388ffe530ca8131209044a (diff) | |
| download | rockbox-5730da2ba882372836795eac9b05eadc23a694d1.zip rockbox-5730da2ba882372836795eac9b05eadc23a694d1.tar.gz rockbox-5730da2ba882372836795eac9b05eadc23a694d1.tar.bz2 rockbox-5730da2ba882372836795eac9b05eadc23a694d1.tar.xz | |
Apply last fall's exponent fix to WMA v1 files as well.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16114 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
| -rw-r--r-- | apps/codecs/libwma/wmadeci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libwma/wmadeci.c b/apps/codecs/libwma/wmadeci.c index c0cd6f5..084882a 100644 --- a/apps/codecs/libwma/wmadeci.c +++ b/apps/codecs/libwma/wmadeci.c @@ -858,7 +858,7 @@ static int decode_exp_vlc(WMADecodeContext *s, int ch) { last_exp = get_bits(&s->gb, 5) + 10; /* XXX: use a table */ - v = pow_10_to_yover16[last_exp]; + v = pow_10_to_yover16_ptr[last_exp]; max_scale = v; n = *ptr++; do |