mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
mssdemux: Always accept the latency configure event
Upstream or internal elements are irrelevant and we should always succeed.
This commit is contained in:
parent
b54367e211
commit
b627d7df83
1 changed files with 7 additions and 0 deletions
|
@ -605,6 +605,13 @@ gst_mss_demux_src_event (GstPad * pad, GstObject * parent, GstEvent * event)
|
|||
}
|
||||
}
|
||||
break;
|
||||
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