Commit e9006210 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/oggparseflac: Replace skip_bits_long() by skip_bits() where possible

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent f72fa1ad
......@@ -50,7 +50,7 @@ flac_header (AVFormatContext * s, int idx)
skip_bits_long(&gb, 4*8); /* "FLAC" */
if(get_bits(&gb, 8) != 1) /* unsupported major version */
return -1;
skip_bits_long(&gb, 8 + 16); /* minor version + header count */
skip_bits(&gb, 8 + 16); /* minor version + header count */
skip_bits_long(&gb, 4*8); /* "fLaC" */
/* METADATA_BLOCK_HEADER */
......
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