adaptivedemux2: Don't blindly set the main manifest URI as referer

There's no guarantee it will *actually* be the URI which refered to what we are
downloading. It could be a stream URI or anything else.

Instead of putting something wrong, put no (specific) referer as a better choice

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3972>
This commit is contained in:
Edward Hervey 2023-02-15 18:06:36 +01:00 committed by GStreamer Marge Bot
parent bead28ad5c
commit dd3542aa4d

View file

@ -1410,7 +1410,7 @@ gst_adaptive_demux2_stream_submit_request_default (GstAdaptiveDemux2Stream *
GstAdaptiveDemux *demux = stream->demux;
if (!downloadhelper_submit_request (demux->download_helper,
demux->manifest_uri, DOWNLOAD_FLAG_NONE, download_req, NULL))
NULL, DOWNLOAD_FLAG_NONE, download_req, NULL))
return GST_FLOW_ERROR;
return GST_FLOW_OK;