1
0
mirror of https://git.ffmpeg.org/ffmpeg.git synced 2025-01-18 13:21:08 +00:00

avcodec/sheervideo: reduce size of vlc tables to normal values

This commit is contained in:
Paul B Mahol 2020-08-12 08:14:08 +02:00
parent 0a51abe8ab
commit f95dac666c

View File

@ -1795,7 +1795,7 @@ static int build_vlc(VLC *vlc, const uint8_t *len, int count)
} }
ff_free_vlc(vlc); ff_free_vlc(vlc);
return ff_init_vlc_sparse(vlc, 16, count, return ff_init_vlc_sparse(vlc, 12, count,
bits, sizeof(*bits), sizeof(*bits), bits, sizeof(*bits), sizeof(*bits),
codes, sizeof(*codes), sizeof(*codes), codes, sizeof(*codes), sizeof(*codes),
syms, sizeof(*syms), sizeof(*syms), 0); syms, sizeof(*syms), sizeof(*syms), 0);