remove unneeded local variable

Originally committed as revision 14547 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Justin Ruggles 2008-08-05 00:32:27 +00:00
parent 8354477edc
commit ba7f712c21
1 changed files with 1 additions and 2 deletions

View File

@ -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;