mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 22:16:22 +00:00
utils: Add gst_bin_sync_children_states()
gst_bin_sync_children_states() will iterate over all the elements of a bin and sync their states with the state of the bin. This is useful when adding many elements to a bin and would otherwise have to call gst_element_sync_state_with_parent() on each and every one of them. https://bugzilla.gnome.org/show_bug.cgi?id=745042
This commit is contained in:
parent
3da3e8df3e
commit
6ec3c4bc66
4 changed files with 56 additions and 0 deletions
|
@ -87,6 +87,7 @@ gst_bin_recalculate_latency
|
|||
gst_bin_add_many
|
||||
gst_bin_remove_many
|
||||
gst_bin_find_unlinked_pad
|
||||
gst_bin_sync_children_states
|
||||
|
||||
<SUBSECTION>
|
||||
GstBinFlags
|
||||
|
|
|
@ -3068,6 +3068,58 @@ gst_bin_find_unlinked_pad (GstBin * bin, GstPadDirection direction)
|
|||
return pad;
|
||||
}
|
||||
|
||||
static void
|
||||
gst_bin_sync_children_states_foreach (const GValue * value, gpointer user_data)
|
||||
{
|
||||
gboolean *success = user_data;
|
||||
GstElement *element = g_value_get_object (value);
|
||||
|
||||
if (gst_element_is_locked_state (element)) {
|
||||
*success = TRUE;
|
||||
} else {
|
||||
*success = *success && gst_element_sync_state_with_parent (element);
|
||||
|
||||
if (GST_IS_BIN (element))
|
||||
*success = *success
|
||||
&& gst_bin_sync_children_states (GST_BIN_CAST (element));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* gst_bin_sync_children_states:
|
||||
* @bin: a #GstBin
|
||||
*
|
||||
* Synchronizes the state of every child of @bin with the state
|
||||
* of @bin. See also gst_element_sync_state_with_parent().
|
||||
*
|
||||
* Returns: %TRUE if syncing the state was successful for all children,
|
||||
* otherwise %FALSE.
|
||||
*
|
||||
* Since: 1.6
|
||||
*/
|
||||
gboolean
|
||||
gst_bin_sync_children_states (GstBin * bin)
|
||||
{
|
||||
GstIterator *it;
|
||||
GstIteratorResult res = GST_ITERATOR_OK;
|
||||
gboolean success = TRUE;
|
||||
|
||||
it = gst_bin_iterate_sorted (bin);
|
||||
|
||||
do {
|
||||
if (res == GST_ITERATOR_RESYNC) {
|
||||
success = TRUE;
|
||||
gst_iterator_resync (it);
|
||||
}
|
||||
res =
|
||||
gst_iterator_foreach (it, gst_bin_sync_children_states_foreach,
|
||||
&success);
|
||||
} while (res == GST_ITERATOR_RESYNC);
|
||||
gst_iterator_free (it);
|
||||
|
||||
return success;
|
||||
}
|
||||
|
||||
/**
|
||||
* gst_parse_bin_from_description:
|
||||
* @bin_description: command line describing the bin
|
||||
|
|
|
@ -983,6 +983,8 @@ void gst_bin_add_many (GstBin *bin, GstElement
|
|||
void gst_bin_remove_many (GstBin *bin, GstElement *element_1, ...) G_GNUC_NULL_TERMINATED;
|
||||
GstPad * gst_bin_find_unlinked_pad (GstBin *bin, GstPadDirection direction);
|
||||
|
||||
gboolean gst_bin_sync_children_states (GstBin *bin);
|
||||
|
||||
/* parse utility functions */
|
||||
GstElement * gst_parse_bin_from_description (const gchar * bin_description,
|
||||
gboolean ghost_unlinked_pads,
|
||||
|
|
|
@ -109,6 +109,7 @@ EXPORTS
|
|||
gst_bin_recalculate_latency
|
||||
gst_bin_remove
|
||||
gst_bin_remove_many
|
||||
gst_bin_sync_children_states
|
||||
gst_bitmask_get_type
|
||||
gst_buffer_add_meta
|
||||
gst_buffer_append
|
||||
|
|
Loading…
Reference in a new issue