mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
Revert "nlecomposition: Start task and initialize the stack after chaining up to parent's change state function"
This reverts commit 57d40bec1a
.
Apparently it causes timeouts in the unit tests on Jenkins and
Thibault's machine, and in the gst-validate tests.
Caused by elements staying in PAUSED and waiting to be set to PLAYING.
Needs further investigation.
This commit is contained in:
parent
582bf15c35
commit
5511124bc0
1 changed files with 12 additions and 22 deletions
|
@ -2397,13 +2397,23 @@ static GstStateChangeReturn
|
||||||
nle_composition_change_state (GstElement * element, GstStateChange transition)
|
nle_composition_change_state (GstElement * element, GstStateChange transition)
|
||||||
{
|
{
|
||||||
NleComposition *comp = (NleComposition *) element;
|
NleComposition *comp = (NleComposition *) element;
|
||||||
GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
|
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (comp, "%s => %s",
|
GST_DEBUG_OBJECT (comp, "%s => %s",
|
||||||
gst_element_state_get_name (GST_STATE_TRANSITION_CURRENT (transition)),
|
gst_element_state_get_name (GST_STATE_TRANSITION_CURRENT (transition)),
|
||||||
gst_element_state_get_name (GST_STATE_TRANSITION_NEXT (transition)));
|
gst_element_state_get_name (GST_STATE_TRANSITION_NEXT (transition)));
|
||||||
|
|
||||||
switch (transition) {
|
switch (transition) {
|
||||||
|
case GST_STATE_CHANGE_NULL_TO_READY:
|
||||||
|
_start_task (comp);
|
||||||
|
break;
|
||||||
|
case GST_STATE_CHANGE_READY_TO_PAUSED:
|
||||||
|
/* state-lock all elements */
|
||||||
|
GST_DEBUG_OBJECT (comp,
|
||||||
|
"Setting all children to READY and locking their state");
|
||||||
|
|
||||||
|
_add_update_compo_action (comp, G_CALLBACK (_initialize_stack_func),
|
||||||
|
COMP_UPDATE_STACK_INITIALIZE);
|
||||||
|
break;
|
||||||
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
||||||
_stop_task (comp);
|
_stop_task (comp);
|
||||||
|
|
||||||
|
@ -2425,27 +2435,7 @@ nle_composition_change_state (GstElement * element, GstStateChange transition)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
return GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
||||||
if (ret == GST_STATE_CHANGE_FAILURE)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
switch (transition) {
|
|
||||||
case GST_STATE_CHANGE_NULL_TO_READY:
|
|
||||||
_start_task (comp);
|
|
||||||
break;
|
|
||||||
case GST_STATE_CHANGE_READY_TO_PAUSED:
|
|
||||||
/* state-lock all elements */
|
|
||||||
GST_DEBUG_OBJECT (comp,
|
|
||||||
"Setting all children to READY and locking their state");
|
|
||||||
|
|
||||||
_add_update_compo_action (comp, G_CALLBACK (_initialize_stack_func),
|
|
||||||
COMP_UPDATE_STACK_INITIALIZE);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static gint
|
static gint
|
||||||
|
|
Loading…
Reference in a new issue