Commit cda57363 authored by jbr's avatar jbr

ac3dec: use skip_bits_long() for block start bits

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16019 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 477fb15e
...@@ -475,7 +475,7 @@ int ff_eac3_parse_header(AC3DecodeContext *s) ...@@ -475,7 +475,7 @@ int ff_eac3_parse_header(AC3DecodeContext *s)
The spec does not say what this data is or what it's used for. The spec does not say what this data is or what it's used for.
It is likely the offset of each block within the frame. */ It is likely the offset of each block within the frame. */
int block_start_bits = (s->num_blocks-1) * (4 + av_log2(s->frame_size-2)); int block_start_bits = (s->num_blocks-1) * (4 + av_log2(s->frame_size-2));
skip_bits(gbc, block_start_bits); skip_bits_long(gbc, block_start_bits);
} }
/* syntax state initialization */ /* syntax state initialization */
......
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