[FFmpeg-cvslog] avcodec/utvideodec: Increase vlc len

Carl Eugen Hoyos git at videolan.org
Tue Jun 10 00:39:04 CEST 2014


ffmpeg | branch: release/2.2 | Carl Eugen Hoyos <cehoyos at ag.or.at> | Thu May 29 08:41:15 2014 +0200| [09d406eec811e0f7a0a64c2d54e259e18a964922] | committer: Carl Eugen Hoyos

avcodec/utvideodec: Increase vlc len

Fixes a regression since fb3e380 similar to ticket #2661,
reported by fluffrabbit at aol dot com.

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit 673716c54b39eba9579a38ad222130e3f9549167)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=09d406eec811e0f7a0a64c2d54e259e18a964922
---

 libavcodec/utvideodec.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/utvideodec.c b/libavcodec/utvideodec.c
index e3ef22d..1c76773 100644
--- a/libavcodec/utvideodec.c
+++ b/libavcodec/utvideodec.c
@@ -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, 10), last + 1,
+    return ff_init_vlc_sparse(vlc, FFMIN(he[last].len, 11), last + 1,
                               bits,  sizeof(*bits),  sizeof(*bits),
                               codes, sizeof(*codes), sizeof(*codes),
                               syms,  sizeof(*syms),  sizeof(*syms), 0);



More information about the ffmpeg-cvslog mailing list