mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
ac3dec: Simplify skipping
skip_bits_long() can skip up to 32-bit ranges. Signed-off-by: Diego Biurrun <diego@biurrun.de>
This commit is contained in:
parent
f0ccc65bc9
commit
3db51bf671
@ -1271,8 +1271,7 @@ static int decode_audio_block(AC3DecodeContext *s, int blk)
|
||||
/* unused dummy data */
|
||||
if (s->skip_syntax && get_bits1(gbc)) {
|
||||
int skipl = get_bits(gbc, 9);
|
||||
while (skipl--)
|
||||
skip_bits(gbc, 8);
|
||||
skip_bits_long(gbc, 8 * skipl);
|
||||
}
|
||||
|
||||
/* unpack the transform coefficients
|
||||
|
Loading…
Reference in New Issue
Block a user