mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-06-16 04:32:47 +02:00
remove unneeded local variable
Originally committed as revision 14547 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
+1
-2
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user