Commit fb443a6f authored by Justin Ruggles's avatar Justin Ruggles

Remove unneeded variable.

Originally committed as revision 24610 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 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% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment