Gst.Element.prototype.continue_state
function continue_state(ret:Gst.StateChangeReturn):Gst.StateChangeReturn { // Gjs wrapper for gst_element_continue_state() }
Commit the state change of the element and proceed to the next pending state if any. This function is used by elements that do asynchronous state changes. The core will normally call this method automatically when an element returned Gst.StateChangeReturn.success from the state change function.
If after calling this method the element still has not reached the pending state, the next state change is performed.
This method is used internally and should normally not be called by plugins or applications.
- ret
The previous state return value
- Returns
The result of the commit state change. MT safe.