diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index d0511f1582..38801f2d58 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvdec.c @@ -815,6 +815,10 @@ retry_duration: if (cts < 0) { // dts are wrong flv->wrong_dts = 1; av_log(s, AV_LOG_WARNING, "negative cts, previous timestamps might be wrong\n"); + } else if (FFABS(dts - pts) > 1000*60*15) { + av_log(s, AV_LOG_WARNING, + "invalid timestamps %"PRId64" %"PRId64"\n", dts, pts); + dts = pts = AV_NOPTS_VALUE; } if (flv->wrong_dts) dts = AV_NOPTS_VALUE;