Commit 5183fac9 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/hevc_sei: fix invalid get_bits() in a comment

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 01ef127b
......@@ -43,7 +43,7 @@ static void decode_nal_sei_decoded_picture_hash(HEVCContext *s)
// picture_crc = get_bits(gb, 16);
skip_bits(gb, 16);
} else if (hash_type == 2) {
// picture_checksum = get_bits(gb, 32);
// picture_checksum = get_bits_long(gb, 32);
skip_bits(gb, 32);
}
}
......
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