[FFmpeg-cvslog] avcodec/hevc_sei: fix invalid get_bits() in a comment

Michael Niedermayer git at videolan.org
Sun Jun 8 03:01:33 CEST 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Jun  7 23:37:27 2014 +0200| [5183fac92fc5c574a053dd06b84e735a1ec1cfa6] | committer: Michael Niedermayer

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

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5183fac92fc5c574a053dd06b84e735a1ec1cfa6
---

 libavcodec/hevc_sei.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/hevc_sei.c b/libavcodec/hevc_sei.c
index 216db37..29e76ab 100644
--- 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_checksum = get_bits(gb, 32);
+            // picture_checksum = get_bits_long(gb, 32);
             skip_bits(gb, 32);
         }
     }



More information about the ffmpeg-cvslog mailing list