From 3a201bd04f3455535f9760ac610bd0b60573d264 Mon Sep 17 00:00:00 2001 From: Stefan Gehrer Date: Fri, 19 Feb 2010 20:42:55 +0000 Subject: remove a Huffman table from WMA which also exists in AAC Originally committed as revision 21902 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/wmadec.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavcodec/wmadec.c') diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c index 5e04e512f1..b2f8aa70d9 100644 --- a/libavcodec/wmadec.c +++ b/libavcodec/wmadec.c @@ -116,9 +116,9 @@ static int wma_decode_init(AVCodecContext * avctx) } if (s->use_exp_vlc) { - init_vlc(&s->exp_vlc, EXPVLCBITS, sizeof(ff_wma_scale_huffbits), //FIXME move out of context - ff_wma_scale_huffbits, 1, 1, - ff_wma_scale_huffcodes, 4, 4, 0); + init_vlc(&s->exp_vlc, EXPVLCBITS, sizeof(ff_aac_scalefactor_bits), //FIXME move out of context + ff_aac_scalefactor_bits, 1, 1, + ff_aac_scalefactor_code, 4, 4, 0); } else { wma_lsp_to_curve_init(s, s->frame_len); } -- cgit v1.2.3