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

Remove unneeded variable.

Originally committed as revision 24610 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 724f3471
......@@ -1150,14 +1150,11 @@ static void output_subframe(FlacEncodeContext *s, FlacSubframe *sub)
static void output_subframes(FlacEncodeContext *s)
{
FlacFrame *frame;
FlacSubframe *sub;
int ch;
frame = &s->frame;
for (ch = 0; ch < s->channels; ch++) {
sub = &frame->subframes[ch];
sub = &s->frame.subframes[ch];
/* subframe header */
put_bits(&s->pb, 1, 0);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册