mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 09:12:33 +00:00
avcodec/hevc: check slice_header_extension data length
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
c79acacd2e
commit
5d88e40093
@ -708,6 +708,10 @@ static int hls_slice_header(HEVCContext *s)
|
||||
|
||||
if (s->pps->slice_header_extension_present_flag) {
|
||||
unsigned int length = get_ue_golomb_long(gb);
|
||||
if (length*8LL > get_bits_left(gb)) {
|
||||
av_log(s->avctx, AV_LOG_ERROR, "too many slice_header_extension_data_bytes\n");
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
for (i = 0; i < length; i++)
|
||||
skip_bits(gb, 8); // slice_header_extension_data_byte
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user