You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avformat/mov: check for tts_count before deferencing tts_data
Fixes ticket #11460. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
@@ -5186,7 +5186,7 @@ static int mov_read_trak(MOVContext *c, AVIOContext *pb, MOVAtom atom)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
|
if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
|
||||||
int stts_constant = !!sc->stts_count;
|
int stts_constant = sc->stts_count && sc->tts_count;
|
||||||
if (sc->h_spacing && sc->v_spacing)
|
if (sc->h_spacing && sc->v_spacing)
|
||||||
av_reduce(&st->sample_aspect_ratio.num, &st->sample_aspect_ratio.den,
|
av_reduce(&st->sample_aspect_ratio.num, &st->sample_aspect_ratio.den,
|
||||||
sc->h_spacing, sc->v_spacing, INT_MAX);
|
sc->h_spacing, sc->v_spacing, INT_MAX);
|
||||||
|
Reference in New Issue
Block a user