提交 d4c48e48 编写于 作者: M Michael Niedermayer

get_vlc2() "docs"

Originally committed as revision 1599 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 3e499f53
......@@ -752,6 +752,14 @@ static inline int get_vlc(GetBitContext *s, VLC *vlc)
return code;
}
/**
* parses a vlc code, faster then get_vlc()
* @param bits is the number of bits which will be read at once, must be
* identical to nb_bits in init_vlc()
* @param max_depth is the number of times bits bits must be readed to completly
* read the longest vlc code
* = (max_vlc_length + bits - 1) / bits
*/
static always_inline int get_vlc2(GetBitContext *s, VLC_TYPE (*table)[2],
int bits, int max_depth)
{
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册