[FFmpeg-cvslog] indeo4: Validate scantable dimension
Luca Barbato
git at videolan.org
Sun Jul 14 13:22:26 CEST 2013
ffmpeg | branch: master | Luca Barbato <lu_zero at gentoo.org> | Fri Jul 12 18:10:05 2013 +0200| [cd78e934c246d1b2510f8fba0abfe40bb75795f6] | committer: Luca Barbato
indeo4: Validate scantable dimension
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: libav-stable at libav.org
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cd78e934c246d1b2510f8fba0abfe40bb75795f6
---
libavcodec/indeo4.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/libavcodec/indeo4.c b/libavcodec/indeo4.c
index f1ef02a..dbf24fa 100644
--- a/libavcodec/indeo4.c
+++ b/libavcodec/indeo4.c
@@ -352,6 +352,12 @@ static int decode_band_hdr(IVI45DecContext *ctx, IVIBandDesc *band,
av_log(avctx, AV_LOG_ERROR, "Custom scan pattern encountered!\n");
return AVERROR_INVALIDDATA;
}
+ if (scan_indx > 4 && scan_indx < 10) {
+ if (band->blk_size != 4)
+ return AVERROR_INVALIDDATA;
+ } else if (band->blk_size != 8)
+ return AVERROR_INVALIDDATA;
+
band->scan = scan_index_to_tab[scan_indx];
band->quant_mat = get_bits(&ctx->gb, 5);
More information about the ffmpeg-cvslog
mailing list