Commit a5008738 authored by jbr's avatar jbr

skip converter exponent strategy for all channels at once

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15092 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d59ae465
......@@ -415,9 +415,7 @@ int ff_eac3_parse_header(AC3DecodeContext *s)
/* original exponent strategies if this stream was converted from AC-3 */
if (s->frame_type == EAC3_FRAME_TYPE_INDEPENDENT &&
(s->num_blocks == 6 || get_bits1(gbc))) {
for (ch = 1; ch <= s->fbw_channels; ch++) {
skip_bits(gbc, 5); // skip converter channel exponent strategy
}
skip_bits(gbc, 5 * s->fbw_channels); // skip converter channel exponent strategy
}
/* determine which channels use AHT */
......
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