mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 02:00:33 +00:00
composition: Do not forget to set expandables state to NULL when disposing
Co-Authored by: Thibault Saunier <tsaunier@gnome.org>
This commit is contained in:
parent
bd47c57d1a
commit
6e476ddd24
1 changed files with 7 additions and 1 deletions
|
@ -2121,12 +2121,18 @@ static void
|
|||
_set_all_children_state (GnlComposition * comp, GstState state)
|
||||
{
|
||||
GList *tmp;
|
||||
COMP_OBJECTS_LOCK (comp);
|
||||
|
||||
GST_DEBUG_OBJECT (comp, "Setting all children state to %s",
|
||||
gst_element_state_get_name (state));
|
||||
|
||||
COMP_OBJECTS_LOCK (comp);
|
||||
gst_element_set_state (comp->priv->current_bin, state);
|
||||
for (tmp = comp->priv->objects_start; tmp; tmp = tmp->next)
|
||||
gst_element_set_state (tmp->data, state);
|
||||
|
||||
for (tmp = comp->priv->expandables; tmp; tmp = tmp->next)
|
||||
gst_element_set_state (tmp->data, state);
|
||||
|
||||
COMP_OBJECTS_UNLOCK (comp);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue