diff mbox

[FFmpeg-devel,5/6] dashdec: Avoid trying to read any segments beyond the last

Message ID DB3PR0202MB345209182E0A9C74F4A0DDB0EC120@DB3PR0202MB3452.eurprd02.prod.outlook.com
State New
Headers show

Commit Message

sfan5 Jan. 7, 2018, 6:46 p.m. UTC

diff mbox

Patch

>From 277c710159849816bff4e4f5ccd1139348518620 Mon Sep 17 00:00:00 2001
From: sfan5 <sfan5@live.de>
Date: Fri, 5 Jan 2018 14:19:25 +0100
Subject: [PATCH 5/6] dashdec: Avoid trying to read any segments beyond the
 last

---
 libavformat/dashdec.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c
index 1252d4156..af8ab5f2f 100644
--- a/libavformat/dashdec.c
+++ b/libavformat/dashdec.c
@@ -1505,9 +1505,11 @@  restart:
     if (ret > 0)
         goto end;
 
-    if (!v->is_restart_needed)
-        v->cur_seq_no++;
-    v->is_restart_needed = 1;
+    if (c->is_live || v->cur_seq_no < v->last_seq_no) {
+	    if (!v->is_restart_needed)
+	        v->cur_seq_no++;
+	    v->is_restart_needed = 1;
+    }
 
 end:
     return ret;
-- 
2.15.1