mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-05 07:40:01 +00:00
adaptivedemux: fix header redownload in case of errors
https://bugzilla.gnome.org/show_bug.cgi?id=756239
This commit is contained in:
parent
e0ef335426
commit
a85b64bb6d
1 changed files with 1 additions and 1 deletions
|
@ -2395,10 +2395,10 @@ gst_adaptive_demux_stream_download_fragment (GstAdaptiveDemuxStream * stream)
|
|||
|
||||
if (stream->need_header) {
|
||||
ret = gst_adaptive_demux_stream_download_header_fragment (stream);
|
||||
stream->need_header = FALSE;
|
||||
if (ret != GST_FLOW_OK) {
|
||||
return ret;
|
||||
}
|
||||
stream->need_header = FALSE;
|
||||
}
|
||||
|
||||
url = stream->fragment.uri;
|
||||
|
|
Loading…
Reference in a new issue