From ec226e856d9c3da9550b07408cebe51761354c0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 5 Jun 2015 13:28:39 +0200 Subject: [PATCH] Revert "mpdparser: Don't consider streams with a known media presentation duration as live" This reverts commit 37011e519830e0786fa6e307ed26003a2a8774f1. This change was actually completely unnecessary, the streams in question are marked as static and are not considered live anyway. --- ext/dash/gstmpdparser.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ext/dash/gstmpdparser.c b/ext/dash/gstmpdparser.c index b1911c8aa3..dcd24da3f5 100644 --- a/ext/dash/gstmpdparser.c +++ b/ext/dash/gstmpdparser.c @@ -4241,8 +4241,7 @@ gst_mpd_client_is_live (GstMpdClient * client) g_return_val_if_fail (client != NULL, FALSE); g_return_val_if_fail (client->mpd_node != NULL, FALSE); - return client->mpd_node->type == GST_MPD_FILE_TYPE_DYNAMIC && - client->mpd_node->mediaPresentationDuration != -1; + return client->mpd_node->type == GST_MPD_FILE_TYPE_DYNAMIC; } guint