mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 11:49:48 +00:00
mov: Discard invalid CTTS.
Fixes Ticket385 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
15d75dabee
commit
4093220029
@ -1774,6 +1774,14 @@ static int mov_read_ctts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
|
||||
|
||||
sc->ctts_data[i].count = count;
|
||||
sc->ctts_data[i].duration= duration;
|
||||
|
||||
if (FFABS(duration) > (1<<28) && i+2<entries) {
|
||||
av_log(c->fc, AV_LOG_WARNING, "CTTS invalid\n");
|
||||
av_freep(&sc->ctts_data);
|
||||
sc->ctts_count = 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (duration < 0 && i+2<entries)
|
||||
sc->dts_shift = FFMAX(sc->dts_shift, -duration);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user