mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit '6255ccf7d51c82ab79bf0cd47a921f572dda4489'
* commit '6255ccf7d51c82ab79bf0cd47a921f572dda4489':
indeo4: Check the quantization matrix index
Conflicts:
libavcodec/indeo4.c
See: 8a20774a24
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
8c0bb19522
|
@ -371,8 +371,9 @@ static int decode_band_hdr(IVI45DecContext *ctx, IVIBandDesc *band,
|
|||
av_log(avctx, AV_LOG_ERROR, "Custom quant matrix encountered!\n");
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
if (quant_mat > 21) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Invalid quant matrix encountered!\n");
|
||||
if (quant_mat >= FF_ARRAY_ELEMS(quant_index_to_tab)) {
|
||||
avpriv_request_sample(avctx, "Quantization matrix %d",
|
||||
quant_mat);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
band->quant_mat = quant_mat;
|
||||
|
|
Loading…
Reference in New Issue