Commit ba7f712c authored by Justin Ruggles's avatar Justin Ruggles

remove unneeded local variable

Originally committed as revision 14547 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 8354477e
......@@ -276,10 +276,9 @@ static int ac3_parse_header(AC3DecodeContext *s)
static int parse_frame_header(AC3DecodeContext *s)
{
AC3HeaderInfo hdr;
GetBitContext *gbc = &s->gbc;
int err;
err = ff_ac3_parse_header(gbc, &hdr);
err = ff_ac3_parse_header(&s->gbc, &hdr);
if(err)
return err;
......
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