Gst.Pad.prototype.push_event
function push_event(event:Gst.Event):Boolean { // Gjs wrapper for gst_pad_push_event() }
Sends the event to the peer of the given pad. This function is mainly used by elements to send events to their peer elements.
This function takes owership of the provided event so you should gst_event_ref() it if you want to reuse the event after this call.
- event
the Gst.Event to send to the pad.
- Returns
TRUE if the event was handled. MT safe.