[FFmpeg-cvslog] ffmpeg: dont detect slight (0.1sec) backward moving dts as discontinuity

Michael Niedermayer git at videolan.org
Mon Oct 7 01:53:27 CEST 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Oct  6 22:34:50 2013 +0200| [38e13f55a5a34d3ad3eea25a0a7bb23a223a3583] | committer: Michael Niedermayer

ffmpeg: dont detect slight (0.1sec) backward moving dts as discontinuity

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

 ffmpeg.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ffmpeg.c b/ffmpeg.c
index d1c841f..38a3bd0 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -3043,7 +3043,7 @@ static int process_input(int file_index)
         if(delta < -1LL*dts_delta_threshold*AV_TIME_BASE ||
             (delta > 1LL*dts_delta_threshold*AV_TIME_BASE &&
                 ist->st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE) ||
-            pkt_dts+1<ist->pts){
+            pkt_dts + AV_TIME_BASE/10 < ist->pts){
             ifile->ts_offset -= delta;
             av_log(NULL, AV_LOG_DEBUG,
                    "timestamp discontinuity %"PRId64", new offset= %"PRId64"\n",



More information about the ffmpeg-cvslog mailing list