From 1ce7d89868ce1b3a64987a0620a3ee2c9b0ab1d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 15 Sep 2014 11:59:32 +0300 Subject: [PATCH] dash: Actually retry 3 times as advertised instead of 2 --- ext/dash/gstdashdemux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/dash/gstdashdemux.c b/ext/dash/gstdashdemux.c index 97a0eacceb..e12c3a93c2 100644 --- a/ext/dash/gstdashdemux.c +++ b/ext/dash/gstdashdemux.c @@ -1616,7 +1616,7 @@ gst_dash_demux_stream_download_loop (GstDashDemuxStream * stream) demux->client->update_failed_count++; } - if (demux->client->update_failed_count < DEFAULT_FAILED_COUNT) { + if (demux->client->update_failed_count <= DEFAULT_FAILED_COUNT) { GST_WARNING_OBJECT (stream->pad, "Could not fetch the next fragment"); goto quit; } else {