mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +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;
|
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:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue