summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2014-05-05 09:37:44 +0200
committerSebastian Dröge <sebastian@centricular.com>2014-05-05 09:41:51 +0200
commitbb8227e279b3205095a68e5ad4aca0f72cf397d8 (patch)
tree8ba350f6e6cb563a752b5f54d77d0392b1703d8f /ext
parent706a88ccb3705a4e0d0c9ebd78357a4a30e48106 (diff)
downloadgstreamer-plugins-bad-bb8227e279b3205095a68e5ad4aca0f72cf397d8.tar.gz
dashdemux: Update for uri downloader API changes
Diffstat (limited to 'ext')
-rw-r--r--ext/dash/gstdashdemux.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/dash/gstdashdemux.c b/ext/dash/gstdashdemux.c
index 372fe4396..436b65042 100644
--- a/ext/dash/gstdashdemux.c
+++ b/ext/dash/gstdashdemux.c
@@ -1240,7 +1240,7 @@ gst_dash_demux_refresh_mpd (GstDashDemux * demux)
GST_DEBUG_OBJECT (demux, "Updating manifest file from URL %s",
demux->client->mpd_uri);
download = gst_uri_downloader_fetch_uri (demux->downloader,
- demux->client->mpd_uri, NULL, TRUE, TRUE, NULL);
+ demux->client->mpd_uri, NULL, TRUE, TRUE, TRUE, NULL);
if (download) {
GstMpdClient *new_client = NULL;
@@ -1674,7 +1674,7 @@ gst_dash_demux_download_header_fragment (GstDashDemux * demux,
}
fragment = gst_uri_downloader_fetch_uri_with_range (stream->downloader,
- next_header_uri, demux->client->mpd_uri, FALSE, FALSE, range_start,
+ next_header_uri, demux->client->mpd_uri, FALSE, FALSE, TRUE, range_start,
range_end, NULL);
g_free (next_header_uri);
if (fragment) {
@@ -1924,7 +1924,7 @@ gst_dash_demux_stream_download_fragment (GstDashDemux * demux,
fragment.range_start, fragment.range_end);
download = gst_uri_downloader_fetch_uri_with_range (stream->downloader,
- fragment.uri, demux->client->mpd_uri, FALSE, FALSE,
+ fragment.uri, demux->client->mpd_uri, FALSE, FALSE, TRUE,
fragment.range_start, fragment.range_end, NULL);
if (download == NULL) {
@@ -1957,8 +1957,8 @@ gst_dash_demux_stream_download_fragment (GstDashDemux * demux,
fragment.index_range_end);
download =
gst_uri_downloader_fetch_uri_with_range (stream->downloader, uri,
- demux->client->mpd_uri, FALSE, FALSE, fragment.index_range_start,
- fragment.index_range_end, NULL);
+ demux->client->mpd_uri, FALSE, FALSE, TRUE,
+ fragment.index_range_start, fragment.index_range_end, NULL);
if (download) {
index_buffer = gst_fragment_get_buffer (download);
if (index_buffer)