提交 d309f019 编写于 作者: J Justin Ruggles

10l: fix bit count for frame header

Originally committed as revision 24627 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 b22f9d65
......@@ -945,7 +945,10 @@ static int count_frame_header(FlacEncodeContext *s)
PUT_UTF8(s->frame_count, tmp, count += 8;)
/* explicit block size */
count += FFMAX(0, s->frame.bs_code[0] - 5) * 8;
if (s->frame.bs_code[0] == 6)
count += 8;
else if (s->frame.bs_code[0] == 7)
count += 16;
/* explicit sample rate */
count += ((s->sr_code[0] == 12) + (s->sr_code[0] > 12)) * 8;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册