]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/hevcdec: repeat character in skiped
authorMichael Niedermayer <michael@niedermayer.cc>
Wed, 28 Aug 2019 17:01:41 +0000 (19:01 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Sun, 15 Sep 2019 22:04:18 +0000 (00:04 +0200)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/hevcdec.c

index eed031913a1ba925558a14b5280071ccabb905ce..18395ce8335c47e9dff2eee78e14fe07c7278c2d 100644 (file)
@@ -508,7 +508,7 @@ static int hls_slice_header(HEVCContext *s)
     sh->first_slice_in_pic_flag = get_bits1(gb);
     if (s->ref && sh->first_slice_in_pic_flag) {
         av_log(s->avctx, AV_LOG_ERROR, "Two slices reporting being the first in the same frame.\n");
-        return 1; // This slice will be skiped later, do not corrupt state
+        return 1; // This slice will be skipped later, do not corrupt state
     }
 
     if ((IS_IDR(s) || IS_BLA(s)) && sh->first_slice_in_pic_flag) {