Browse Source

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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
5183fac92f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/hevc_sei.c

+ 1
- 1
libavcodec/hevc_sei.c View File

@@ -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…
Cancel
Save