mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
hlsdemux: don't print an error if the download was cancelled
This commit is contained in:
parent
4602b42dee
commit
c599e4a9a1
1 changed files with 1 additions and 1 deletions
|
@ -649,7 +649,7 @@ gst_hls_demux_update_thread (GstHLSDemux * demux)
|
|||
|
||||
/* fetch the next fragment */
|
||||
if (!gst_hls_demux_get_next_fragment (demux, TRUE)) {
|
||||
if (!demux->end_of_playlist)
|
||||
if (!demux->end_of_playlist && !demux->cancelled)
|
||||
GST_ERROR_OBJECT (demux, "Could not fetch the next fragment");
|
||||
goto quit;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue