Commit 55582f8d authored by Michael Niedermayer's avatar Michael Niedermayer

table contains vlc with 19 bits and 8*2 < 19

Originally committed as revision 5658 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5ab0f204
......@@ -1650,7 +1650,7 @@ static int huffman_decode(MPADecodeContext *s, GranuleDef *g,
if (get_bits_count(&s->gb) >= end_pos)
break;
if (code_table) {
code = get_vlc2(&s->gb, vlc->table, 8, 2);
code = get_vlc2(&s->gb, vlc->table, 8, 3);
if (code < 0)
return -1;
y = code_table[code];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment