diff --git a/libavformat/mov.c b/libavformat/mov.c index 5fb345a4614cd92bddd94de4bc548eb0a524435a..f06de061ad735d06cf6ec0d0dcda7b1570c8d8f5 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -4247,6 +4247,11 @@ static int mov_read_sidx(MOVContext *c, AVIOContext *pb, MOVAtom atom) timescale = av_make_q(1, avio_rb32(pb)); + if (timescale.den <= 0) { + av_log(c->fc, AV_LOG_ERROR, "Invalid sidx timescale 1/%d\n", timescale.den); + return AVERROR_INVALIDDATA; + } + if (version == 0) { pts = avio_rb32(pb); offset += avio_rb32(pb);