mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
avcodec/av1_parse: check for OBU header overread
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
e45ed15594
commit
4e937b1a60
@ -118,6 +118,10 @@ static inline int parse_obu_header(const uint8_t *buf, int buf_size,
|
||||
|
||||
*obu_size = has_size_flag ? leb128(&gb)
|
||||
: buf_size - 1 - extension_flag;
|
||||
|
||||
if (get_bits_left(&gb) < 0)
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
*start_pos = get_bits_count(&gb) / 8;
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user