From 38e13f55a5a34d3ad3eea25a0a7bb23a223a3583 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 6 Oct 2013 22:34:50 +0200 Subject: [PATCH] ffmpeg: dont detect slight (0.1sec) backward moving dts as discontinuity --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index d1c841fb8b..38a3bd0d02 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+1pts){ + 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",