mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/hevc_sei: fix invalid get_bits() in a comment
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
01ef127bf8
commit
5183fac92f
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue