mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
hlsdemux: demote error to warning
It is not fatal and can be quite normal when the network is too slow
This commit is contained in:
parent
7db723831d
commit
2ed8a819f6
1 changed files with 1 additions and 1 deletions
|
@ -1104,7 +1104,7 @@ alternate_advance (GstM3U8Client * client, gboolean forward)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (tmp == NULL) {
|
if (tmp == NULL) {
|
||||||
GST_ERROR ("Can't find next fragment");
|
GST_WARNING ("Can't find next fragment");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
client->current_file = tmp;
|
client->current_file = tmp;
|
||||||
|
|
Loading…
Reference in a new issue