提交 2cb1773d 编写于 作者: F Fabrice Bellard

fixed mb_intra_vlc decoding table size


Originally committed as revision 61 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 486171d7
......@@ -592,7 +592,7 @@ int msmpeg4_decode_init_vlc(MpegEncContext *s)
init_vlc(&mb_non_intra_vlc, 9, 128,
&table_mb_non_intra[0][1], 8, 4,
&table_mb_non_intra[0][0], 8, 4);
init_vlc(&mb_intra_vlc, 9, 128,
init_vlc(&mb_intra_vlc, 9, 64,
&table_mb_intra[0][1], 4, 2,
&table_mb_intra[0][0], 4, 2);
return 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册