mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-25 15:36:42 +00:00
hlsdemux: do not post an error if we seek/cancel during caching of fragments
This commit is contained in:
parent
d69297a23c
commit
015d1e11e2
1 changed files with 5 additions and 3 deletions
|
@ -751,9 +751,11 @@ end_of_playlist:
|
||||||
|
|
||||||
cache_error:
|
cache_error:
|
||||||
{
|
{
|
||||||
GST_ELEMENT_ERROR (demux, RESOURCE, NOT_FOUND,
|
if (!demux->cancelled) {
|
||||||
("Could not cache the first fragments"), (NULL));
|
GST_ELEMENT_ERROR (demux, RESOURCE, NOT_FOUND,
|
||||||
gst_hls_demux_stop (demux);
|
("Could not cache the first fragments"), (NULL));
|
||||||
|
gst_hls_demux_stop (demux);
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue