Commit 5d88e400 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/hevc: check slice_header_extension data length

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent c79acacd
......@@ -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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment