mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
Remove unneeded variable.
Originally committed as revision 24610 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
724f34716b
commit
fb443a6f3b
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user