From f95dac666caea27ce999ab8e8368317b6ebe4076 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Wed, 12 Aug 2020 08:14:08 +0200 Subject: [PATCH] avcodec/sheervideo: reduce size of vlc tables to normal values --- libavcodec/sheervideo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/sheervideo.c b/libavcodec/sheervideo.c index 1a43727a305..58776421d79 100644 --- a/libavcodec/sheervideo.c +++ b/libavcodec/sheervideo.c @@ -1795,7 +1795,7 @@ static int build_vlc(VLC *vlc, const uint8_t *len, int count) } 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), codes, sizeof(*codes), sizeof(*codes), syms, sizeof(*syms), sizeof(*syms), 0); -- 2.39.2