[FFmpeg-cvslog] avformat/subtitles: check lower bound for duration overlap seeking.

Clément Bœsch git at videolan.org
Sun Sep 8 12:57:45 CEST 2013


ffmpeg | branch: master | Clément Bœsch <u at pkh.me> | Sun Sep  8 09:55:02 2013 +0200| [1ca4bf930bab681a79fb591330043675c7cfd798] | committer: Clément Bœsch

avformat/subtitles: check lower bound for duration overlap seeking.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1ca4bf930bab681a79fb591330043675c7cfd798
---

 libavformat/subtitles.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavformat/subtitles.c b/libavformat/subtitles.c
index b6d335c..b796f40 100644
--- a/libavformat/subtitles.c
+++ b/libavformat/subtitles.c
@@ -122,10 +122,11 @@ int ff_subtitles_queue_seek(FFDemuxSubtitlesQueue *q, AVFormatContext *s, int st
         /* look back in the latest subtitles for overlapping subtitles */
         ts_selected = q->subs[idx].pts;
         for (i = idx - 1; i >= 0; i--) {
+            int64_t pts = q->subs[i].pts;
             if (q->subs[i].duration <= 0 ||
                 (stream_index != -1 && q->subs[i].stream_index != stream_index))
                 continue;
-            if (q->subs[i].pts > ts_selected - q->subs[i].duration)
+            if (pts >= min_ts && pts > ts_selected - q->subs[i].duration)
                 idx = i;
             else
                 break;



More information about the ffmpeg-cvslog mailing list