aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2019-08-28 19:01:41 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2019-12-06 20:30:57 +0100
commit2a306730a4a3897f5cae4468f314d3a47c215bcc (patch)
tree94c637f24bfdd7c61c5e9858f95fe3a35b0cd3c9 /libavcodec
parent668d797a5723403613c31b103ce3c511cdb95c8b (diff)
downloadffmpeg-2a306730a4a3897f5cae4468f314d3a47c215bcc.tar.gz
avcodec/hevcdec: repeat character in skiped
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit d2d8e797cc4f3cea3470d464bd5f51cd097fe371) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/hevc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c
index 89cd732ea8..de2990b903 100644
--- a/libavcodec/hevc.c
+++ b/libavcodec/hevc.c
@@ -425,7 +425,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) {