Commit 79cd5d39 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/utvideodec: Fix vlc len

Fixes regression / Ticket2661
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent c17dd513
......@@ -70,7 +70,7 @@ static int build_huff(const uint8_t *src, VLC *vlc, int *fsym)
code += 0x80000000u >> (he[i].len - 1);
}
return ff_init_vlc_sparse(vlc, FFMIN(he[last].len, 9), last + 1,
return ff_init_vlc_sparse(vlc, FFMIN(he[last].len, 10), last + 1,
bits, sizeof(*bits), sizeof(*bits),
codes, sizeof(*codes), sizeof(*codes),
syms, sizeof(*syms), sizeof(*syms), 0);
......
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