Commit f7b57add authored by Michael Niedermayer's avatar Michael Niedermayer

cook: tighten the quant_index_table range further.

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 8e31dbc1
......@@ -389,7 +389,7 @@ static int decode_envelope(COOKContext *q, COOKSubpacket *p,
q->envelope_quant_index[vlc_index - 1].bits, 2);
quant_index_table[i] = quant_index_table[i - 1] + j - 12; // differential encoding
if (quant_index_table[i] < -63 || quant_index_table[i] > 64) {
if (quant_index_table[i] < -63 || quant_index_table[i] > 63) {
av_log(NULL, AV_LOG_ERROR, "quant_index_table value out of bounds\n");
return AVERROR_INVALIDDATA;
}
......
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