From 2ed8a819f6bb75d5009839a042b7b91123a3e9b4 Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Mon, 13 Jul 2015 15:37:26 -0300 Subject: [PATCH] hlsdemux: demote error to warning It is not fatal and can be quite normal when the network is too slow --- ext/hls/m3u8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/hls/m3u8.c b/ext/hls/m3u8.c index 4b6e362897..5e78d948e2 100755 --- a/ext/hls/m3u8.c +++ b/ext/hls/m3u8.c @@ -1104,7 +1104,7 @@ alternate_advance (GstM3U8Client * client, gboolean forward) break; } if (tmp == NULL) { - GST_ERROR ("Can't find next fragment"); + GST_WARNING ("Can't find next fragment"); return; } client->current_file = tmp;