Commit 397958fa authored by jbr's avatar jbr

Read bitstream parameters for E-AC-3 streams before returning an error.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14528 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4f220742
......@@ -283,9 +283,6 @@ static int parse_frame_header(AC3DecodeContext *s)
if(err)
return err;
if(hdr.bitstream_id > 10)
return AC3_PARSE_ERROR_BSID;
/* get decoding parameters from header info */
s->bit_alloc_params.sr_code = hdr.sr_code;
s->channel_mode = hdr.channel_mode;
......@@ -310,6 +307,9 @@ static int parse_frame_header(AC3DecodeContext *s)
s->channel_in_cpl[s->lfe_ch] = 0;
}
if(hdr.bitstream_id > 10)
return AC3_PARSE_ERROR_BSID;
return ac3_parse_header(s);
}
......
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