mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
dash: Actually retry 3 times as advertised instead of 2
This commit is contained in:
parent
d4a53a16dd
commit
1ce7d89868
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue