mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit '3db51bf671defd47f2ec5ab67b11fb7730fb5e5a'
* commit '3db51bf671defd47f2ec5ab67b11fb7730fb5e5a': ac3dec: Simplify skipping Merged-by: Clément Bœsch <u@pkh.me>
This commit is contained in:
commit
151b5e4a53
|
@ -1359,8 +1359,7 @@ static int decode_audio_block(AC3DecodeContext *s, int blk)
|
||||||
/* unused dummy data */
|
/* unused dummy data */
|
||||||
if (s->skip_syntax && get_bits1(gbc)) {
|
if (s->skip_syntax && get_bits1(gbc)) {
|
||||||
int skipl = get_bits(gbc, 9);
|
int skipl = get_bits(gbc, 9);
|
||||||
while (skipl--)
|
skip_bits_long(gbc, 8 * skipl);
|
||||||
skip_bits(gbc, 8);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* unpack the transform coefficients
|
/* unpack the transform coefficients
|
||||||
|
|
Loading…
Reference in New Issue