mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
hlsdemux: Always succeed the LATENCY event
Upstream and our internal source is irrelevant for the latency and we don't want the LATENCY event to ever fail.
This commit is contained in:
parent
126891e9a5
commit
9c7da93b9d
1 changed files with 7 additions and 0 deletions
|
@ -552,6 +552,13 @@ gst_hls_demux_src_event (GstPad * pad, GstObject * parent, GstEvent * event)
|
|||
gst_event_unref (event);
|
||||
return TRUE;
|
||||
}
|
||||
case GST_EVENT_LATENCY:{
|
||||
/* Upstream and our internal source are irrelevant
|
||||
* for latency, and we should not fail here to
|
||||
* configure the latency */
|
||||
gst_event_unref (event);
|
||||
return TRUE;
|
||||
}
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue