Allowing larger timestamps makes it impossible to calculate basic things like 
the
difference of 2 timestamps or their sum without checking each individual 
computation for
overflow.
This should avoid a significant number of overflow checks

Fixes Ticket5136

Signed-off-by: Michael Niedermayer <mich...@niedermayer.cc>
---
 libavformat/utils.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/libavformat/utils.c b/libavformat/utils.c
index 3e0f57d..d227e24 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -833,6 +833,12 @@ int ff_read_packet(AVFormatContext *s, AVPacket *pkt)
             continue;
         }
 
+        if (   (pkt->dts != AV_NOPTS_VALUE && (pkt->dts <= INT64_MIN/2 || 
pkt->dts >= INT64_MAX/2))
+            || (pkt->pts != AV_NOPTS_VALUE && (pkt->pts <= INT64_MIN/2 || 
pkt->pts >= INT64_MAX/2))) {
+            av_log(s, AV_LOG_WARNING, "Ignoring huge timestamps %"PRId64" 
%"PRId64"\n", pkt->dts, pkt->pts);
+            pkt->dts = pkt->pts = AV_NOPTS_VALUE;
+        }
+
         st = s->streams[pkt->stream_index];
 
         if (update_wrap_reference(s, st, pkt->stream_index, pkt) && 
st->pts_wrap_behavior == AV_PTS_WRAP_SUB_OFFSET) {
-- 
2.9.3

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Reply via email to