projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
01ef127
)
avcodec/hevc_sei: fix invalid get_bits() in a comment
author
Michael Niedermayer
<michaelni@gmx.at>
Sat, 7 Jun 2014 21:37:27 +0000
(23:37 +0200)
committer
Michael Niedermayer
<michaelni@gmx.at>
Sat, 7 Jun 2014 21:37:27 +0000
(23:37 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/hevc_sei.c
patch
|
blob
|
history
diff --git
a/libavcodec/hevc_sei.c
b/libavcodec/hevc_sei.c
index
216db37
..
29e76ab
100644
(file)
--- a/
libavcodec/hevc_sei.c
+++ b/
libavcodec/hevc_sei.c
@@
-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_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);
}
}
skip_bits(gb, 32);
}
}