diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-09-10 21:10:17 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-09-12 02:30:35 +0200 |
commit | 791d06da1a00b775f5035c0abb2ea819c912943f (patch) | |
tree | 6614d878e9a596430adff81c68b29b4ac2dc14b5 | |
parent | 9bc5df5ec8b724d5b60857151fd320bbef6f8f90 (diff) | |
download | ffmpeg-791d06da1a00b775f5035c0abb2ea819c912943f.tar.gz |
avcodec/hevc_ps: Fix c?_qp_offset_list size
Fixes: runtime error: index 5 out of bounds for type 'int8_t const[5]'
Fixes:3175/clusterfuzz-testcase-minimized-4736774054084608
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit abf3f9fa232409c00b60041464604a91fa5612c0)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/hevc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h index 5d9d35c446..77f3db8889 100644 --- a/libavcodec/hevc.h +++ b/libavcodec/hevc.h @@ -538,8 +538,8 @@ typedef struct HEVCPPS { uint8_t chroma_qp_offset_list_enabled_flag; uint8_t diff_cu_chroma_qp_offset_depth; uint8_t chroma_qp_offset_list_len_minus1; - int8_t cb_qp_offset_list[5]; - int8_t cr_qp_offset_list[5]; + int8_t cb_qp_offset_list[6]; + int8_t cr_qp_offset_list[6]; uint8_t log2_sao_offset_scale_luma; uint8_t log2_sao_offset_scale_chroma; |