diff options
author | Dale Curtis <dalecurtis@chromium.org> | 2020-05-14 14:38:07 -0700 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2020-06-13 00:43:09 +0200 |
commit | bf446711bc8b7f316771870b8d4dc4dd65f5d94b (patch) | |
tree | a6a865d501ed74a2330a3e274fca96fa52a467dd | |
parent | c0e7164ba6fbb6c17c27bde9dae61a52c915bff9 (diff) | |
download | ffmpeg-bf446711bc8b7f316771870b8d4dc4dd65f5d94b.tar.gz |
avformat/mov: Check if DTS is AV_NOPTS_VALUE in mov_find_next_sample().
Signed-off-by: Dale Curtis <dalecurtis@chromium.org>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index e11c9f4457..2fc27d2aec 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -7776,7 +7776,7 @@ static AVIndexEntry *mov_find_next_sample(AVFormatContext *s, AVStream **st) av_log(s, AV_LOG_TRACE, "stream %d, sample %d, dts %"PRId64"\n", i, msc->current_sample, dts); if (!sample || (!(s->pb->seekable & AVIO_SEEKABLE_NORMAL) && current_sample->pos < sample->pos) || ((s->pb->seekable & AVIO_SEEKABLE_NORMAL) && - ((msc->pb != s->pb && dts < best_dts) || (msc->pb == s->pb && + ((msc->pb != s->pb && dts < best_dts) || (msc->pb == s->pb && dts != AV_NOPTS_VALUE && ((FFABS(best_dts - dts) <= AV_TIME_BASE && current_sample->pos < sample->pos) || (FFABS(best_dts - dts) > AV_TIME_BASE && dts < best_dts)))))) { sample = current_sample; |