Commit ce6f3fd6 authored by jbr's avatar jbr

remove unneeded local variable

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14547 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e63f60ac
......@@ -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