From a11c6640bf41243576771dd1019a3062cda13264 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 12 Feb 2014 13:11:38 +0100 Subject: [PATCH] mssdemux: Download the manifest with compression, the fragments without --- ext/smoothstreaming/gstmssdemux.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ext/smoothstreaming/gstmssdemux.c b/ext/smoothstreaming/gstmssdemux.c index 27d11d7f61..f60c9a3789 100644 --- a/ext/smoothstreaming/gstmssdemux.c +++ b/ext/smoothstreaming/gstmssdemux.c @@ -937,7 +937,8 @@ gst_mss_demux_reload_manifest (GstMssDemux * mssdemux) downloader = gst_uri_downloader_new (); manifest_data = - gst_uri_downloader_fetch_uri (downloader, mssdemux->manifest_uri, NULL); + gst_uri_downloader_fetch_uri (downloader, mssdemux->manifest_uri, TRUE, + NULL); manifest_buffer = gst_fragment_get_buffer (manifest_data); g_object_unref (manifest_data); @@ -1033,7 +1034,8 @@ gst_mss_demux_stream_download_fragment (GstMssDemuxStream * stream, GST_DEBUG_OBJECT (mssdemux, "Got url '%s' for stream %p", url, stream); - fragment = gst_uri_downloader_fetch_uri (stream->downloader, url, NULL); + fragment = + gst_uri_downloader_fetch_uri (stream->downloader, url, FALSE, NULL); g_free (path); g_free (url);