mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-29 22:00:58 +02:00
remove unneeded local variable
Originally committed as revision 14547 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
8354477edc
commit
ba7f712c21
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user