mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-24 08:12:44 +00:00
ffmpeg: dont detect slight (0.1sec) backward moving dts as discontinuity
This commit is contained in:
parent
8f2386b589
commit
38e13f55a5
2
ffmpeg.c
2
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",
|
||||
|
Loading…
Reference in New Issue
Block a user