diff --git a/apps/codecs/libwma/wmadeci.c b/apps/codecs/libwma/wmadeci.c index c0cd6f53c2..084882a4d9 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