summaryrefslogtreecommitdiff
path: root/apps/codecs/libwma/wmadeci.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-09-02 11:06:29 +0000
committerJens Arnold <amiconn@rockbox.org>2007-09-02 11:06:29 +0000
commit20444c47a8b25ed4193a44023d404324ebd762c5 (patch)
tree6f1bba18f98da632abf123f532151cbdd227f209 /apps/codecs/libwma/wmadeci.c
parent72b74478bfe0fd6fc54b4fae5ffeeee311fc3c6a (diff)
downloadrockbox-20444c47a8b25ed4193a44023d404324ebd762c5.tar.gz
rockbox-20444c47a8b25ed4193a44023d404324ebd762c5.zip
Fix warning.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14577 a1c6a512-1295-4272-9138-f99709370657
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 8aa3620960..e78b5a6962 100644
--- a/apps/codecs/libwma/wmadeci.c
+++ b/apps/codecs/libwma/wmadeci.c
@@ -1111,7 +1111,7 @@ static int decode_exp_vlc(WMADecodeContext *s, int ch)
1111 fixed32 *q,*q_end; 1111 fixed32 *q,*q_end;
1112 1112
1113 /*accommodate the 16 negative indices */ 1113 /*accommodate the 16 negative indices */
1114 fixed32 *pow_10_to_yover16_ptr = &pow_10_to_yover16[16]; 1114 const fixed32 *pow_10_to_yover16_ptr = &pow_10_to_yover16[16];
1115 1115
1116 band_ptr = s->exponent_bands[s->frame_len_bits - s->block_len_bits]; 1116 band_ptr = s->exponent_bands[s->frame_len_bits - s->block_len_bits];
1117 ptr = band_ptr; 1117 ptr = band_ptr;