3 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
4 * 2004 Wim Taymans <wim.taymans@gmail.com>
6 * gstbin.c: GstBin container object and support code
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details.
18 * You should have received a copy of the GNU Library General Public
19 * License along with this library; if not, write to the
20 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
21 * Boston, MA 02110-1301, USA.
29 * @short_description: Base class and element that can contain other elements
31 * #GstBin is an element that can contain other #GstElement, allowing them to be
33 * Pads from the child elements can be ghosted to the bin, see #GstGhostPad.
34 * This makes the bin look like any other elements and enables creation of
35 * higher-level abstraction elements.
37 * A new #GstBin is created with gst_bin_new(). Use a #GstPipeline instead if you
38 * want to create a toplevel bin because a normal bin doesn't have a bus or
39 * handle clock distribution of its own.
41 * After the bin has been created you will typically add elements to it with
42 * gst_bin_add(). You can remove elements with gst_bin_remove().
44 * An element can be retrieved from a bin with gst_bin_get_by_name(), using the
45 * elements name. gst_bin_get_by_name_recurse_up() is mainly used for internal
46 * purposes and will query the parent bins when the element is not found in the
49 * An iterator of elements in a bin can be retrieved with
50 * gst_bin_iterate_elements(). Various other iterators exist to retrieve the
53 * gst_object_unref() is used to drop your reference to the bin.
55 * The #GstBin::element-added signal is fired whenever a new element is added to
56 * the bin. Likewise the #GstBin::element-removed signal is fired whenever an
57 * element is removed from the bin.
61 * A #GstBin internally intercepts every #GstMessage posted by its children and
62 * implements the following default behaviour for each of them:
64 * * GST_MESSAGE_EOS: This message is only posted by sinks in the PLAYING
65 * state. If all sinks posted the EOS message, this bin will post and EOS
68 * * GST_MESSAGE_SEGMENT_START: Just collected and never forwarded upwards.
69 * The messages are used to decide when all elements have completed playback
72 * * GST_MESSAGE_SEGMENT_DONE: Is posted by #GstBin when all elements that posted
73 * a SEGMENT_START have posted a SEGMENT_DONE.
75 * * GST_MESSAGE_DURATION_CHANGED: Is posted by an element that detected a change
76 * in the stream duration. The default bin behaviour is to clear any
77 * cached duration values so that the next duration query will perform
78 * a full duration recalculation. The duration change is posted to the
79 * application so that it can refetch the new duration with a duration
80 * query. Note that these messages can be posted before the bin is
81 * prerolled, in which case the duration query might fail.
83 * * GST_MESSAGE_CLOCK_LOST: This message is posted by an element when it
84 * can no longer provide a clock. The default bin behaviour is to
85 * check if the lost clock was the one provided by the bin. If so and
86 * the bin is currently in the PLAYING state, the message is forwarded to
88 * This message is also generated when a clock provider is removed from
89 * the bin. If this message is received by the application, it should
90 * PAUSE the pipeline and set it back to PLAYING to force a new clock
93 * * GST_MESSAGE_CLOCK_PROVIDE: This message is generated when an element
94 * can provide a clock. This mostly happens when a new clock
95 * provider is added to the bin. The default behaviour of the bin is to
96 * mark the currently selected clock as dirty, which will perform a clock
97 * recalculation the next time the bin is asked to provide a clock.
98 * This message is never sent tot the application but is forwarded to
99 * the parent of the bin.
101 * * OTHERS: posted upwards.
103 * A #GstBin implements the following default behaviour for answering to a
106 * * GST_QUERY_DURATION:If the query has been asked before with the same format
107 * and the bin is a toplevel bin (ie. has no parent),
108 * use the cached previous value. If no previous value was cached, the
109 * query is sent to all sink elements in the bin and the MAXIMUM of all
110 * values is returned. If the bin is a toplevel bin the value is cached.
111 * If no sinks are available in the bin, the query fails.
113 * * GST_QUERY_POSITION:The query is sent to all sink elements in the bin and the
114 * MAXIMUM of all values is returned. If no sinks are available in the bin,
117 * * OTHERS:the query is forwarded to all sink elements, the result
118 * of the first sink that answers the query successfully is returned. If no
119 * sink is in the bin, the query fails.
121 * A #GstBin will by default forward any event sent to it to all sink
122 * (#GST_EVENT_TYPE_DOWNSTREAM) or source (#GST_EVENT_TYPE_UPSTREAM) elements
123 * depending on the event type.
124 * If all the elements return %TRUE, the bin will also return %TRUE, else %FALSE
125 * is returned. If no elements of the required type are in the bin, the event
126 * handler will return %TRUE.
130 #include "gst_private.h"
132 #include "gstevent.h"
135 #include "gsterror.h"
137 #include "gstutils.h"
138 #include "gstchildproxy.h"
140 GST_DEBUG_CATEGORY_STATIC (bin_debug);
141 #define GST_CAT_DEFAULT bin_debug
143 /* a bin is toplevel if it has no parent or when it is configured to behave like
145 #define BIN_IS_TOPLEVEL(bin) ((GST_OBJECT_PARENT (bin) == NULL) || bin->priv->asynchandling)
147 #define GST_BIN_GET_PRIVATE(obj) \
148 (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_BIN, GstBinPrivate))
150 struct _GstBinPrivate
152 gboolean asynchandling;
153 /* if we get an ASYNC_DONE message from ourselves, this means that the
154 * subclass will simulate ASYNC behaviour without having ASYNC children. When
155 * such an ASYNC_DONE message is posted while we are doing a state change, we
156 * have to process the message after finishing the state change even when no
157 * child returned GST_STATE_CHANGE_ASYNC. */
158 gboolean pending_async_done;
160 guint32 structure_cookie;
167 /* forward messages from our children */
168 gboolean message_forward;
171 gboolean posted_playing;
172 GstElementFlags suppressed_flags;
181 static void gst_bin_dispose (GObject * object);
183 static void gst_bin_set_property (GObject * object, guint prop_id,
184 const GValue * value, GParamSpec * pspec);
185 static void gst_bin_get_property (GObject * object, guint prop_id,
186 GValue * value, GParamSpec * pspec);
188 static GstStateChangeReturn gst_bin_change_state_func (GstElement * element,
189 GstStateChange transition);
190 static gboolean gst_bin_post_message (GstElement * element, GstMessage * msg);
191 static GstStateChangeReturn gst_bin_get_state_func (GstElement * element,
192 GstState * state, GstState * pending, GstClockTime timeout);
193 static void bin_handle_async_done (GstBin * bin, GstStateChangeReturn ret,
194 gboolean flag_pending, GstClockTime running_time);
195 static void bin_handle_async_start (GstBin * bin);
196 static void bin_push_state_continue (GstBin * bin, BinContinueData * data);
197 static void bin_do_eos (GstBin * bin);
199 static gboolean gst_bin_add_func (GstBin * bin, GstElement * element);
200 static gboolean gst_bin_remove_func (GstBin * bin, GstElement * element);
201 static void gst_bin_deep_element_added_func (GstBin * bin, GstBin * sub_bin,
202 GstElement * element);
203 static void gst_bin_deep_element_removed_func (GstBin * bin, GstBin * sub_bin,
204 GstElement * element);
205 static void gst_bin_update_context (GstBin * bin, GstContext * context);
206 static void gst_bin_update_context_unlocked (GstBin * bin,
207 GstContext * context);
210 static void gst_bin_set_index_func (GstElement * element, GstIndex * index);
211 static GstIndex *gst_bin_get_index_func (GstElement * element);
214 static GstClock *gst_bin_provide_clock_func (GstElement * element);
215 static gboolean gst_bin_set_clock_func (GstElement * element, GstClock * clock);
217 static void gst_bin_handle_message_func (GstBin * bin, GstMessage * message);
218 static gboolean gst_bin_send_event (GstElement * element, GstEvent * event);
219 static GstBusSyncReply bin_bus_handler (GstBus * bus,
220 GstMessage * message, GstBin * bin);
221 static gboolean gst_bin_query (GstElement * element, GstQuery * query);
222 static void gst_bin_set_context (GstElement * element, GstContext * context);
224 static gboolean gst_bin_do_latency_func (GstBin * bin);
226 static void bin_remove_messages (GstBin * bin, GstObject * src,
227 GstMessageType types);
228 static void gst_bin_continue_func (GstBin * bin, BinContinueData * data);
229 static gint bin_element_is_sink (GstElement * child, GstBin * bin);
230 static gint bin_element_is_src (GstElement * child, GstBin * bin);
232 static GstIterator *gst_bin_sort_iterator_new (GstBin * bin);
234 /* Bin signals and properties */
241 DEEP_ELEMENT_REMOVED,
245 #define DEFAULT_ASYNC_HANDLING FALSE
246 #define DEFAULT_MESSAGE_FORWARD FALSE
252 PROP_MESSAGE_FORWARD,
256 static void gst_bin_child_proxy_init (gpointer g_iface, gpointer iface_data);
258 static guint gst_bin_signals[LAST_SIGNAL] = { 0 };
262 static const GInterfaceInfo iface_info = { \
263 gst_bin_child_proxy_init, \
267 g_type_add_interface_static (g_define_type_id, GST_TYPE_CHILD_PROXY, &iface_info); \
269 GST_DEBUG_CATEGORY_INIT (bin_debug, "bin", GST_DEBUG_BOLD, \
270 "debugging info for the 'bin' container element"); \
274 #define gst_bin_parent_class parent_class
275 G_DEFINE_TYPE_WITH_CODE (GstBin, gst_bin, GST_TYPE_ELEMENT, _do_init);
278 gst_bin_child_proxy_get_child_by_index (GstChildProxy * child_proxy,
284 bin = GST_BIN_CAST (child_proxy);
286 GST_OBJECT_LOCK (bin);
287 if ((res = g_list_nth_data (bin->children, index)))
288 gst_object_ref (res);
289 GST_OBJECT_UNLOCK (bin);
291 return (GObject *) res;
295 gst_bin_child_proxy_get_children_count (GstChildProxy * child_proxy)
300 bin = GST_BIN_CAST (child_proxy);
302 GST_OBJECT_LOCK (bin);
303 num = bin->numchildren;
304 GST_OBJECT_UNLOCK (bin);
310 gst_bin_child_proxy_init (gpointer g_iface, gpointer iface_data)
312 GstChildProxyInterface *iface = g_iface;
314 iface->get_children_count = gst_bin_child_proxy_get_children_count;
315 iface->get_child_by_index = gst_bin_child_proxy_get_child_by_index;
319 _gst_boolean_accumulator (GSignalInvocationHint * ihint,
320 GValue * return_accu, const GValue * handler_return, gpointer dummy)
324 myboolean = g_value_get_boolean (handler_return);
325 if (!(ihint->run_type & G_SIGNAL_RUN_CLEANUP))
326 g_value_set_boolean (return_accu, myboolean);
328 GST_DEBUG ("invocation %d, %d", ihint->run_type, myboolean);
335 gst_bin_class_init (GstBinClass * klass)
337 GObjectClass *gobject_class;
338 GstElementClass *gstelement_class;
340 gobject_class = (GObjectClass *) klass;
341 gstelement_class = (GstElementClass *) klass;
343 g_type_class_add_private (klass, sizeof (GstBinPrivate));
345 gobject_class->set_property = gst_bin_set_property;
346 gobject_class->get_property = gst_bin_get_property;
349 * GstBin:async-handling:
351 * If set to %TRUE, the bin will handle asynchronous state changes.
352 * This should be used only if the bin subclass is modifying the state
353 * of its children on its own.
355 g_object_class_install_property (gobject_class, PROP_ASYNC_HANDLING,
356 g_param_spec_boolean ("async-handling", "Async Handling",
357 "The bin will handle Asynchronous state changes",
358 DEFAULT_ASYNC_HANDLING, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
361 * GstBin::element-added:
363 * @element: the #GstElement that was added to the bin
365 * Will be emitted after the element was added to the bin.
367 gst_bin_signals[ELEMENT_ADDED] =
368 g_signal_new ("element-added", G_TYPE_FROM_CLASS (klass),
369 G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GstBinClass, element_added), NULL,
370 NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_ELEMENT);
372 * GstBin::element-removed:
374 * @element: the #GstElement that was removed from the bin
376 * Will be emitted after the element was removed from the bin.
378 gst_bin_signals[ELEMENT_REMOVED] =
379 g_signal_new ("element-removed", G_TYPE_FROM_CLASS (klass),
380 G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GstBinClass, element_removed), NULL,
381 NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_ELEMENT);
383 * GstBin::deep-element-added:
385 * @sub_bin: the #GstBin the element was added to
386 * @element: the #GstElement that was added to @sub_bin
388 * Will be emitted after the element was added to sub_bin.
392 gst_bin_signals[DEEP_ELEMENT_ADDED] =
393 g_signal_new ("deep-element-added", G_TYPE_FROM_CLASS (klass),
394 G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GstBinClass, deep_element_added),
395 NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 2, GST_TYPE_BIN,
398 * GstBin::deep-element-removed:
400 * @sub_bin: the #GstBin the element was removed from
401 * @element: the #GstElement that was removed from @sub_bin
403 * Will be emitted after the element was removed from sub_bin.
407 gst_bin_signals[DEEP_ELEMENT_REMOVED] =
408 g_signal_new ("deep-element-removed", G_TYPE_FROM_CLASS (klass),
409 G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GstBinClass, deep_element_removed),
410 NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 2, GST_TYPE_BIN,
413 * GstBin::do-latency:
416 * Will be emitted when the bin needs to perform latency calculations. This
417 * signal is only emitted for toplevel bins or when async-handling is
420 * Only one signal handler is invoked. If no signals are connected, the
421 * default handler is invoked, which will query and distribute the lowest
422 * possible latency to all sinks.
424 * Connect to this signal if the default latency calculations are not
425 * sufficient, like when you need different latencies for different sinks in
428 gst_bin_signals[DO_LATENCY] =
429 g_signal_new ("do-latency", G_TYPE_FROM_CLASS (klass),
430 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstBinClass, do_latency),
431 _gst_boolean_accumulator, NULL, g_cclosure_marshal_generic,
432 G_TYPE_BOOLEAN, 0, G_TYPE_NONE);
435 * GstBin:message-forward:
437 * Forward all children messages, even those that would normally be filtered by
438 * the bin. This can be interesting when one wants to be notified of the EOS
439 * state of individual elements, for example.
441 * The messages are converted to an ELEMENT message with the bin as the
442 * source. The structure of the message is named 'GstBinForwarded' and contains
443 * a field named 'message' of type GST_TYPE_MESSAGE that contains the original
446 g_object_class_install_property (gobject_class, PROP_MESSAGE_FORWARD,
447 g_param_spec_boolean ("message-forward", "Message Forward",
448 "Forwards all children messages",
449 DEFAULT_MESSAGE_FORWARD, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
451 gobject_class->dispose = gst_bin_dispose;
453 gst_element_class_set_static_metadata (gstelement_class, "Generic bin",
455 "Simple container object",
456 "Erik Walthinsen <omega@cse.ogi.edu>,"
457 "Wim Taymans <wim.taymans@gmail.com>");
459 gstelement_class->change_state =
460 GST_DEBUG_FUNCPTR (gst_bin_change_state_func);
461 gstelement_class->post_message = GST_DEBUG_FUNCPTR (gst_bin_post_message);
462 gstelement_class->get_state = GST_DEBUG_FUNCPTR (gst_bin_get_state_func);
464 gstelement_class->get_index = GST_DEBUG_FUNCPTR (gst_bin_get_index_func);
465 gstelement_class->set_index = GST_DEBUG_FUNCPTR (gst_bin_set_index_func);
467 gstelement_class->provide_clock =
468 GST_DEBUG_FUNCPTR (gst_bin_provide_clock_func);
469 gstelement_class->set_clock = GST_DEBUG_FUNCPTR (gst_bin_set_clock_func);
471 gstelement_class->send_event = GST_DEBUG_FUNCPTR (gst_bin_send_event);
472 gstelement_class->query = GST_DEBUG_FUNCPTR (gst_bin_query);
473 gstelement_class->set_context = GST_DEBUG_FUNCPTR (gst_bin_set_context);
475 klass->add_element = GST_DEBUG_FUNCPTR (gst_bin_add_func);
476 klass->remove_element = GST_DEBUG_FUNCPTR (gst_bin_remove_func);
477 klass->handle_message = GST_DEBUG_FUNCPTR (gst_bin_handle_message_func);
479 klass->deep_element_added = gst_bin_deep_element_added_func;
480 klass->deep_element_removed = gst_bin_deep_element_removed_func;
482 klass->do_latency = GST_DEBUG_FUNCPTR (gst_bin_do_latency_func);
486 gst_bin_init (GstBin * bin)
490 bin->numchildren = 0;
491 bin->children = NULL;
492 bin->children_cookie = 0;
493 bin->messages = NULL;
494 bin->provided_clock = NULL;
495 bin->clock_dirty = FALSE;
497 /* Set up a bus for listening to child elements */
498 bus = g_object_new (GST_TYPE_BUS, "enable-async", FALSE, NULL);
499 gst_object_ref_sink (bus);
500 bin->child_bus = bus;
501 GST_DEBUG_OBJECT (bin, "using bus %" GST_PTR_FORMAT " to listen to children",
503 gst_bus_set_sync_handler (bus, (GstBusSyncHandler) bin_bus_handler, bin,
506 bin->priv = GST_BIN_GET_PRIVATE (bin);
507 bin->priv->asynchandling = DEFAULT_ASYNC_HANDLING;
508 bin->priv->structure_cookie = 0;
509 bin->priv->message_forward = DEFAULT_MESSAGE_FORWARD;
513 gst_bin_dispose (GObject * object)
515 GstBin *bin = GST_BIN_CAST (object);
516 GstBus **child_bus_p = &bin->child_bus;
517 GstClock **provided_clock_p = &bin->provided_clock;
518 GstElement **clock_provider_p = &bin->clock_provider;
520 GST_CAT_DEBUG_OBJECT (GST_CAT_REFCOUNTING, object, "%p dispose", object);
522 GST_OBJECT_LOCK (object);
523 gst_object_replace ((GstObject **) child_bus_p, NULL);
524 gst_object_replace ((GstObject **) provided_clock_p, NULL);
525 gst_object_replace ((GstObject **) clock_provider_p, NULL);
526 bin_remove_messages (bin, NULL, GST_MESSAGE_ANY);
527 GST_OBJECT_UNLOCK (object);
529 while (bin->children) {
530 gst_bin_remove (bin, GST_ELEMENT_CAST (bin->children->data));
532 if (G_UNLIKELY (bin->children != NULL)) {
533 g_critical ("could not remove elements from bin '%s'",
534 GST_STR_NULL (GST_OBJECT_NAME (object)));
537 G_OBJECT_CLASS (parent_class)->dispose (object);
542 * @name: (allow-none): the name of the new bin
544 * Creates a new bin with the given name.
546 * Returns: (transfer floating): a new #GstBin
549 gst_bin_new (const gchar * name)
551 return gst_element_factory_make ("bin", name);
555 gst_bin_set_property (GObject * object, guint prop_id,
556 const GValue * value, GParamSpec * pspec)
560 gstbin = GST_BIN_CAST (object);
563 case PROP_ASYNC_HANDLING:
564 GST_OBJECT_LOCK (gstbin);
565 gstbin->priv->asynchandling = g_value_get_boolean (value);
566 GST_OBJECT_UNLOCK (gstbin);
568 case PROP_MESSAGE_FORWARD:
569 GST_OBJECT_LOCK (gstbin);
570 gstbin->priv->message_forward = g_value_get_boolean (value);
571 GST_OBJECT_UNLOCK (gstbin);
574 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
580 gst_bin_get_property (GObject * object, guint prop_id,
581 GValue * value, GParamSpec * pspec)
585 gstbin = GST_BIN_CAST (object);
588 case PROP_ASYNC_HANDLING:
589 GST_OBJECT_LOCK (gstbin);
590 g_value_set_boolean (value, gstbin->priv->asynchandling);
591 GST_OBJECT_UNLOCK (gstbin);
593 case PROP_MESSAGE_FORWARD:
594 GST_OBJECT_LOCK (gstbin);
595 g_value_set_boolean (value, gstbin->priv->message_forward);
596 GST_OBJECT_UNLOCK (gstbin);
599 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
605 /* return the cached index */
607 gst_bin_get_index_func (GstElement * element)
612 bin = GST_BIN_CAST (element);
614 GST_OBJECT_LOCK (bin);
615 if ((result = bin->priv->index))
616 gst_object_ref (result);
617 GST_OBJECT_UNLOCK (bin);
622 /* set the index on all elements in this bin
627 gst_bin_set_index_func (GstElement * element, GstIndex * index)
633 GValue data = { 0, };
635 bin = GST_BIN_CAST (element);
637 GST_OBJECT_LOCK (bin);
638 old = bin->priv->index;
639 if (G_UNLIKELY (old == index))
642 gst_object_ref (index);
643 bin->priv->index = index;
644 GST_OBJECT_UNLOCK (bin);
647 gst_object_unref (old);
649 it = gst_bin_iterate_elements (bin);
651 /* set the index on all elements in the bin */
654 switch (gst_iterator_next (it, &data)) {
655 case GST_ITERATOR_OK:
657 GstElement *child = g_value_get_object (&data);
659 GST_DEBUG_OBJECT (bin, "setting index on '%s'",
660 GST_ELEMENT_NAME (child));
661 gst_element_set_index (child, index);
663 g_value_reset (&data);
666 case GST_ITERATOR_RESYNC:
667 GST_DEBUG_OBJECT (bin, "iterator doing resync");
668 gst_iterator_resync (it);
671 case GST_ITERATOR_DONE:
672 GST_DEBUG_OBJECT (bin, "iterator done");
677 g_value_unset (&data);
678 gst_iterator_free (it);
683 GST_DEBUG_OBJECT (bin, "index was already set");
684 GST_OBJECT_UNLOCK (bin);
690 /* set the clock on all elements in this bin
695 gst_bin_set_clock_func (GstElement * element, GstClock * clock)
701 GValue data = { 0, };
703 bin = GST_BIN_CAST (element);
705 it = gst_bin_iterate_elements (bin);
709 switch (gst_iterator_next (it, &data)) {
710 case GST_ITERATOR_OK:
712 GstElement *child = g_value_get_object (&data);
714 res &= gst_element_set_clock (child, clock);
716 g_value_reset (&data);
719 case GST_ITERATOR_RESYNC:
720 GST_DEBUG_OBJECT (bin, "iterator doing resync");
721 gst_iterator_resync (it);
725 case GST_ITERATOR_DONE:
726 GST_DEBUG_OBJECT (bin, "iterator done");
731 g_value_unset (&data);
732 gst_iterator_free (it);
735 res = GST_ELEMENT_CLASS (parent_class)->set_clock (element, clock);
740 /* get the clock for this bin by asking all of the children in this bin
742 * The ref of the returned clock in increased so unref after usage.
744 * We loop the elements in state order and pick the last clock we can
745 * get. This makes sure we get a clock from the source.
750 gst_bin_provide_clock_func (GstElement * element)
752 GstClock *result = NULL;
753 GstElement *provider = NULL;
758 GstClock **provided_clock_p;
759 GstElement **clock_provider_p;
761 bin = GST_BIN_CAST (element);
763 GST_OBJECT_LOCK (bin);
764 if (!bin->clock_dirty)
767 GST_DEBUG_OBJECT (bin, "finding new clock");
769 it = gst_bin_sort_iterator_new (bin);
770 GST_OBJECT_UNLOCK (bin);
774 switch (gst_iterator_next (it, &val)) {
775 case GST_ITERATOR_OK:
777 GstElement *child = g_value_get_object (&val);
780 clock = gst_element_provide_clock (child);
782 GST_DEBUG_OBJECT (bin, "found candidate clock %p by element %s",
783 clock, GST_ELEMENT_NAME (child));
785 gst_object_unref (result);
786 gst_object_unref (provider);
789 provider = gst_object_ref (child);
792 g_value_reset (&val);
795 case GST_ITERATOR_RESYNC:
796 gst_iterator_resync (it);
799 case GST_ITERATOR_DONE:
804 g_value_unset (&val);
805 gst_iterator_free (it);
807 GST_OBJECT_LOCK (bin);
808 if (!bin->clock_dirty) {
810 gst_object_unref (provider);
812 gst_object_unref (result);
818 provided_clock_p = &bin->provided_clock;
819 clock_provider_p = &bin->clock_provider;
820 gst_object_replace ((GstObject **) provided_clock_p, (GstObject *) result);
821 gst_object_replace ((GstObject **) clock_provider_p, (GstObject *) provider);
822 bin->clock_dirty = FALSE;
823 GST_DEBUG_OBJECT (bin,
824 "provided new clock %" GST_PTR_FORMAT " by provider %" GST_PTR_FORMAT,
826 /* Provider is not being returned to caller, just the result */
828 gst_object_unref (provider);
829 GST_OBJECT_UNLOCK (bin);
835 if ((result = bin->provided_clock))
836 gst_object_ref (result);
837 GST_DEBUG_OBJECT (bin, "returning old clock %p", result);
838 GST_OBJECT_UNLOCK (bin);
845 * functions for manipulating cached messages
850 GstMessageType types;
853 /* check if a message is of given src and type */
855 message_check (GstMessage * message, MessageFind * target)
860 eq &= GST_MESSAGE_SRC (message) == target->src;
862 eq &= (GST_MESSAGE_TYPE (message) & target->types) != 0;
863 GST_LOG ("looking at message %p: %d", message, eq);
869 find_message (GstBin * bin, GstObject * src, GstMessageType types)
877 result = g_list_find_custom (bin->messages, &find,
878 (GCompareFunc) message_check);
881 GST_DEBUG_OBJECT (bin, "we found a message %p from %s matching types %08x",
882 result->data, GST_OBJECT_NAME (GST_MESSAGE_CAST (result->data)->src),
885 GST_DEBUG_OBJECT (bin, "no message found matching types %08x", types);
886 #ifndef GST_DISABLE_GST_DEBUG
890 for (i = 0; i < 32; i++)
891 if (types & (1U << i))
892 GST_DEBUG_OBJECT (bin, " %s", gst_message_type_get_name (1U << i));
900 /* with LOCK, returns TRUE if message had a valid SRC, takes ownership of
903 * A message that is cached and has the same SRC and type is replaced
904 * by the given message.
907 bin_replace_message (GstBin * bin, GstMessage * message, GstMessageType types)
913 if ((src = GST_MESSAGE_SRC (message))) {
914 /* first find the previous message posted by this element */
915 if ((previous = find_message (bin, src, types))) {
916 GstMessage *previous_msg;
918 /* if we found a previous message, replace it */
919 previous_msg = previous->data;
920 previous->data = message;
922 GST_DEBUG_OBJECT (bin, "replace old message %s from %s with %s message",
923 GST_MESSAGE_TYPE_NAME (previous_msg), GST_ELEMENT_NAME (src),
924 GST_MESSAGE_TYPE_NAME (message));
926 gst_message_unref (previous_msg);
928 /* keep new message */
929 bin->messages = g_list_prepend (bin->messages, message);
931 GST_DEBUG_OBJECT (bin, "got new message %p, %s from %s",
932 message, GST_MESSAGE_TYPE_NAME (message), GST_ELEMENT_NAME (src));
935 GST_DEBUG_OBJECT (bin, "got message %s from (NULL), not processing",
936 GST_MESSAGE_TYPE_NAME (message));
938 gst_message_unref (message);
943 /* with LOCK. Remove all messages of given types */
945 bin_remove_messages (GstBin * bin, GstObject * src, GstMessageType types)
953 for (walk = bin->messages; walk; walk = next) {
954 GstMessage *message = (GstMessage *) walk->data;
956 next = g_list_next (walk);
958 if (message_check (message, &find) == 0) {
959 GST_DEBUG_OBJECT (GST_MESSAGE_SRC (message),
960 "deleting message %p of type %s (types 0x%08x)", message,
961 GST_MESSAGE_TYPE_NAME (message), types);
962 bin->messages = g_list_delete_link (bin->messages, walk);
963 gst_message_unref (message);
965 GST_DEBUG_OBJECT (GST_MESSAGE_SRC (message),
966 "not deleting message %p of type 0x%08x", message,
967 GST_MESSAGE_TYPE (message));
973 /* Check if the bin is EOS. We do this by scanning all sinks and
974 * checking if they posted an EOS message.
976 * call with bin LOCK */
978 is_eos (GstBin * bin, guint32 * seqnum)
985 for (walk = bin->children; walk; walk = g_list_next (walk)) {
988 element = GST_ELEMENT_CAST (walk->data);
989 if (bin_element_is_sink (element, bin) == 0) {
990 /* check if element posted EOS */
992 find_message (bin, GST_OBJECT_CAST (element), GST_MESSAGE_EOS))) {
993 GST_DEBUG ("sink '%s' posted EOS", GST_ELEMENT_NAME (element));
994 *seqnum = gst_message_get_seqnum (GST_MESSAGE_CAST (msgs->data));
997 GST_DEBUG ("sink '%s' did not post EOS yet",
998 GST_ELEMENT_NAME (element));
1004 /* FIXME: Some tests (e.g. elements/capsfilter) use
1005 * pipelines with a dangling sinkpad but no sink element.
1006 * These tests assume that no EOS message is ever
1007 * posted on the bus so let's keep that behaviour.
1008 * In valid pipelines this doesn't make a difference.
1010 return result && n_eos > 0;
1014 /* Check if the bin is STREAM_START. We do this by scanning all sinks and
1015 * checking if they posted an STREAM_START message.
1017 * call with bin LOCK */
1019 is_stream_start (GstBin * bin, guint32 * seqnum, gboolean * have_group_id,
1025 gboolean first = TRUE, same_group_id = TRUE;
1027 *have_group_id = TRUE;
1030 for (walk = bin->children; walk; walk = g_list_next (walk)) {
1031 GstElement *element;
1033 element = GST_ELEMENT_CAST (walk->data);
1034 if (bin_element_is_sink (element, bin) == 0) {
1035 /* check if element posted STREAM_START */
1037 find_message (bin, GST_OBJECT_CAST (element),
1038 GST_MESSAGE_STREAM_START))) {
1039 GST_DEBUG ("sink '%s' posted STREAM_START", GST_ELEMENT_NAME (element));
1040 *seqnum = gst_message_get_seqnum (GST_MESSAGE_CAST (msgs->data));
1041 if (gst_message_parse_group_id (GST_MESSAGE_CAST (msgs->data),
1045 *group_id = tmp_group_id;
1047 if (tmp_group_id != *group_id)
1048 same_group_id = FALSE;
1051 *have_group_id = FALSE;
1054 GST_DEBUG ("sink '%s' did not post STREAM_START yet",
1055 GST_ELEMENT_NAME (element));
1062 /* If all have a group_id we only consider this stream started
1063 * if all group ids were the same and all sinks posted a stream-start
1066 return same_group_id && result;
1067 /* otherwise consider this stream started after all sinks
1068 * have reported stream-start for backward compatibility.
1069 * FIXME 2.0: This should go away! */
1074 unlink_pads (const GValue * item, gpointer user_data)
1079 pad = g_value_get_object (item);
1081 if ((peer = gst_pad_get_peer (pad))) {
1082 if (gst_pad_get_direction (pad) == GST_PAD_SRC)
1083 gst_pad_unlink (pad, peer);
1085 gst_pad_unlink (peer, pad);
1086 gst_object_unref (peer);
1091 bin_deep_iterator_foreach (const GValue * item, gpointer user_data)
1093 GQueue *queue = user_data;
1095 g_queue_push_tail (queue, g_value_dup_object (item));
1099 gst_bin_do_deep_add_remove (GstBin * bin, gint sig_id, const gchar * sig_name,
1100 GstElement * element)
1102 g_signal_emit (bin, sig_id, 0, bin, element);
1104 /* When removing a bin, emit deep-element-* for everything in the bin too */
1105 if (GST_IS_BIN (element)) {
1107 GstIteratorResult ires;
1108 GQueue elements = G_QUEUE_INIT;
1110 GST_LOG_OBJECT (bin, "Recursing into bin %" GST_PTR_FORMAT " for %s",
1112 it = gst_bin_iterate_recurse (GST_BIN_CAST (element));
1114 ires = gst_iterator_foreach (it, bin_deep_iterator_foreach, &elements);
1115 if (ires != GST_ITERATOR_DONE) {
1116 g_queue_foreach (&elements, (GFunc) g_object_unref, NULL);
1117 g_queue_clear (&elements);
1119 if (ires == GST_ITERATOR_RESYNC)
1120 gst_iterator_resync (it);
1121 } while (ires == GST_ITERATOR_RESYNC);
1122 if (ires != GST_ITERATOR_ERROR) {
1125 while ((e = g_queue_pop_head (&elements))) {
1126 GstObject *parent = gst_object_get_parent (GST_OBJECT_CAST (e));
1128 GST_LOG_OBJECT (bin, "calling %s for element %" GST_PTR_FORMAT
1129 " in bin %" GST_PTR_FORMAT, sig_name, e, parent);
1130 g_signal_emit (bin, sig_id, 0, parent, e);
1131 gst_object_unref (parent);
1135 gst_iterator_free (it);
1139 /* vmethod that adds an element to a bin
1144 gst_bin_add_func (GstBin * bin, GstElement * element)
1148 gboolean is_sink, is_source, provides_clock, requires_clock;
1149 GstMessage *clock_message = NULL, *async_message = NULL;
1150 GstStateChangeReturn ret;
1151 GList *l, *elem_contexts, *need_context_messages;
1153 GST_DEBUG_OBJECT (bin, "element :%s", GST_ELEMENT_NAME (element));
1155 /* we obviously can't add ourself to ourself */
1156 if (G_UNLIKELY (element == GST_ELEMENT_CAST (bin)))
1159 /* get the element name to make sure it is unique in this bin. */
1160 GST_OBJECT_LOCK (element);
1161 elem_name = g_strdup (GST_ELEMENT_NAME (element));
1162 is_sink = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_SINK);
1163 is_source = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_SOURCE);
1165 GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
1167 GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
1168 GST_OBJECT_UNLOCK (element);
1170 GST_OBJECT_LOCK (bin);
1172 /* then check to see if the element's name is already taken in the bin,
1173 * we can safely take the lock here. This check is probably bogus because
1174 * you can safely change the element name after this check and before setting
1175 * the object parent. The window is very small though... */
1176 if (G_UNLIKELY (!gst_object_check_uniqueness (bin->children, elem_name)))
1177 goto duplicate_name;
1179 /* set the element's parent and add the element to the bin's list of children */
1180 if (G_UNLIKELY (!gst_object_set_parent (GST_OBJECT_CAST (element),
1181 GST_OBJECT_CAST (bin))))
1184 /* if we add a sink we become a sink */
1185 if (is_sink && !(bin->priv->suppressed_flags & GST_ELEMENT_FLAG_SINK)) {
1186 GST_CAT_DEBUG_OBJECT (GST_CAT_PARENTAGE, bin, "element \"%s\" was sink",
1188 GST_OBJECT_FLAG_SET (bin, GST_ELEMENT_FLAG_SINK);
1190 if (is_source && !(bin->priv->suppressed_flags & GST_ELEMENT_FLAG_SOURCE)) {
1191 GST_CAT_DEBUG_OBJECT (GST_CAT_PARENTAGE, bin, "element \"%s\" was source",
1193 GST_OBJECT_FLAG_SET (bin, GST_ELEMENT_FLAG_SOURCE);
1196 && !(bin->priv->suppressed_flags & GST_ELEMENT_FLAG_PROVIDE_CLOCK)) {
1197 GST_DEBUG_OBJECT (bin, "element \"%s\" can provide a clock", elem_name);
1199 gst_message_new_clock_provide (GST_OBJECT_CAST (element), NULL, TRUE);
1200 GST_OBJECT_FLAG_SET (bin, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
1203 && !(bin->priv->suppressed_flags & GST_ELEMENT_FLAG_REQUIRE_CLOCK)) {
1204 GST_DEBUG_OBJECT (bin, "element \"%s\" requires a clock", elem_name);
1205 GST_OBJECT_FLAG_SET (bin, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
1208 bin->children = g_list_prepend (bin->children, element);
1210 bin->children_cookie++;
1211 if (!GST_BIN_IS_NO_RESYNC (bin))
1212 bin->priv->structure_cookie++;
1214 /* distribute the bus */
1215 gst_element_set_bus (element, bin->child_bus);
1217 /* propagate the current base_time, start_time and clock */
1218 gst_element_set_base_time (element, GST_ELEMENT_CAST (bin)->base_time);
1219 gst_element_set_start_time (element, GST_ELEMENT_START_TIME (bin));
1220 /* it's possible that the element did not accept the clock but
1221 * that is not important right now. When the pipeline goes to PLAYING,
1222 * a new clock will be selected */
1223 gst_element_set_clock (element, GST_ELEMENT_CLOCK (bin));
1225 /* get the element's list of contexts before propagating our own */
1226 elem_contexts = gst_element_get_contexts (element);
1227 for (l = GST_ELEMENT_CAST (bin)->contexts; l; l = l->next)
1228 gst_element_set_context (element, l->data);
1230 need_context_messages = NULL;
1231 for (l = elem_contexts; l; l = l->next) {
1232 GstContext *replacement, *context = l->data;
1233 const gchar *context_type;
1235 context_type = gst_context_get_context_type (context);
1237 /* we already set this context above? */
1239 gst_element_get_context_unlocked (GST_ELEMENT (bin), context_type);
1241 gst_context_unref (replacement);
1246 /* ask our parent for the context */
1247 msg = gst_message_new_need_context (GST_OBJECT_CAST (bin), context_type);
1248 s = (GstStructure *) gst_message_get_structure (msg);
1249 gst_structure_set (s, "bin.old.context", GST_TYPE_CONTEXT, context, NULL);
1251 need_context_messages = g_list_prepend (need_context_messages, msg);
1256 /* set the cached index on the children */
1257 if (bin->priv->index)
1258 gst_element_set_index (element, bin->priv->index);
1261 ret = GST_STATE_RETURN (bin);
1262 /* no need to update the state if we are in error */
1263 if (ret == GST_STATE_CHANGE_FAILURE)
1264 goto no_state_recalc;
1266 /* update the bin state, the new element could have been an ASYNC or
1267 * NO_PREROLL element */
1268 ret = GST_STATE_RETURN (element);
1269 GST_DEBUG_OBJECT (bin, "added %s element",
1270 gst_element_state_change_return_get_name (ret));
1273 case GST_STATE_CHANGE_ASYNC:
1275 /* create message to track this aync element when it posts an async-done
1277 async_message = gst_message_new_async_start (GST_OBJECT_CAST (element));
1280 case GST_STATE_CHANGE_NO_PREROLL:
1281 /* ignore all async elements we might have and commit our state */
1282 bin_handle_async_done (bin, ret, FALSE, GST_CLOCK_TIME_NONE);
1284 case GST_STATE_CHANGE_FAILURE:
1291 GST_OBJECT_UNLOCK (bin);
1293 for (l = need_context_messages; l; l = l->next) {
1294 GstMessage *msg = l->data;
1296 const gchar *context_type;
1297 GstContext *replacement, *context;
1299 gst_message_parse_context_type (msg, &context_type);
1301 GST_LOG_OBJECT (bin, "asking parent for context type: %s "
1302 "from %" GST_PTR_FORMAT, context_type, element);
1304 s = (GstStructure *) gst_message_get_structure (msg);
1305 gst_structure_get (s, "bin.old.context", GST_TYPE_CONTEXT, &context, NULL);
1306 gst_structure_remove_field (s, "bin.old.context");
1307 gst_element_post_message (GST_ELEMENT_CAST (bin), msg);
1309 /* lock to avoid losing a potential write */
1310 GST_OBJECT_LOCK (bin);
1312 gst_element_get_context_unlocked (GST_ELEMENT_CAST (bin), context_type);
1315 /* we got the context set from GstElement::set_context */
1316 gst_context_unref (replacement);
1317 GST_OBJECT_UNLOCK (bin);
1319 /* Propagate the element's context upwards */
1320 GST_LOG_OBJECT (bin, "propagating existing context type: %s %p "
1321 "from %" GST_PTR_FORMAT, context_type, context, element);
1323 gst_bin_update_context_unlocked (bin, context);
1326 gst_message_new_have_context (GST_OBJECT_CAST (bin),
1327 gst_context_ref (context));
1328 GST_OBJECT_UNLOCK (bin);
1329 gst_element_post_message (GST_ELEMENT_CAST (bin), msg);
1331 gst_context_unref (context);
1333 g_list_free_full (elem_contexts, (GDestroyNotify) gst_context_unref);
1334 g_list_free (need_context_messages);
1336 /* post the messages on the bus of the element so that the bin can handle
1339 gst_element_post_message (element, clock_message);
1342 gst_element_post_message (element, async_message);
1344 /* unlink all linked pads */
1345 it = gst_element_iterate_pads (element);
1346 while (gst_iterator_foreach (it, (GstIteratorForeachFunction) unlink_pads,
1347 NULL) == GST_ITERATOR_RESYNC)
1348 gst_iterator_resync (it);
1349 gst_iterator_free (it);
1351 GST_CAT_DEBUG_OBJECT (GST_CAT_PARENTAGE, bin, "added element \"%s\"",
1354 g_signal_emit (bin, gst_bin_signals[ELEMENT_ADDED], 0, element);
1355 gst_child_proxy_child_added ((GstChildProxy *) bin, (GObject *) element,
1358 gst_bin_do_deep_add_remove (bin, gst_bin_signals[DEEP_ELEMENT_ADDED],
1359 "deep-element-added", element);
1365 /* ERROR handling here */
1368 GST_OBJECT_LOCK (bin);
1369 g_warning ("Cannot add bin '%s' to itself", GST_ELEMENT_NAME (bin));
1370 GST_OBJECT_UNLOCK (bin);
1371 gst_object_ref_sink (element);
1372 gst_object_unref (element);
1377 g_warning ("Name '%s' is not unique in bin '%s', not adding",
1378 elem_name, GST_ELEMENT_NAME (bin));
1379 GST_OBJECT_UNLOCK (bin);
1381 gst_object_ref_sink (element);
1382 gst_object_unref (element);
1387 g_warning ("Element '%s' already has parent", elem_name);
1388 GST_OBJECT_UNLOCK (bin);
1395 * gst_bin_set_suppressed_flags:
1397 * @flags: the #GstElementFlags to suppress
1399 * Suppress the given flags on the bin. #GstElementFlags of a
1400 * child element are propagated when it is added to the bin.
1401 * When suppressed flags are set, those specified flags will
1402 * not be propagated to the bin.
1409 gst_bin_set_suppressed_flags (GstBin * bin, GstElementFlags flags)
1411 g_return_if_fail (GST_IS_BIN (bin));
1413 GST_OBJECT_LOCK (bin);
1414 bin->priv->suppressed_flags = bin->priv->suppressed_flags | flags;
1415 GST_OBJECT_UNLOCK (bin);
1417 GST_DEBUG_OBJECT (bin, "Set suppressed flags(0x%x) to bin '%s'", flags,
1418 GST_ELEMENT_NAME (bin));
1422 * gst_bin_get_suppressed_flags:
1425 * Return the suppressed flags of the bin.
1429 * Returns: the bin's suppressed #GstElementFlags.
1434 gst_bin_get_suppressed_flags (GstBin * bin)
1436 GstElementFlags res;
1438 g_return_val_if_fail (GST_IS_BIN (bin), 0);
1440 GST_OBJECT_LOCK (bin);
1441 res = bin->priv->suppressed_flags;
1442 GST_OBJECT_UNLOCK (bin);
1447 /* signal vfunc, will be called when a new element was added */
1449 gst_bin_deep_element_added_func (GstBin * bin, GstBin * sub_bin,
1454 parent_bin = (GstBin *) gst_object_get_parent (GST_OBJECT_CAST (bin));
1455 if (parent_bin == NULL) {
1456 GST_LOG_OBJECT (bin, "no parent, reached top-level");
1460 GST_LOG_OBJECT (parent_bin, "emitting deep-element-added for element "
1461 "%" GST_PTR_FORMAT " which has just been added to %" GST_PTR_FORMAT,
1464 g_signal_emit (parent_bin, gst_bin_signals[DEEP_ELEMENT_ADDED], 0, sub_bin,
1467 gst_object_unref (parent_bin);
1470 /* signal vfunc, will be called when an element was removed */
1472 gst_bin_deep_element_removed_func (GstBin * bin, GstBin * sub_bin,
1477 parent_bin = (GstBin *) gst_object_get_parent (GST_OBJECT_CAST (bin));
1478 if (parent_bin == NULL) {
1479 GST_LOG_OBJECT (bin, "no parent, reached top-level");
1483 GST_LOG_OBJECT (parent_bin, "emitting deep-element-removed for element "
1484 "%" GST_PTR_FORMAT " which has just been removed from %" GST_PTR_FORMAT,
1487 g_signal_emit (parent_bin, gst_bin_signals[DEEP_ELEMENT_REMOVED], 0, sub_bin,
1490 gst_object_unref (parent_bin);
1496 * @element: (transfer floating): the #GstElement to add
1498 * Adds the given element to the bin. Sets the element's parent, and thus
1499 * takes ownership of the element. An element can only be added to one bin.
1501 * If the element's pads are linked to other pads, the pads will be unlinked
1502 * before the element is added to the bin.
1504 * > When you add an element to an already-running pipeline, you will have to
1505 * > take care to set the state of the newly-added element to the desired
1506 * > state (usually PLAYING or PAUSED, same you set the pipeline to originally)
1507 * > with gst_element_set_state(), or use gst_element_sync_state_with_parent().
1508 * > The bin or pipeline will not take care of this for you.
1512 * Returns: %TRUE if the element could be added, %FALSE if
1513 * the bin does not want to accept the element.
1516 gst_bin_add (GstBin * bin, GstElement * element)
1518 GstBinClass *bclass;
1521 g_return_val_if_fail (GST_IS_BIN (bin), FALSE);
1522 g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1523 g_return_val_if_fail (GST_ELEMENT_CAST (bin) != element, FALSE);
1525 bclass = GST_BIN_GET_CLASS (bin);
1527 if (G_UNLIKELY (bclass->add_element == NULL))
1530 GST_CAT_DEBUG (GST_CAT_PARENTAGE, "adding element %s to bin %s",
1531 GST_STR_NULL (GST_ELEMENT_NAME (element)),
1532 GST_STR_NULL (GST_ELEMENT_NAME (bin)));
1534 GST_TRACER_BIN_ADD_PRE (bin, element);
1535 result = bclass->add_element (bin, element);
1536 GST_TRACER_BIN_ADD_POST (bin, element, result);
1540 /* ERROR handling */
1543 g_warning ("adding elements to bin '%s' is not supported",
1544 GST_ELEMENT_NAME (bin));
1545 gst_object_ref_sink (element);
1546 gst_object_unref (element);
1551 /* remove an element from the bin
1556 gst_bin_remove_func (GstBin * bin, GstElement * element)
1560 gboolean is_sink, is_source, provides_clock, requires_clock;
1561 gboolean othersink, othersource, otherprovider, otherrequirer, found;
1562 GstMessage *clock_message = NULL;
1563 GstClock **provided_clock_p;
1564 GstElement **clock_provider_p;
1566 gboolean other_async, this_async, have_no_preroll;
1567 GstStateChangeReturn ret;
1569 GST_DEBUG_OBJECT (bin, "element :%s", GST_ELEMENT_NAME (element));
1571 /* we obviously can't remove ourself from ourself */
1572 if (G_UNLIKELY (element == GST_ELEMENT_CAST (bin)))
1573 goto removing_itself;
1575 GST_OBJECT_LOCK (bin);
1577 GST_OBJECT_LOCK (element);
1578 elem_name = g_strdup (GST_ELEMENT_NAME (element));
1580 if (GST_OBJECT_PARENT (element) != GST_OBJECT_CAST (bin))
1583 /* remove the parent ref */
1584 GST_OBJECT_PARENT (element) = NULL;
1586 /* grab element name so we can print it */
1587 is_sink = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_SINK);
1588 is_source = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_SOURCE);
1590 GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
1592 GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
1593 GST_OBJECT_UNLOCK (element);
1597 othersource = FALSE;
1598 otherprovider = FALSE;
1599 otherrequirer = FALSE;
1600 have_no_preroll = FALSE;
1601 /* iterate the elements, we collect which ones are async and no_preroll. We
1602 * also remove the element when we find it. */
1603 for (walk = bin->children; walk; walk = next) {
1604 GstElement *child = GST_ELEMENT_CAST (walk->data);
1606 next = g_list_next (walk);
1608 if (child == element) {
1610 /* remove the element */
1611 bin->children = g_list_delete_link (bin->children, walk);
1613 gboolean child_sink, child_source, child_provider, child_requirer;
1615 GST_OBJECT_LOCK (child);
1616 child_sink = GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_FLAG_SINK);
1617 child_source = GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_FLAG_SOURCE);
1619 GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
1621 GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
1622 /* when we remove a sink, check if there are other sinks. */
1623 if (is_sink && !othersink && child_sink)
1625 if (is_source && !othersource && child_source)
1627 if (provides_clock && !otherprovider && child_provider)
1628 otherprovider = TRUE;
1629 if (requires_clock && !otherrequirer && child_requirer)
1630 otherrequirer = TRUE;
1631 /* check if we have NO_PREROLL children */
1632 if (GST_STATE_RETURN (child) == GST_STATE_CHANGE_NO_PREROLL)
1633 have_no_preroll = TRUE;
1634 GST_OBJECT_UNLOCK (child);
1638 /* the element must have been in the bin's list of children */
1639 if (G_UNLIKELY (!found))
1642 /* we now removed the element from the list of elements, increment the cookie
1643 * so that others can detect a change in the children list. */
1645 bin->children_cookie++;
1646 if (!GST_BIN_IS_NO_RESYNC (bin))
1647 bin->priv->structure_cookie++;
1649 if (is_sink && !othersink
1650 && !(bin->priv->suppressed_flags & GST_ELEMENT_FLAG_SINK)) {
1651 /* we're not a sink anymore */
1652 GST_DEBUG_OBJECT (bin, "we removed the last sink");
1653 GST_OBJECT_FLAG_UNSET (bin, GST_ELEMENT_FLAG_SINK);
1655 if (is_source && !othersource
1656 && !(bin->priv->suppressed_flags & GST_ELEMENT_FLAG_SOURCE)) {
1657 /* we're not a source anymore */
1658 GST_DEBUG_OBJECT (bin, "we removed the last source");
1659 GST_OBJECT_FLAG_UNSET (bin, GST_ELEMENT_FLAG_SOURCE);
1661 if (provides_clock && !otherprovider
1662 && !(bin->priv->suppressed_flags & GST_ELEMENT_FLAG_PROVIDE_CLOCK)) {
1663 /* we're not a clock provider anymore */
1664 GST_DEBUG_OBJECT (bin, "we removed the last clock provider");
1665 GST_OBJECT_FLAG_UNSET (bin, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
1667 if (requires_clock && !otherrequirer
1668 && !(bin->priv->suppressed_flags & GST_ELEMENT_FLAG_REQUIRE_CLOCK)) {
1669 /* we're not a clock requirer anymore */
1670 GST_DEBUG_OBJECT (bin, "we removed the last clock requirer");
1671 GST_OBJECT_FLAG_UNSET (bin, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
1674 /* if the clock provider for this element is removed, we lost
1675 * the clock as well, we need to inform the parent of this
1676 * so that it can select a new clock */
1677 if (bin->clock_provider == element) {
1678 GST_DEBUG_OBJECT (bin, "element \"%s\" provided the clock", elem_name);
1679 bin->clock_dirty = TRUE;
1681 gst_message_new_clock_lost (GST_OBJECT_CAST (bin), bin->provided_clock);
1682 provided_clock_p = &bin->provided_clock;
1683 clock_provider_p = &bin->clock_provider;
1684 gst_object_replace ((GstObject **) provided_clock_p, NULL);
1685 gst_object_replace ((GstObject **) clock_provider_p, NULL);
1688 /* remove messages for the element, if there was a pending ASYNC_START
1689 * message we must see if removing the element caused the bin to lose its
1692 other_async = FALSE;
1693 for (walk = bin->messages; walk; walk = next) {
1694 GstMessage *message = (GstMessage *) walk->data;
1695 GstElement *src = GST_ELEMENT_CAST (GST_MESSAGE_SRC (message));
1698 next = g_list_next (walk);
1701 switch (GST_MESSAGE_TYPE (message)) {
1702 case GST_MESSAGE_ASYNC_START:
1708 GST_DEBUG_OBJECT (src, "looking at message %p", message);
1710 case GST_MESSAGE_STRUCTURE_CHANGE:
1714 GST_DEBUG_OBJECT (src, "looking at structure change message %p",
1716 /* it's unlikely that this message is still in the list of messages
1717 * because this would mean that a link/unlink is busy in another thread
1718 * while we remove the element. We still have to remove the message
1719 * because we might not receive the done message anymore when the element
1720 * is removed from the bin. */
1721 gst_message_parse_structure_change (message, NULL, &owner, NULL);
1722 if (owner == element)
1733 /* delete all message types */
1734 GST_DEBUG_OBJECT (src, "deleting message %p of element \"%s\"",
1735 message, elem_name);
1736 bin->messages = g_list_delete_link (bin->messages, walk);
1737 gst_message_unref (message);
1741 /* get last return */
1742 ret = GST_STATE_RETURN (bin);
1744 /* no need to update the state if we are in error */
1745 if (ret == GST_STATE_CHANGE_FAILURE)
1746 goto no_state_recalc;
1748 if (!other_async && this_async) {
1749 /* all other elements were not async and we removed the async one,
1750 * handle the async-done case because we are not async anymore now. */
1751 GST_DEBUG_OBJECT (bin,
1752 "we removed the last async element, have no_preroll %d",
1755 /* the current state return of the bin depends on if there are no_preroll
1756 * elements in the pipeline or not */
1757 if (have_no_preroll)
1758 ret = GST_STATE_CHANGE_NO_PREROLL;
1760 ret = GST_STATE_CHANGE_SUCCESS;
1762 bin_handle_async_done (bin, ret, FALSE, GST_CLOCK_TIME_NONE);
1764 GST_DEBUG_OBJECT (bin,
1765 "recalc state preroll: %d, other async: %d, this async %d",
1766 have_no_preroll, other_async, this_async);
1768 if (have_no_preroll) {
1769 ret = GST_STATE_CHANGE_NO_PREROLL;
1770 } else if (other_async) {
1771 /* there are other async elements and we were not doing an async state
1772 * change, change our pending state and go async */
1773 if (GST_STATE_PENDING (bin) == GST_STATE_VOID_PENDING) {
1774 GST_STATE_NEXT (bin) = GST_STATE (bin);
1775 GST_STATE_PENDING (bin) = GST_STATE (bin);
1777 ret = GST_STATE_CHANGE_ASYNC;
1779 GST_STATE_RETURN (bin) = ret;
1783 gst_element_set_bus (element, NULL);
1784 /* Clear the clock we provided to the element */
1785 gst_element_set_clock (element, NULL);
1786 GST_OBJECT_UNLOCK (bin);
1789 gst_element_post_message (GST_ELEMENT_CAST (bin), clock_message);
1791 /* unlink all linked pads */
1792 it = gst_element_iterate_pads (element);
1793 while (gst_iterator_foreach (it, (GstIteratorForeachFunction) unlink_pads,
1794 NULL) == GST_ITERATOR_RESYNC)
1795 gst_iterator_resync (it);
1796 gst_iterator_free (it);
1798 GST_CAT_INFO_OBJECT (GST_CAT_PARENTAGE, bin, "removed child \"%s\"",
1801 g_signal_emit (bin, gst_bin_signals[ELEMENT_REMOVED], 0, element);
1802 gst_child_proxy_child_removed ((GstChildProxy *) bin, (GObject *) element,
1805 gst_bin_do_deep_add_remove (bin, gst_bin_signals[DEEP_ELEMENT_REMOVED],
1806 "deep-element-removed", element);
1809 /* element is really out of our control now */
1810 gst_object_unref (element);
1814 /* ERROR handling */
1817 GST_OBJECT_LOCK (bin);
1818 g_warning ("Cannot remove bin '%s' from itself", GST_ELEMENT_NAME (bin));
1819 GST_OBJECT_UNLOCK (bin);
1824 g_warning ("Element '%s' is not in bin '%s'", elem_name,
1825 GST_ELEMENT_NAME (bin));
1826 GST_OBJECT_UNLOCK (element);
1827 GST_OBJECT_UNLOCK (bin);
1836 * @element: (transfer none): the #GstElement to remove
1838 * Removes the element from the bin, unparenting it as well.
1839 * Unparenting the element means that the element will be dereferenced,
1840 * so if the bin holds the only reference to the element, the element
1841 * will be freed in the process of removing it from the bin. If you
1842 * want the element to still exist after removing, you need to call
1843 * gst_object_ref() before removing it from the bin.
1845 * If the element's pads are linked to other pads, the pads will be unlinked
1846 * before the element is removed from the bin.
1850 * Returns: %TRUE if the element could be removed, %FALSE if
1851 * the bin does not want to remove the element.
1854 gst_bin_remove (GstBin * bin, GstElement * element)
1856 GstBinClass *bclass;
1859 g_return_val_if_fail (GST_IS_BIN (bin), FALSE);
1860 g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1861 g_return_val_if_fail (GST_ELEMENT_CAST (bin) != element, FALSE);
1863 bclass = GST_BIN_GET_CLASS (bin);
1865 if (G_UNLIKELY (bclass->remove_element == NULL))
1868 GST_CAT_DEBUG (GST_CAT_PARENTAGE, "removing element %s from bin %s",
1869 GST_ELEMENT_NAME (element), GST_ELEMENT_NAME (bin));
1871 GST_TRACER_BIN_REMOVE_PRE (bin, element);
1872 result = bclass->remove_element (bin, element);
1873 GST_TRACER_BIN_REMOVE_POST (bin, result);
1877 /* ERROR handling */
1880 g_warning ("removing elements from bin '%s' is not supported",
1881 GST_ELEMENT_NAME (bin));
1887 * gst_bin_iterate_elements:
1890 * Gets an iterator for the elements in this bin.
1892 * MT safe. Caller owns returned value.
1894 * Returns: (transfer full) (nullable): a #GstIterator of #GstElement,
1898 gst_bin_iterate_elements (GstBin * bin)
1900 GstIterator *result;
1902 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
1904 GST_OBJECT_LOCK (bin);
1905 result = gst_iterator_new_list (GST_TYPE_ELEMENT,
1906 GST_OBJECT_GET_LOCK (bin),
1907 &bin->children_cookie, &bin->children, (GObject *) bin, NULL);
1908 GST_OBJECT_UNLOCK (bin);
1913 static GstIteratorItem
1914 iterate_child_recurse (GstIterator * it, const GValue * item)
1916 GstElement *child = g_value_get_object (item);
1918 if (GST_IS_BIN (child)) {
1919 GstIterator *other = gst_bin_iterate_recurse (GST_BIN_CAST (child));
1921 gst_iterator_push (it, other);
1923 return GST_ITERATOR_ITEM_PASS;
1927 * gst_bin_iterate_recurse:
1930 * Gets an iterator for the elements in this bin.
1931 * This iterator recurses into GstBin children.
1933 * MT safe. Caller owns returned value.
1935 * Returns: (transfer full) (nullable): a #GstIterator of #GstElement,
1939 gst_bin_iterate_recurse (GstBin * bin)
1941 GstIterator *result;
1943 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
1945 GST_OBJECT_LOCK (bin);
1946 result = gst_iterator_new_list (GST_TYPE_ELEMENT,
1947 GST_OBJECT_GET_LOCK (bin),
1948 &bin->children_cookie,
1950 (GObject *) bin, (GstIteratorItemFunction) iterate_child_recurse);
1951 GST_OBJECT_UNLOCK (bin);
1956 /* returns 0 when TRUE because this is a GCompareFunc */
1959 bin_element_is_sink (GstElement * child, GstBin * bin)
1963 /* we lock the child here for the remainder of the function to
1964 * get its name and flag safely. */
1965 GST_OBJECT_LOCK (child);
1966 is_sink = GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_FLAG_SINK);
1968 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
1969 "child %s %s sink", GST_OBJECT_NAME (child), is_sink ? "is" : "is not");
1971 GST_OBJECT_UNLOCK (child);
1972 return is_sink ? 0 : 1;
1976 sink_iterator_filter (const GValue * vchild, GValue * vbin)
1978 GstBin *bin = g_value_get_object (vbin);
1979 GstElement *child = g_value_get_object (vchild);
1981 return (bin_element_is_sink (child, bin));
1985 * gst_bin_iterate_sinks:
1988 * Gets an iterator for all elements in the bin that have the
1989 * #GST_ELEMENT_FLAG_SINK flag set.
1991 * MT safe. Caller owns returned value.
1993 * Returns: (transfer full) (nullable): a #GstIterator of #GstElement,
1997 gst_bin_iterate_sinks (GstBin * bin)
1999 GstIterator *children;
2000 GstIterator *result;
2001 GValue vbin = { 0, };
2003 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
2005 g_value_init (&vbin, GST_TYPE_BIN);
2006 g_value_set_object (&vbin, bin);
2008 children = gst_bin_iterate_elements (bin);
2009 result = gst_iterator_filter (children,
2010 (GCompareFunc) sink_iterator_filter, &vbin);
2012 g_value_unset (&vbin);
2017 /* returns 0 when TRUE because this is a GCompareFunc */
2020 bin_element_is_src (GstElement * child, GstBin * bin)
2024 /* we lock the child here for the remainder of the function to
2025 * get its name and other info safely. */
2026 GST_OBJECT_LOCK (child);
2027 is_src = GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_FLAG_SOURCE);
2029 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
2030 "child %s %s src", GST_OBJECT_NAME (child), is_src ? "is" : "is not");
2032 GST_OBJECT_UNLOCK (child);
2033 return is_src ? 0 : 1;
2037 src_iterator_filter (const GValue * vchild, GValue * vbin)
2039 GstBin *bin = g_value_get_object (vbin);
2040 GstElement *child = g_value_get_object (vchild);
2042 return (bin_element_is_src (child, bin));
2046 * gst_bin_iterate_sources:
2049 * Gets an iterator for all elements in the bin that have the
2050 * #GST_ELEMENT_FLAG_SOURCE flag set.
2052 * MT safe. Caller owns returned value.
2054 * Returns: (transfer full) (nullable): a #GstIterator of #GstElement,
2058 gst_bin_iterate_sources (GstBin * bin)
2060 GstIterator *children;
2061 GstIterator *result;
2062 GValue vbin = { 0, };
2064 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
2066 g_value_init (&vbin, GST_TYPE_BIN);
2067 g_value_set_object (&vbin, bin);
2069 children = gst_bin_iterate_elements (bin);
2070 result = gst_iterator_filter (children,
2071 (GCompareFunc) src_iterator_filter, &vbin);
2073 g_value_unset (&vbin);
2081 static GstStateChangeReturn
2082 gst_bin_get_state_func (GstElement * element, GstState * state,
2083 GstState * pending, GstClockTime timeout)
2085 GstStateChangeReturn ret;
2087 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element, "getting state");
2090 GST_ELEMENT_CLASS (parent_class)->get_state (element, state, pending,
2096 /***********************************************
2097 * Topologically sorted iterator
2098 * see http://en.wikipedia.org/wiki/Topological_sorting
2100 * For each element in the graph, an entry is kept in a HashTable
2101 * with its number of srcpad connections (degree).
2102 * We then change state of all elements without dependencies
2103 * (degree 0) and decrement the degree of all elements connected
2104 * on the sinkpads. When an element reaches degree 0, its state is
2106 * When all elements are handled the algorithm stops.
2108 typedef struct _GstBinSortIterator
2111 GQueue queue; /* elements queued for state change */
2112 GstBin *bin; /* bin we iterate */
2113 gint mode; /* adding or removing dependency */
2114 GstElement *best; /* next element with least dependencies */
2115 gint best_deg; /* best degree */
2116 GHashTable *hash; /* hashtable with element dependencies */
2117 gboolean dirty; /* we detected structure change */
2118 } GstBinSortIterator;
2121 copy_to_queue (gpointer data, gpointer user_data)
2123 GstElement *element = data;
2124 GQueue *queue = user_data;
2126 gst_object_ref (element);
2127 g_queue_push_tail (queue, element);
2131 gst_bin_sort_iterator_copy (const GstBinSortIterator * it,
2132 GstBinSortIterator * copy)
2134 GHashTableIter iter;
2135 gpointer key, value;
2137 g_queue_init (©->queue);
2138 g_queue_foreach ((GQueue *) & it->queue, copy_to_queue, ©->queue);
2140 copy->bin = gst_object_ref (it->bin);
2142 copy->best = gst_object_ref (it->best);
2144 copy->hash = g_hash_table_new (NULL, NULL);
2145 g_hash_table_iter_init (&iter, it->hash);
2146 while (g_hash_table_iter_next (&iter, &key, &value))
2147 g_hash_table_insert (copy->hash, key, value);
2150 /* we add and subtract 1 to make sure we don't confuse NULL and 0 */
2151 #define HASH_SET_DEGREE(bit, elem, deg) \
2152 g_hash_table_replace (bit->hash, elem, GINT_TO_POINTER(deg+1))
2153 #define HASH_GET_DEGREE(bit, elem) \
2154 (GPOINTER_TO_INT(g_hash_table_lookup (bit->hash, elem))-1)
2156 /* add element to queue of next elements in the iterator.
2157 * We push at the tail to give higher priority elements a
2160 add_to_queue (GstBinSortIterator * bit, GstElement * element)
2162 GST_DEBUG_OBJECT (bit->bin, "adding '%s' to queue",
2163 GST_ELEMENT_NAME (element));
2164 gst_object_ref (element);
2165 g_queue_push_tail (&bit->queue, element);
2166 HASH_SET_DEGREE (bit, element, -1);
2170 remove_from_queue (GstBinSortIterator * bit, GstElement * element)
2174 if ((find = g_queue_find (&bit->queue, element))) {
2175 GST_DEBUG_OBJECT (bit->bin, "removing '%s' from queue",
2176 GST_ELEMENT_NAME (element));
2178 g_queue_delete_link (&bit->queue, find);
2179 gst_object_unref (element);
2181 GST_DEBUG_OBJECT (bit->bin, "unable to remove '%s' from queue",
2182 GST_ELEMENT_NAME (element));
2186 /* clear the queue, unref all objects as we took a ref when
2187 * we added them to the queue */
2189 clear_queue (GQueue * queue)
2193 while ((p = g_queue_pop_head (queue)))
2194 gst_object_unref (p);
2197 /* set all degrees to 0. Elements marked as a sink are
2198 * added to the queue immediately. Since we only look at the SINK flag of the
2199 * element, it is possible that we add non-sinks to the queue. These will be
2200 * removed from the queue again when we can prove that it provides data for some
2203 reset_degree (GstElement * element, GstBinSortIterator * bit)
2207 /* sinks are added right away */
2208 GST_OBJECT_LOCK (element);
2209 is_sink = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_SINK);
2210 GST_OBJECT_UNLOCK (element);
2213 add_to_queue (bit, element);
2215 /* others are marked with 0 and handled when sinks are done */
2216 HASH_SET_DEGREE (bit, element, 0);
2220 /* adjust the degree of all elements connected to the given
2221 * element. If a degree of an element drops to 0, it is
2222 * added to the queue of elements to schedule next.
2224 * We have to make sure not to cross the bin boundary this element
2228 update_degree (GstElement * element, GstBinSortIterator * bit)
2230 gboolean linked = FALSE;
2232 GST_OBJECT_LOCK (element);
2233 /* don't touch degree if element has no sinkpads */
2234 if (element->numsinkpads != 0) {
2235 /* loop over all sinkpads, decrement degree for all connected
2236 * elements in this bin */
2239 for (pads = element->sinkpads; pads; pads = g_list_next (pads)) {
2242 pad = GST_PAD_CAST (pads->data);
2244 /* we're iterating over the sinkpads, check if it's busy in a link/unlink */
2245 if (G_UNLIKELY (find_message (bit->bin, GST_OBJECT_CAST (pad),
2246 GST_MESSAGE_STRUCTURE_CHANGE))) {
2247 /* mark the iterator as dirty because we won't be updating the degree
2248 * of the peer parent now. This would result in the 'loop detected'
2249 * later on because the peer parent element could become the best next
2250 * element with a degree > 0. We will simply continue our state
2251 * changes and we'll eventually resync when the unlink completed and
2252 * the iterator cookie is updated. */
2257 if ((peer = gst_pad_get_peer (pad))) {
2258 GstElement *peer_element;
2260 if ((peer_element = gst_pad_get_parent_element (peer))) {
2261 GST_OBJECT_LOCK (peer_element);
2262 /* check that we don't go outside of this bin */
2263 if (GST_OBJECT_CAST (peer_element)->parent ==
2264 GST_OBJECT_CAST (bit->bin)) {
2265 gint old_deg, new_deg;
2267 old_deg = HASH_GET_DEGREE (bit, peer_element);
2269 /* check to see if we added an element as sink that was not really a
2270 * sink because it was connected to some other element. */
2271 if (old_deg == -1) {
2272 remove_from_queue (bit, peer_element);
2275 new_deg = old_deg + bit->mode;
2277 GST_DEBUG_OBJECT (bit->bin,
2278 "change element %s, degree %d->%d, linked to %s",
2279 GST_ELEMENT_NAME (peer_element), old_deg, new_deg,
2280 GST_ELEMENT_NAME (element));
2282 /* update degree, it is possible that an element was in 0 and
2283 * reaches -1 here. This would mean that the element had no sinkpads
2284 * but became linked while the state change was happening. We will
2285 * resync on this with the structure change message. */
2287 /* degree hit 0, add to queue */
2288 add_to_queue (bit, peer_element);
2290 HASH_SET_DEGREE (bit, peer_element, new_deg);
2294 GST_OBJECT_UNLOCK (peer_element);
2295 gst_object_unref (peer_element);
2297 gst_object_unref (peer);
2302 GST_DEBUG_OBJECT (bit->bin, "element %s not linked on any sinkpads",
2303 GST_ELEMENT_NAME (element));
2305 GST_OBJECT_UNLOCK (element);
2308 /* find the next best element not handled yet. This is the one
2309 * with the lowest non-negative degree */
2311 find_element (GstElement * element, GstBinSortIterator * bit)
2315 /* element is already handled */
2316 if ((degree = HASH_GET_DEGREE (bit, element)) < 0)
2319 /* first element or element with smaller degree */
2320 if (bit->best == NULL || bit->best_deg > degree) {
2321 bit->best = element;
2322 bit->best_deg = degree;
2323 } else if (bit->best_deg == degree
2324 && GST_OBJECT_FLAG_IS_SET (bit->best, GST_ELEMENT_FLAG_SOURCE)
2325 && !GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_SOURCE)) {
2326 /* If two elements have the same degree, we want to ensure we
2327 * return non-source elements first. */
2328 bit->best = element;
2332 /* get next element in iterator. */
2333 static GstIteratorResult
2334 gst_bin_sort_iterator_next (GstBinSortIterator * bit, GValue * result)
2337 GstBin *bin = bit->bin;
2339 /* empty queue, we have to find a next best element */
2340 if (g_queue_is_empty (&bit->queue)) {
2342 bit->best_deg = G_MAXINT;
2343 g_list_foreach (bin->children, (GFunc) find_element, bit);
2344 if ((best = bit->best)) {
2345 /* when we detected an unlink, don't warn because our degrees might be
2346 * screwed up. We will resync later */
2347 if (bit->best_deg != 0 && !bit->dirty) {
2348 /* we don't fail on this one yet */
2349 GST_WARNING_OBJECT (bin, "loop dected in graph");
2350 g_warning ("loop detected in the graph of bin '%s'!!",
2351 GST_ELEMENT_NAME (bin));
2353 /* best unhandled element, schedule as next element */
2354 GST_DEBUG_OBJECT (bin, "queue empty, next best: %s",
2355 GST_ELEMENT_NAME (best));
2356 HASH_SET_DEGREE (bit, best, -1);
2357 g_value_set_object (result, best);
2359 GST_DEBUG_OBJECT (bin, "queue empty, elements exhausted");
2360 /* no more unhandled elements, we are done */
2361 return GST_ITERATOR_DONE;
2364 /* everything added to the queue got reffed */
2365 best = g_queue_pop_head (&bit->queue);
2366 g_value_set_object (result, best);
2367 gst_object_unref (best);
2370 GST_DEBUG_OBJECT (bin, "queue head gives %s", GST_ELEMENT_NAME (best));
2371 /* update degrees of linked elements */
2372 update_degree (best, bit);
2374 return GST_ITERATOR_OK;
2377 /* clear queues, recalculate the degrees and restart. */
2379 gst_bin_sort_iterator_resync (GstBinSortIterator * bit)
2381 GstBin *bin = bit->bin;
2383 GST_DEBUG_OBJECT (bin, "resync");
2385 clear_queue (&bit->queue);
2387 g_list_foreach (bin->children, (GFunc) reset_degree, bit);
2388 /* calc degrees, incrementing */
2390 g_list_foreach (bin->children, (GFunc) update_degree, bit);
2391 /* for the rest of the function we decrement the degrees */
2395 /* clear queues, unref bin and free iterator. */
2397 gst_bin_sort_iterator_free (GstBinSortIterator * bit)
2399 GstBin *bin = bit->bin;
2401 GST_DEBUG_OBJECT (bin, "free");
2402 clear_queue (&bit->queue);
2403 g_hash_table_destroy (bit->hash);
2404 gst_object_unref (bin);
2407 /* should be called with the bin LOCK held */
2408 static GstIterator *
2409 gst_bin_sort_iterator_new (GstBin * bin)
2411 GstBinSortIterator *result;
2413 /* we don't need an ItemFunction because we ref the items in the _next
2415 result = (GstBinSortIterator *)
2416 gst_iterator_new (sizeof (GstBinSortIterator),
2418 GST_OBJECT_GET_LOCK (bin),
2419 &bin->priv->structure_cookie,
2420 (GstIteratorCopyFunction) gst_bin_sort_iterator_copy,
2421 (GstIteratorNextFunction) gst_bin_sort_iterator_next,
2422 (GstIteratorItemFunction) NULL,
2423 (GstIteratorResyncFunction) gst_bin_sort_iterator_resync,
2424 (GstIteratorFreeFunction) gst_bin_sort_iterator_free);
2425 g_queue_init (&result->queue);
2426 result->hash = g_hash_table_new (NULL, NULL);
2427 gst_object_ref (bin);
2429 gst_bin_sort_iterator_resync (result);
2431 return (GstIterator *) result;
2435 * gst_bin_iterate_sorted:
2438 * Gets an iterator for the elements in this bin in topologically
2439 * sorted order. This means that the elements are returned from
2440 * the most downstream elements (sinks) to the sources.
2442 * This function is used internally to perform the state changes
2443 * of the bin elements and for clock selection.
2445 * MT safe. Caller owns returned value.
2447 * Returns: (transfer full) (nullable): a #GstIterator of #GstElement,
2451 gst_bin_iterate_sorted (GstBin * bin)
2453 GstIterator *result;
2455 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
2457 GST_OBJECT_LOCK (bin);
2458 result = gst_bin_sort_iterator_new (bin);
2459 GST_OBJECT_UNLOCK (bin);
2464 static GstStateChangeReturn
2465 gst_bin_element_set_state (GstBin * bin, GstElement * element,
2466 GstClockTime base_time, GstClockTime start_time, GstState current,
2469 GstStateChangeReturn ret;
2470 GstState child_current, child_pending;
2474 GST_STATE_LOCK (element);
2476 GST_OBJECT_LOCK (element);
2477 /* set base_time and start time on child */
2478 GST_ELEMENT_START_TIME (element) = start_time;
2479 element->base_time = base_time;
2480 /* peel off the locked flag */
2481 locked = GST_ELEMENT_IS_LOCKED_STATE (element);
2482 /* Get the previous set_state result to preserve NO_PREROLL and ASYNC */
2483 ret = GST_STATE_RETURN (element);
2484 child_current = GST_STATE (element);
2485 child_pending = GST_STATE_PENDING (element);
2486 GST_OBJECT_UNLOCK (element);
2488 /* skip locked elements */
2489 if (G_UNLIKELY (locked))
2492 /* if the element was no preroll, just start changing the state regardless
2493 * if it had async elements (in the case of a bin) because they won't preroll
2495 if (G_UNLIKELY (ret == GST_STATE_CHANGE_NO_PREROLL)) {
2496 GST_DEBUG_OBJECT (element, "element is NO_PREROLL, ignore async elements");
2500 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2501 "current %s pending %s, desired next %s",
2502 gst_element_state_get_name (child_current),
2503 gst_element_state_get_name (child_pending),
2504 gst_element_state_get_name (next));
2506 /* always recurse into bins so that we can set the base time */
2507 if (GST_IS_BIN (element))
2510 /* Try not to change the state of elements that are already in the state we're
2512 if (child_current == next && child_pending == GST_STATE_VOID_PENDING) {
2513 /* child is already at the requested state, return previous return. Note that
2514 * if the child has a pending state to next, we will still call the
2515 * set_state function */
2517 } else if (next > current) {
2518 /* upward state change */
2519 if (child_pending == GST_STATE_VOID_PENDING) {
2520 /* .. and the child is not busy doing anything */
2521 if (child_current > next) {
2522 /* .. and is already past the requested state, assume it got there
2524 ret = GST_STATE_CHANGE_SUCCESS;
2527 } else if (child_pending > child_current) {
2528 /* .. and the child is busy going upwards */
2529 if (child_current >= next) {
2530 /* .. and is already past the requested state, assume it got there
2532 ret = GST_STATE_CHANGE_SUCCESS;
2536 /* .. and the child is busy going downwards */
2537 if (child_current > next) {
2538 /* .. and is already past the requested state, assume it got there
2540 ret = GST_STATE_CHANGE_SUCCESS;
2544 } else if (next < current) {
2545 /* downward state change */
2546 if (child_pending == GST_STATE_VOID_PENDING) {
2547 /* .. and the child is not busy doing anything */
2548 if (child_current < next) {
2549 /* .. and is already past the requested state, assume it got there
2551 ret = GST_STATE_CHANGE_SUCCESS;
2554 } else if (child_pending < child_current) {
2555 /* .. and the child is busy going downwards */
2556 if (child_current <= next) {
2557 /* .. and is already past the requested state, assume it got there
2559 ret = GST_STATE_CHANGE_SUCCESS;
2563 /* .. and the child is busy going upwards */
2564 if (child_current < next) {
2565 /* .. and is already past the requested state, assume it got there
2567 ret = GST_STATE_CHANGE_SUCCESS;
2574 GST_OBJECT_LOCK (bin);
2575 /* the element was busy with an upwards async state change, we must wait for
2576 * an ASYNC_DONE message before we attemp to change the state. */
2578 find_message (bin, GST_OBJECT_CAST (element),
2579 GST_MESSAGE_ASYNC_START))) {
2580 #ifndef GST_DISABLE_GST_DEBUG
2581 GstMessage *message = GST_MESSAGE_CAST (found->data);
2583 GST_DEBUG_OBJECT (element, "element message %p, %s async busy",
2584 message, GST_ELEMENT_NAME (GST_MESSAGE_SRC (message)));
2586 /* only wait for upward state changes */
2587 if (next > current) {
2588 /* We found an async element check if we can force its state to change or
2589 * if we have to wait for it to preroll. */
2593 GST_OBJECT_UNLOCK (bin);
2596 GST_DEBUG_OBJECT (bin,
2597 "setting element %s to %s, base_time %" GST_TIME_FORMAT,
2598 GST_ELEMENT_NAME (element), gst_element_state_get_name (next),
2599 GST_TIME_ARGS (base_time));
2602 ret = gst_element_set_state (element, next);
2604 GST_STATE_UNLOCK (element);
2610 GST_DEBUG_OBJECT (element,
2611 "element is locked, return previous return %s",
2612 gst_element_state_change_return_get_name (ret));
2613 GST_STATE_UNLOCK (element);
2618 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2619 "skipping transition from %s to %s",
2620 gst_element_state_get_name (child_current),
2621 gst_element_state_get_name (next));
2622 GST_STATE_UNLOCK (element);
2627 GST_DEBUG_OBJECT (element, "element was busy, delaying state change");
2628 GST_OBJECT_UNLOCK (bin);
2629 GST_STATE_UNLOCK (element);
2630 return GST_STATE_CHANGE_ASYNC;
2634 /* gst_iterator_fold functions for pads_activate
2635 * Stop the iterator if activating one pad failed, but only if that pad
2636 * has not been removed from the element. */
2638 activate_pads (const GValue * vpad, GValue * ret, gboolean * active)
2640 GstPad *pad = g_value_get_object (vpad);
2641 gboolean cont = TRUE;
2643 if (!gst_pad_set_active (pad, *active)) {
2644 if (GST_PAD_PARENT (pad) != NULL) {
2646 g_value_set_boolean (ret, FALSE);
2653 /* returns false on error or early cutout of the fold, true if all
2654 * pads in @iter were (de)activated successfully. */
2656 iterator_activate_fold_with_resync (GstIterator * iter, gpointer user_data)
2658 GstIteratorResult ires;
2661 /* no need to unset this later, it's just a boolean */
2662 g_value_init (&ret, G_TYPE_BOOLEAN);
2663 g_value_set_boolean (&ret, TRUE);
2666 ires = gst_iterator_fold (iter, (GstIteratorFoldFunction) activate_pads,
2669 case GST_ITERATOR_RESYNC:
2670 /* need to reset the result again */
2671 g_value_set_boolean (&ret, TRUE);
2672 gst_iterator_resync (iter);
2674 case GST_ITERATOR_DONE:
2675 /* all pads iterated, return collected value */
2678 /* iterator returned _ERROR or premature end with _OK,
2679 * mark an error and exit */
2680 g_value_set_boolean (&ret, FALSE);
2685 /* return collected value */
2686 return g_value_get_boolean (&ret);
2689 /* is called with STATE_LOCK
2692 gst_bin_src_pads_activate (GstBin * bin, gboolean active)
2697 GST_DEBUG_OBJECT (bin, "%s pads", active ? "activate" : "deactivate");
2699 iter = gst_element_iterate_src_pads ((GstElement *) bin);
2700 fold_ok = iterator_activate_fold_with_resync (iter, &active);
2701 gst_iterator_free (iter);
2702 if (G_UNLIKELY (!fold_ok))
2705 GST_DEBUG_OBJECT (bin, "pad %sactivation successful", active ? "" : "de");
2712 GST_DEBUG_OBJECT (bin, "pad %sactivation failed", active ? "" : "de");
2718 * gst_bin_recalculate_latency:
2721 * Query @bin for the current latency using and reconfigures this latency to all the
2722 * elements with a LATENCY event.
2724 * This method is typically called on the pipeline when a #GST_MESSAGE_LATENCY
2725 * is posted on the bus.
2727 * This function simply emits the 'do-latency' signal so any custom latency
2728 * calculations will be performed.
2730 * Returns: %TRUE if the latency could be queried and reconfigured.
2733 gst_bin_recalculate_latency (GstBin * bin)
2737 g_signal_emit (bin, gst_bin_signals[DO_LATENCY], 0, &res);
2738 GST_DEBUG_OBJECT (bin, "latency returned %d", res);
2744 gst_bin_do_latency_func (GstBin * bin)
2747 GstElement *element;
2748 GstClockTime min_latency, max_latency;
2751 g_return_val_if_fail (GST_IS_BIN (bin), FALSE);
2753 element = GST_ELEMENT_CAST (bin);
2755 GST_DEBUG_OBJECT (element, "querying latency");
2757 query = gst_query_new_latency ();
2758 if ((res = gst_element_query (element, query))) {
2761 gst_query_parse_latency (query, &live, &min_latency, &max_latency);
2763 GST_DEBUG_OBJECT (element,
2764 "got min latency %" GST_TIME_FORMAT ", max latency %"
2765 GST_TIME_FORMAT ", live %d", GST_TIME_ARGS (min_latency),
2766 GST_TIME_ARGS (max_latency), live);
2768 if (max_latency < min_latency) {
2769 /* this is an impossible situation, some parts of the pipeline might not
2770 * work correctly. We post a warning for now. */
2771 GST_ELEMENT_WARNING (element, CORE, CLOCK, (NULL),
2772 ("Impossible to configure latency: max %" GST_TIME_FORMAT " < min %"
2773 GST_TIME_FORMAT ". Add queues or other buffering elements.",
2774 GST_TIME_ARGS (max_latency), GST_TIME_ARGS (min_latency)));
2777 /* configure latency on elements */
2778 res = gst_element_send_event (element, gst_event_new_latency (min_latency));
2780 GST_INFO_OBJECT (element, "configured latency of %" GST_TIME_FORMAT,
2781 GST_TIME_ARGS (min_latency));
2783 GST_WARNING_OBJECT (element,
2784 "did not really configure latency of %" GST_TIME_FORMAT,
2785 GST_TIME_ARGS (min_latency));
2788 /* this is not a real problem, we just don't configure any latency. */
2789 GST_WARNING_OBJECT (element, "failed to query latency");
2791 gst_query_unref (query);
2797 gst_bin_post_message (GstElement * element, GstMessage * msg)
2799 GstElementClass *pklass = (GstElementClass *) parent_class;
2802 ret = pklass->post_message (element, gst_message_ref (msg));
2804 if (GST_MESSAGE_TYPE (msg) == GST_MESSAGE_STATE_CHANGED &&
2805 GST_MESSAGE_SRC (msg) == GST_OBJECT_CAST (element)) {
2806 GstState newstate, pending;
2808 gst_message_parse_state_changed (msg, NULL, &newstate, &pending);
2809 if (newstate == GST_STATE_PLAYING && pending == GST_STATE_VOID_PENDING) {
2810 GST_BIN_CAST (element)->priv->posted_playing = TRUE;
2811 bin_do_eos (GST_BIN_CAST (element));
2813 GST_BIN_CAST (element)->priv->posted_playing = FALSE;
2817 gst_message_unref (msg);
2823 reset_state (const GValue * data, gpointer user_data)
2825 GstElement *e = g_value_get_object (data);
2826 GstState state = GPOINTER_TO_INT (user_data);
2828 if (gst_element_set_state (e, state) == GST_STATE_CHANGE_FAILURE)
2829 GST_WARNING_OBJECT (e, "Failed to switch back down to %s",
2830 gst_element_state_get_name (state));
2833 static GstStateChangeReturn
2834 gst_bin_change_state_func (GstElement * element, GstStateChange transition)
2837 GstStateChangeReturn ret;
2838 GstState current, next;
2839 gboolean have_async;
2840 gboolean have_no_preroll;
2841 GstClockTime base_time, start_time;
2844 GValue data = { 0, };
2846 /* we don't need to take the STATE_LOCK, it is already taken */
2847 current = (GstState) GST_STATE_TRANSITION_CURRENT (transition);
2848 next = (GstState) GST_STATE_TRANSITION_NEXT (transition);
2850 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2851 "changing state of children from %s to %s",
2852 gst_element_state_get_name (current), gst_element_state_get_name (next));
2854 bin = GST_BIN_CAST (element);
2857 case GST_STATE_PLAYING:
2859 gboolean toplevel, asynchandling;
2861 GST_OBJECT_LOCK (bin);
2862 toplevel = BIN_IS_TOPLEVEL (bin);
2863 asynchandling = bin->priv->asynchandling;
2864 GST_OBJECT_UNLOCK (bin);
2867 gst_bin_recalculate_latency (bin);
2869 gst_element_post_message (element,
2870 gst_message_new_latency (GST_OBJECT_CAST (element)));
2873 case GST_STATE_PAUSED:
2874 /* Clear EOS list on next PAUSED */
2875 GST_OBJECT_LOCK (bin);
2876 GST_DEBUG_OBJECT (element, "clearing EOS elements");
2877 bin_remove_messages (bin, NULL, GST_MESSAGE_EOS);
2878 bin->priv->posted_eos = FALSE;
2879 if (current == GST_STATE_READY)
2880 bin_remove_messages (bin, NULL, GST_MESSAGE_STREAM_START);
2881 GST_OBJECT_UNLOCK (bin);
2882 if (current == GST_STATE_READY)
2883 if (!(gst_bin_src_pads_activate (bin, TRUE)))
2884 goto activate_failure;
2886 case GST_STATE_READY:
2887 /* Clear message list on next READY */
2888 GST_OBJECT_LOCK (bin);
2889 GST_DEBUG_OBJECT (element, "clearing all cached messages");
2890 bin_remove_messages (bin, NULL, GST_MESSAGE_ANY);
2891 GST_OBJECT_UNLOCK (bin);
2892 /* We might not have reached PAUSED yet due to async errors,
2893 * make sure to always deactivate the pads nonetheless */
2894 if (!(gst_bin_src_pads_activate (bin, FALSE)))
2895 goto activate_failure;
2897 case GST_STATE_NULL:
2898 /* Clear message list on next NULL */
2899 GST_OBJECT_LOCK (bin);
2900 GST_DEBUG_OBJECT (element, "clearing all cached messages");
2901 bin_remove_messages (bin, NULL, GST_MESSAGE_ANY);
2902 GST_OBJECT_UNLOCK (bin);
2903 if (current == GST_STATE_READY) {
2904 if (!(gst_bin_src_pads_activate (bin, FALSE)))
2905 goto activate_failure;
2912 /* this flag is used to make the async state changes return immediately. We
2913 * don't want them to interfere with this state change */
2914 GST_OBJECT_LOCK (bin);
2915 bin->polling = TRUE;
2916 GST_OBJECT_UNLOCK (bin);
2918 /* iterate in state change order */
2919 it = gst_bin_iterate_sorted (bin);
2921 /* mark if we've seen an ASYNC element in the bin when we did a state change.
2922 * Note how we don't reset this value when a resync happens, the reason being
2923 * that the async element posted ASYNC_START and we want to post ASYNC_DONE
2924 * even after a resync when the async element is gone */
2928 /* take base_time */
2929 base_time = gst_element_get_base_time (element);
2930 start_time = gst_element_get_start_time (element);
2932 have_no_preroll = FALSE;
2936 switch (gst_iterator_next (it, &data)) {
2937 case GST_ITERATOR_OK:
2941 child = g_value_get_object (&data);
2943 /* set state and base_time now */
2944 ret = gst_bin_element_set_state (bin, child, base_time, start_time,
2948 case GST_STATE_CHANGE_SUCCESS:
2949 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2950 "child '%s' changed state to %d(%s) successfully",
2951 GST_ELEMENT_NAME (child), next,
2952 gst_element_state_get_name (next));
2954 case GST_STATE_CHANGE_ASYNC:
2956 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2957 "child '%s' is changing state asynchronously to %s",
2958 GST_ELEMENT_NAME (child), gst_element_state_get_name (next));
2962 case GST_STATE_CHANGE_FAILURE:{
2965 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2966 "child '%s' failed to go to state %d(%s)",
2967 GST_ELEMENT_NAME (child),
2968 next, gst_element_state_get_name (next));
2970 /* Only fail if the child is still inside
2971 * this bin. It might've been removed already
2972 * because of the error by the bin subclass
2973 * to ignore the error. */
2974 parent = gst_object_get_parent (GST_OBJECT_CAST (child));
2975 if (parent == GST_OBJECT_CAST (element)) {
2976 /* element is still in bin, really error now */
2977 gst_object_unref (parent);
2980 /* child removed from bin, let the resync code redo the state
2982 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2983 "child '%s' was removed from the bin",
2984 GST_ELEMENT_NAME (child));
2987 gst_object_unref (parent);
2991 case GST_STATE_CHANGE_NO_PREROLL:
2992 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2993 "child '%s' changed state to %d(%s) successfully without preroll",
2994 GST_ELEMENT_NAME (child), next,
2995 gst_element_state_get_name (next));
2996 have_no_preroll = TRUE;
2999 g_assert_not_reached ();
3002 g_value_reset (&data);
3005 case GST_ITERATOR_RESYNC:
3006 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "iterator doing resync");
3007 gst_iterator_resync (it);
3010 case GST_ITERATOR_DONE:
3011 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "iterator done");
3017 ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
3018 if (G_UNLIKELY (ret == GST_STATE_CHANGE_FAILURE))
3021 if (have_no_preroll) {
3022 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
3023 "we have NO_PREROLL elements %s -> NO_PREROLL",
3024 gst_element_state_change_return_get_name (ret));
3025 ret = GST_STATE_CHANGE_NO_PREROLL;
3026 } else if (have_async) {
3027 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
3028 "we have ASYNC elements %s -> ASYNC",
3029 gst_element_state_change_return_get_name (ret));
3030 ret = GST_STATE_CHANGE_ASYNC;
3034 g_value_unset (&data);
3035 gst_iterator_free (it);
3037 GST_OBJECT_LOCK (bin);
3038 bin->polling = FALSE;
3039 /* it's possible that we did not get ASYNC from the children while the bin is
3040 * simulating ASYNC behaviour by posting an ASYNC_DONE message on the bus with
3041 * itself as the source. In that case we still want to check if the state
3042 * change completed. */
3043 if (ret != GST_STATE_CHANGE_ASYNC && !bin->priv->pending_async_done) {
3044 /* no element returned ASYNC and there are no pending async_done messages,
3045 * we can just complete. */
3046 GST_DEBUG_OBJECT (bin, "no async elements");
3049 /* when we get here an ASYNC element was found */
3050 if (GST_STATE_TARGET (bin) <= GST_STATE_READY) {
3051 /* we ignore ASYNC state changes when we go to READY or NULL */
3052 GST_DEBUG_OBJECT (bin, "target state %s <= READY",
3053 gst_element_state_get_name (GST_STATE_TARGET (bin)));
3057 GST_DEBUG_OBJECT (bin, "check async elements");
3058 /* check if all elements managed to commit their state already */
3059 if (!find_message (bin, NULL, GST_MESSAGE_ASYNC_START)) {
3060 /* nothing found, remove all old ASYNC_DONE messages. This can happen when
3061 * all the elements commited their state while we were doing the state
3062 * change. We will still return ASYNC for consistency but we commit the
3063 * state already so that a _get_state() will return immediately. */
3064 bin_remove_messages (bin, NULL, GST_MESSAGE_ASYNC_DONE);
3066 GST_DEBUG_OBJECT (bin, "async elements commited");
3067 bin_handle_async_done (bin, GST_STATE_CHANGE_SUCCESS, FALSE,
3068 GST_CLOCK_TIME_NONE);
3072 bin->priv->pending_async_done = FALSE;
3073 GST_OBJECT_UNLOCK (bin);
3075 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
3076 "done changing bin's state from %s to %s, now in %s, ret %s",
3077 gst_element_state_get_name (current),
3078 gst_element_state_get_name (next),
3079 gst_element_state_get_name (GST_STATE (element)),
3080 gst_element_state_change_return_get_name (ret));
3087 GST_CAT_WARNING_OBJECT (GST_CAT_STATES, element,
3088 "failure (de)activating src pads");
3089 return GST_STATE_CHANGE_FAILURE;
3094 if (current < next) {
3095 GstIterator *it = gst_bin_iterate_sorted (GST_BIN (element));
3096 GstIteratorResult ret;
3098 GST_DEBUG_OBJECT (element,
3099 "Bin failed to change state, switching children back to %s",
3100 gst_element_state_get_name (current));
3103 gst_iterator_foreach (it, &reset_state, GINT_TO_POINTER (current));
3104 if (ret != GST_ITERATOR_RESYNC)
3106 gst_iterator_resync (it);
3108 gst_iterator_free (it);
3115 * This function is a utility event handler. It will send the event to all sinks
3116 * or sources and appropriate ghost pads depending on the event-direction.
3118 * Applications are free to override this behaviour and implement their own
3119 * handler, but this will work for pretty much all cases in practice.
3122 gst_bin_send_event (GstElement * element, GstEvent * event)
3124 GstBin *bin = GST_BIN_CAST (element);
3126 gboolean res = TRUE;
3127 gboolean done = FALSE;
3128 GValue data = { 0, };
3130 if (GST_EVENT_IS_DOWNSTREAM (event)) {
3131 iter = gst_bin_iterate_sources (bin);
3132 GST_DEBUG_OBJECT (bin, "Sending %s event to src children",
3133 GST_EVENT_TYPE_NAME (event));
3135 iter = gst_bin_iterate_sinks (bin);
3136 GST_DEBUG_OBJECT (bin, "Sending %s event to sink children",
3137 GST_EVENT_TYPE_NAME (event));
3141 switch (gst_iterator_next (iter, &data)) {
3142 case GST_ITERATOR_OK:
3144 GstElement *child = g_value_get_object (&data);
3146 gst_event_ref (event);
3147 res &= gst_element_send_event (child, event);
3149 GST_LOG_OBJECT (child, "After handling %s event: %d",
3150 GST_EVENT_TYPE_NAME (event), res);
3152 g_value_reset (&data);
3155 case GST_ITERATOR_RESYNC:
3156 gst_iterator_resync (iter);
3159 case GST_ITERATOR_DONE:
3162 case GST_ITERATOR_ERROR:
3163 g_assert_not_reached ();
3167 g_value_unset (&data);
3168 gst_iterator_free (iter);
3170 if (GST_EVENT_IS_DOWNSTREAM (event)) {
3171 iter = gst_element_iterate_sink_pads (GST_ELEMENT (bin));
3172 GST_DEBUG_OBJECT (bin, "Sending %s event to sink pads",
3173 GST_EVENT_TYPE_NAME (event));
3175 iter = gst_element_iterate_src_pads (GST_ELEMENT (bin));
3176 GST_DEBUG_OBJECT (bin, "Sending %s event to src pads",
3177 GST_EVENT_TYPE_NAME (event));
3182 switch (gst_iterator_next (iter, &data)) {
3183 case GST_ITERATOR_OK:
3185 GstPad *pad = g_value_get_object (&data);
3187 gst_event_ref (event);
3188 res &= gst_pad_send_event (pad, event);
3189 GST_LOG_OBJECT (pad, "After handling %s event: %d",
3190 GST_EVENT_TYPE_NAME (event), res);
3193 case GST_ITERATOR_RESYNC:
3194 gst_iterator_resync (iter);
3197 case GST_ITERATOR_DONE:
3200 case GST_ITERATOR_ERROR:
3201 g_assert_not_reached ();
3206 g_value_unset (&data);
3207 gst_iterator_free (iter);
3208 gst_event_unref (event);
3213 /* this is the function called by the threadpool. When async elements commit
3214 * their state, this function will attempt to bring the bin to the next state.
3217 gst_bin_continue_func (GstBin * bin, BinContinueData * data)
3219 GstState current, next, pending;
3220 GstStateChange transition;
3222 pending = data->pending;
3224 GST_DEBUG_OBJECT (bin, "waiting for state lock");
3225 GST_STATE_LOCK (bin);
3227 GST_DEBUG_OBJECT (bin, "doing state continue");
3228 GST_OBJECT_LOCK (bin);
3230 /* if a new state change happened after this thread was scheduled, we return
3232 if (data->cookie != GST_ELEMENT_CAST (bin)->state_cookie)
3235 current = GST_STATE (bin);
3236 next = GST_STATE_GET_NEXT (current, pending);
3237 transition = (GstStateChange) GST_STATE_TRANSITION (current, next);
3239 GST_STATE_NEXT (bin) = next;
3240 GST_STATE_PENDING (bin) = pending;
3242 GST_STATE_RETURN (bin) = GST_STATE_CHANGE_ASYNC;
3243 GST_OBJECT_UNLOCK (bin);
3245 GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
3246 "continue state change %s to %s, final %s",
3247 gst_element_state_get_name (current),
3248 gst_element_state_get_name (next), gst_element_state_get_name (pending));
3250 gst_element_change_state (GST_ELEMENT_CAST (bin), transition);
3252 GST_STATE_UNLOCK (bin);
3253 GST_DEBUG_OBJECT (bin, "state continue done");
3259 GST_OBJECT_UNLOCK (bin);
3260 GST_STATE_UNLOCK (bin);
3261 GST_DEBUG_OBJECT (bin, "state continue aborted due to intervening change");
3266 static GstBusSyncReply
3267 bin_bus_handler (GstBus * bus, GstMessage * message, GstBin * bin)
3269 GstBinClass *bclass;
3271 bclass = GST_BIN_GET_CLASS (bin);
3272 if (bclass->handle_message)
3273 bclass->handle_message (bin, message);
3275 gst_message_unref (message);
3277 return GST_BUS_DROP;
3281 free_bin_continue_data (BinContinueData * data)
3283 g_slice_free (BinContinueData, data);
3287 bin_push_state_continue (GstBin * bin, BinContinueData * data)
3289 GST_DEBUG_OBJECT (bin, "pushing continue on thread pool");
3290 gst_element_call_async (GST_ELEMENT_CAST (bin),
3291 (GstElementCallAsyncFunc) gst_bin_continue_func, data,
3292 (GDestroyNotify) free_bin_continue_data);
3295 /* an element started an async state change, if we were not busy with a state
3296 * change, we perform a lost state.
3297 * This function is called with the OBJECT lock.
3300 bin_handle_async_start (GstBin * bin)
3302 GstState old_state, new_state;
3304 GstMessage *amessage = NULL;
3306 if (GST_STATE_RETURN (bin) == GST_STATE_CHANGE_FAILURE)
3309 /* get our toplevel state */
3310 toplevel = BIN_IS_TOPLEVEL (bin);
3312 /* prepare an ASYNC_START message, we always post the start message even if we
3313 * are busy with a state change or when we are NO_PREROLL. */
3315 /* non toplevel bin, prepare async-start for the parent */
3316 amessage = gst_message_new_async_start (GST_OBJECT_CAST (bin));
3318 if (bin->polling || GST_STATE_PENDING (bin) != GST_STATE_VOID_PENDING)
3321 /* async starts are ignored when we are NO_PREROLL */
3322 if (GST_STATE_RETURN (bin) == GST_STATE_CHANGE_NO_PREROLL)
3323 goto was_no_preroll;
3325 old_state = GST_STATE (bin);
3327 /* when we PLAYING we go back to PAUSED, when preroll happens, we go back to
3328 * PLAYING after optionally redistributing the base_time. */
3329 if (old_state > GST_STATE_PAUSED)
3330 new_state = GST_STATE_PAUSED;
3332 new_state = old_state;
3334 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
3335 "lost state of %s, new %s", gst_element_state_get_name (old_state),
3336 gst_element_state_get_name (new_state));
3338 GST_STATE (bin) = new_state;
3339 GST_STATE_NEXT (bin) = new_state;
3340 GST_STATE_PENDING (bin) = new_state;
3341 GST_STATE_RETURN (bin) = GST_STATE_CHANGE_ASYNC;
3342 GST_OBJECT_UNLOCK (bin);
3345 _priv_gst_element_state_changed (GST_ELEMENT_CAST (bin), new_state, new_state,
3350 /* post our ASYNC_START. */
3351 GST_DEBUG_OBJECT (bin, "posting ASYNC_START to parent");
3352 gst_element_post_message (GST_ELEMENT_CAST (bin), amessage);
3354 GST_OBJECT_LOCK (bin);
3360 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "we had an error");
3365 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "state change busy");
3366 GST_OBJECT_UNLOCK (bin);
3371 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "ignoring, we are NO_PREROLL");
3372 GST_OBJECT_UNLOCK (bin);
3377 /* this function is called when there are no more async elements in the bin. We
3378 * post a state changed message and an ASYNC_DONE message.
3379 * This function is called with the OBJECT lock.
3382 bin_handle_async_done (GstBin * bin, GstStateChangeReturn ret,
3383 gboolean flag_pending, GstClockTime running_time)
3385 GstState current, pending, target;
3386 GstStateChangeReturn old_ret;
3387 GstState old_state, old_next;
3388 gboolean toplevel, state_changed = FALSE;
3389 GstMessage *amessage = NULL;
3390 BinContinueData *cont = NULL;
3392 if (GST_STATE_RETURN (bin) == GST_STATE_CHANGE_FAILURE)
3395 pending = GST_STATE_PENDING (bin);
3400 /* check if there is something to commit */
3401 if (pending == GST_STATE_VOID_PENDING)
3402 goto nothing_pending;
3404 old_ret = GST_STATE_RETURN (bin);
3405 GST_STATE_RETURN (bin) = ret;
3407 /* move to the next target state */
3408 target = GST_STATE_TARGET (bin);
3409 pending = GST_STATE_PENDING (bin) = target;
3411 amessage = gst_message_new_async_done (GST_OBJECT_CAST (bin), running_time);
3413 old_state = GST_STATE (bin);
3414 /* this is the state we should go to next */
3415 old_next = GST_STATE_NEXT (bin);
3417 if (old_next != GST_STATE_PLAYING) {
3418 GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
3419 "committing state from %s to %s, old pending %s",
3420 gst_element_state_get_name (old_state),
3421 gst_element_state_get_name (old_next),
3422 gst_element_state_get_name (pending));
3424 /* update current state */
3425 current = GST_STATE (bin) = old_next;
3427 GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
3428 "setting state from %s to %s, pending %s",
3429 gst_element_state_get_name (old_state),
3430 gst_element_state_get_name (old_state),
3431 gst_element_state_get_name (pending));
3432 current = old_state;
3435 /* get our toplevel state */
3436 toplevel = BIN_IS_TOPLEVEL (bin);
3438 /* see if we reached the final state. If we are not toplevel, we also have to
3439 * stop here, the parent will continue our state. */
3440 if ((pending == current) || !toplevel) {
3441 GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
3442 "completed state change, pending VOID");
3444 /* mark VOID pending */
3445 pending = GST_STATE_VOID_PENDING;
3446 GST_STATE_PENDING (bin) = pending;
3447 GST_STATE_NEXT (bin) = GST_STATE_VOID_PENDING;
3449 GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
3450 "continue state change, pending %s",
3451 gst_element_state_get_name (pending));
3453 cont = g_slice_new (BinContinueData);
3455 /* cookie to detect concurrent state change */
3456 cont->cookie = GST_ELEMENT_CAST (bin)->state_cookie;
3457 /* pending target state */
3458 cont->pending = pending;
3460 GST_STATE_RETURN (bin) = GST_STATE_CHANGE_ASYNC;
3461 GST_STATE_NEXT (bin) = GST_STATE_GET_NEXT (old_state, pending);
3464 if (old_next != GST_STATE_PLAYING) {
3465 if (old_state != old_next || old_ret == GST_STATE_CHANGE_ASYNC) {
3466 state_changed = TRUE;
3469 GST_OBJECT_UNLOCK (bin);
3471 if (state_changed) {
3472 _priv_gst_element_state_changed (GST_ELEMENT_CAST (bin), old_state,
3476 /* post our combined ASYNC_DONE when all is ASYNC_DONE. */
3477 GST_DEBUG_OBJECT (bin, "posting ASYNC_DONE to parent");
3478 gst_element_post_message (GST_ELEMENT_CAST (bin), amessage);
3481 GST_OBJECT_LOCK (bin);
3483 /* toplevel, start continue state */
3484 GST_DEBUG_OBJECT (bin, "all async-done, starting state continue");
3485 bin_push_state_continue (bin, cont);
3487 GST_DEBUG_OBJECT (bin, "state change complete");
3488 GST_STATE_BROADCAST (bin);
3494 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "we had an error");
3499 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "state change busy");
3500 /* if we were busy with a state change and we are requested to flag a
3501 * pending async done, we do so here */
3503 bin->priv->pending_async_done = TRUE;
3508 GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin, "nothing pending");
3514 bin_do_eos (GstBin * bin)
3519 GST_OBJECT_LOCK (bin);
3520 /* If all sinks are EOS, we're in PLAYING and no state change is pending
3521 * (or we're doing playing to playing and noone else will trigger posting
3522 * EOS for us) we forward the EOS message to the parent bin or application
3524 eos = GST_STATE (bin) == GST_STATE_PLAYING
3525 && (GST_STATE_PENDING (bin) == GST_STATE_VOID_PENDING ||
3526 GST_STATE_PENDING (bin) == GST_STATE_PLAYING)
3527 && bin->priv->posted_playing && is_eos (bin, &seqnum);
3528 GST_OBJECT_UNLOCK (bin);
3531 && g_atomic_int_compare_and_exchange (&bin->priv->posted_eos, FALSE,
3533 GstMessage *tmessage;
3535 /* Clear out any further messages, and reset posted_eos so we can
3536 detect any new EOS that happens (eg, after a seek). Since all
3537 sinks have now posted an EOS, there will be no further EOS events
3538 seen unless there is a new logical EOS */
3539 GST_OBJECT_LOCK (bin);
3540 bin_remove_messages (bin, NULL, GST_MESSAGE_EOS);
3541 bin->priv->posted_eos = FALSE;
3542 GST_OBJECT_UNLOCK (bin);
3544 tmessage = gst_message_new_eos (GST_OBJECT_CAST (bin));
3545 gst_message_set_seqnum (tmessage, seqnum);
3546 GST_DEBUG_OBJECT (bin,
3547 "all sinks posted EOS, posting seqnum #%" G_GUINT32_FORMAT, seqnum);
3548 gst_element_post_message (GST_ELEMENT_CAST (bin), tmessage);
3550 GST_LOG_OBJECT (bin, "Not forwarding EOS due to in progress state change, "
3551 " or already posted, or waiting for more EOS");
3556 bin_do_stream_start (GstBin * bin)
3559 gboolean stream_start;
3560 gboolean have_group_id = FALSE;
3563 GST_OBJECT_LOCK (bin);
3564 /* If all sinks are STREAM_START we forward the STREAM_START message
3565 * to the parent bin or application
3567 stream_start = is_stream_start (bin, &seqnum, &have_group_id, &group_id);
3568 GST_OBJECT_UNLOCK (bin);
3571 GstMessage *tmessage;
3573 GST_OBJECT_LOCK (bin);
3574 bin_remove_messages (bin, NULL, GST_MESSAGE_STREAM_START);
3575 GST_OBJECT_UNLOCK (bin);
3577 tmessage = gst_message_new_stream_start (GST_OBJECT_CAST (bin));
3578 gst_message_set_seqnum (tmessage, seqnum);
3580 gst_message_set_group_id (tmessage, group_id);
3582 GST_DEBUG_OBJECT (bin,
3583 "all sinks posted STREAM_START, posting seqnum #%" G_GUINT32_FORMAT,
3585 gst_element_post_message (GST_ELEMENT_CAST (bin), tmessage);
3589 /* must be called without the object lock as it posts messages */
3591 bin_do_message_forward (GstBin * bin, GstMessage * message)
3593 if (bin->priv->message_forward) {
3594 GstMessage *forwarded;
3596 GST_DEBUG_OBJECT (bin, "pass %s message upward",
3597 GST_MESSAGE_TYPE_NAME (message));
3599 /* we need to convert these messages to element messages so that our parent
3600 * bin can easily ignore them and so that the application can easily
3601 * distinguish between the internally forwarded and the real messages. */
3602 forwarded = gst_message_new_element (GST_OBJECT_CAST (bin),
3603 gst_structure_new ("GstBinForwarded",
3604 "message", GST_TYPE_MESSAGE, message, NULL));
3606 gst_element_post_message (GST_ELEMENT_CAST (bin), forwarded);
3611 gst_bin_update_context (GstBin * bin, GstContext * context)
3613 GST_OBJECT_LOCK (bin);
3614 gst_bin_update_context_unlocked (bin, context);
3615 GST_OBJECT_UNLOCK (bin);
3619 gst_bin_update_context_unlocked (GstBin * bin, GstContext * context)
3621 const gchar *context_type;
3622 GList *l, **contexts;
3624 contexts = &GST_ELEMENT_CAST (bin)->contexts;
3625 context_type = gst_context_get_context_type (context);
3627 GST_DEBUG_OBJECT (bin, "set context %p %" GST_PTR_FORMAT, context,
3628 gst_context_get_structure (context));
3629 for (l = *contexts; l; l = l->next) {
3630 GstContext *tmp = l->data;
3631 const gchar *tmp_type = gst_context_get_context_type (tmp);
3633 /* Always store newest context but never replace
3634 * a persistent one by a non-persistent one */
3635 if (strcmp (context_type, tmp_type) == 0 &&
3636 (gst_context_is_persistent (context) ||
3637 !gst_context_is_persistent (tmp))) {
3638 gst_context_replace ((GstContext **) & l->data, context);
3642 /* Not found? Add */
3644 *contexts = g_list_prepend (*contexts, gst_context_ref (context));
3648 /* handle child messages:
3650 * This method is called synchronously when a child posts a message on
3653 * GST_MESSAGE_EOS: This message is only posted by sinks
3654 * in the PLAYING state. If all sinks posted the EOS message, post
3657 * GST_MESSAGE_STATE_DIRTY: Deprecated
3659 * GST_MESSAGE_SEGMENT_START: just collect, never forward upwards. If an
3660 * element posts segment_start twice, only the last message is kept.
3662 * GST_MESSAGE_SEGMENT_DONE: replace SEGMENT_START message from same poster
3663 * with the segment_done message. If there are no more segment_start
3664 * messages, post segment_done message upwards.
3666 * GST_MESSAGE_DURATION_CHANGED: clear any cached durations.
3667 * Whenever someone performs a duration query on the bin, we store the
3668 * result so we can answer it quicker the next time. Any element that
3669 * changes its duration marks our cached values invalid.
3670 * This message is also posted upwards. This is currently disabled
3671 * because too many elements don't post DURATION_CHANGED messages when
3672 * the duration changes.
3674 * GST_MESSAGE_CLOCK_LOST: This message is posted by an element when it
3675 * can no longer provide a clock. The default bin behaviour is to
3676 * check if the lost clock was the one provided by the bin. If so and
3677 * we are currently in the PLAYING state, we forward the message to
3679 * This message is also generated when we remove a clock provider from
3680 * a bin. If this message is received by the application, it should
3681 * PAUSE the pipeline and set it back to PLAYING to force a new clock
3682 * and a new base_time distribution.
3684 * GST_MESSAGE_CLOCK_PROVIDE: This message is generated when an element
3685 * can provide a clock. This mostly happens when we add a new clock
3686 * provider to the bin. The default behaviour of the bin is to mark the
3687 * currently selected clock as dirty, which will perform a clock
3688 * recalculation the next time we are asked to provide a clock.
3689 * This message is never sent to the application but is forwarded to
3692 * GST_MESSAGE_ASYNC_START: Create an internal ELEMENT message that stores
3693 * the state of the element and the fact that the element will need a
3694 * new base_time. This message is not forwarded to the application.
3696 * GST_MESSAGE_ASYNC_DONE: Find the internal ELEMENT message we kept for the
3697 * element when it posted ASYNC_START. If all elements are done, post a
3698 * ASYNC_DONE message to the parent.
3700 * OTHER: post upwards.
3703 gst_bin_handle_message_func (GstBin * bin, GstMessage * message)
3706 GstMessageType type;
3707 GstMessage *tmessage;
3710 src = GST_MESSAGE_SRC (message);
3711 type = GST_MESSAGE_TYPE (message);
3713 GST_DEBUG_OBJECT (bin, "[msg %p] handling child %s message of type %s",
3714 message, src ? GST_ELEMENT_NAME (src) : "(NULL)",
3715 GST_MESSAGE_TYPE_NAME (message));
3718 case GST_MESSAGE_ERROR:
3720 GST_OBJECT_LOCK (bin);
3722 GST_DEBUG_OBJECT (bin, "got ERROR message, unlocking state change");
3723 GST_STATE_RETURN (bin) = GST_STATE_CHANGE_FAILURE;
3724 GST_STATE_BROADCAST (bin);
3725 GST_OBJECT_UNLOCK (bin);
3729 case GST_MESSAGE_EOS:
3732 /* collect all eos messages from the children */
3733 bin_do_message_forward (bin, message);
3734 GST_OBJECT_LOCK (bin);
3735 /* ref message for future use */
3736 bin_replace_message (bin, message, GST_MESSAGE_EOS);
3737 GST_OBJECT_UNLOCK (bin);
3742 case GST_MESSAGE_STREAM_START:
3745 /* collect all stream_start messages from the children */
3746 GST_OBJECT_LOCK (bin);
3747 /* ref message for future use */
3748 bin_replace_message (bin, message, GST_MESSAGE_STREAM_START);
3749 GST_OBJECT_UNLOCK (bin);
3751 bin_do_stream_start (bin);
3754 case GST_MESSAGE_STATE_DIRTY:
3756 GST_WARNING_OBJECT (bin, "received deprecated STATE_DIRTY message");
3759 gst_message_unref (message);
3762 case GST_MESSAGE_SEGMENT_START:{
3763 gboolean post = FALSE;
3767 gst_message_parse_segment_start (message, &format, &position);
3768 seqnum = gst_message_get_seqnum (message);
3770 bin_do_message_forward (bin, message);
3772 GST_OBJECT_LOCK (bin);
3773 /* if this is the first segment-start, post to parent but not to the
3775 if (!find_message (bin, NULL, GST_MESSAGE_SEGMENT_START) &&
3776 (GST_OBJECT_PARENT (bin) != NULL)) {
3779 /* replace any previous segment_start message from this source
3780 * with the new segment start message */
3781 bin_replace_message (bin, message, GST_MESSAGE_SEGMENT_START);
3782 GST_OBJECT_UNLOCK (bin);
3784 tmessage = gst_message_new_segment_start (GST_OBJECT_CAST (bin),
3786 gst_message_set_seqnum (tmessage, seqnum);
3788 /* post segment start with initial format and position. */
3789 GST_DEBUG_OBJECT (bin, "posting SEGMENT_START (%u) bus message: %p",
3791 gst_element_post_message (GST_ELEMENT_CAST (bin), tmessage);
3795 case GST_MESSAGE_SEGMENT_DONE:
3797 gboolean post = FALSE;
3801 gst_message_parse_segment_done (message, &format, &position);
3802 seqnum = gst_message_get_seqnum (message);
3804 bin_do_message_forward (bin, message);
3806 GST_OBJECT_LOCK (bin);
3807 bin_replace_message (bin, message, GST_MESSAGE_SEGMENT_START);
3808 /* if there are no more segment_start messages, everybody posted
3809 * a segment_done and we can post one on the bus. */
3811 /* we don't care who still has a pending segment start */
3812 if (!find_message (bin, NULL, GST_MESSAGE_SEGMENT_START)) {
3815 /* remove all old segment_done messages */
3816 bin_remove_messages (bin, NULL, GST_MESSAGE_SEGMENT_DONE);
3818 GST_OBJECT_UNLOCK (bin);
3820 tmessage = gst_message_new_segment_done (GST_OBJECT_CAST (bin),
3822 gst_message_set_seqnum (tmessage, seqnum);
3824 /* post segment done with latest format and position. */
3825 GST_DEBUG_OBJECT (bin, "posting SEGMENT_DONE (%u) bus message: %p",
3827 gst_element_post_message (GST_ELEMENT_CAST (bin), tmessage);
3831 case GST_MESSAGE_DURATION_CHANGED:
3833 /* FIXME: remove all cached durations, next time somebody asks
3834 * for duration, we will recalculate. */
3836 GST_OBJECT_LOCK (bin);
3837 bin_remove_messages (bin, NULL, GST_MESSAGE_DURATION_CHANGED);
3838 GST_OBJECT_UNLOCK (bin);
3842 case GST_MESSAGE_CLOCK_LOST:
3844 GstClock **provided_clock_p;
3845 GstElement **clock_provider_p;
3846 gboolean playing, toplevel, provided, forward;
3849 gst_message_parse_clock_lost (message, &clock);
3851 GST_OBJECT_LOCK (bin);
3852 bin->clock_dirty = TRUE;
3853 /* if we lost the clock that we provided, post to parent but
3854 * only if we are not a top-level bin or PLAYING.
3855 * The reason for this is that applications should be able
3856 * to PAUSE/PLAY if they receive this message without worrying
3857 * about the state of the pipeline. */
3858 provided = (clock == bin->provided_clock);
3859 playing = (GST_STATE (bin) == GST_STATE_PLAYING);
3860 toplevel = GST_OBJECT_PARENT (bin) == NULL;
3861 forward = provided && (playing || !toplevel);
3863 GST_DEBUG_OBJECT (bin,
3864 "Lost clock %" GST_PTR_FORMAT " provided by %" GST_PTR_FORMAT,
3865 bin->provided_clock, bin->clock_provider);
3866 provided_clock_p = &bin->provided_clock;
3867 clock_provider_p = &bin->clock_provider;
3868 gst_object_replace ((GstObject **) provided_clock_p, NULL);
3869 gst_object_replace ((GstObject **) clock_provider_p, NULL);
3871 GST_DEBUG_OBJECT (bin, "provided %d, playing %d, forward %d",
3872 provided, playing, forward);
3873 GST_OBJECT_UNLOCK (bin);
3879 gst_message_unref (message);
3882 case GST_MESSAGE_CLOCK_PROVIDE:
3886 GST_OBJECT_LOCK (bin);
3887 bin->clock_dirty = TRUE;
3888 /* a new clock is available, post to parent but not
3889 * to the application */
3890 forward = GST_OBJECT_PARENT (bin) != NULL;
3891 GST_OBJECT_UNLOCK (bin);
3897 gst_message_unref (message);
3900 case GST_MESSAGE_ASYNC_START:
3904 GST_DEBUG_OBJECT (bin, "ASYNC_START message %p, %s", message,
3905 src ? GST_OBJECT_NAME (src) : "(NULL)");
3907 bin_do_message_forward (bin, message);
3909 GST_OBJECT_LOCK (bin);
3910 /* we ignore the message if we are going to <= READY */
3911 if ((target = GST_STATE_TARGET (bin)) <= GST_STATE_READY)
3912 goto ignore_start_message;
3914 /* takes ownership of the message */
3915 bin_replace_message (bin, message, GST_MESSAGE_ASYNC_START);
3917 bin_handle_async_start (bin);
3918 GST_OBJECT_UNLOCK (bin);
3921 ignore_start_message:
3923 GST_DEBUG_OBJECT (bin, "ignoring message, target %s",
3924 gst_element_state_get_name (target));
3925 GST_OBJECT_UNLOCK (bin);
3926 gst_message_unref (message);
3930 case GST_MESSAGE_ASYNC_DONE:
3932 GstClockTime running_time;
3935 GST_DEBUG_OBJECT (bin, "ASYNC_DONE message %p, %s", message,
3936 src ? GST_OBJECT_NAME (src) : "(NULL)");
3938 gst_message_parse_async_done (message, &running_time);
3940 bin_do_message_forward (bin, message);
3942 GST_OBJECT_LOCK (bin);
3943 /* ignore messages if we are shutting down */
3944 if ((target = GST_STATE_TARGET (bin)) <= GST_STATE_READY)
3945 goto ignore_done_message;
3947 bin_replace_message (bin, message, GST_MESSAGE_ASYNC_START);
3948 /* if there are no more ASYNC_START messages, everybody posted
3949 * a ASYNC_DONE and we can post one on the bus. When checking, we
3950 * don't care who still has a pending ASYNC_START */
3951 if (!find_message (bin, NULL, GST_MESSAGE_ASYNC_START)) {
3952 /* nothing found, remove all old ASYNC_DONE messages */
3953 bin_remove_messages (bin, NULL, GST_MESSAGE_ASYNC_DONE);
3955 GST_DEBUG_OBJECT (bin, "async elements commited");
3956 /* when we get an async done message when a state change was busy, we
3957 * need to set the pending_done flag so that at the end of the state
3958 * change we can see if we need to verify pending async elements, hence
3959 * the TRUE argument here. */
3960 bin_handle_async_done (bin, GST_STATE_CHANGE_SUCCESS, TRUE,
3963 GST_DEBUG_OBJECT (bin, "there are more async elements pending");
3965 GST_OBJECT_UNLOCK (bin);
3968 ignore_done_message:
3970 GST_DEBUG_OBJECT (bin, "ignoring message, target %s",
3971 gst_element_state_get_name (target));
3972 GST_OBJECT_UNLOCK (bin);
3973 gst_message_unref (message);
3977 case GST_MESSAGE_STRUCTURE_CHANGE:
3981 gst_message_parse_structure_change (message, NULL, NULL, &busy);
3983 GST_OBJECT_LOCK (bin);
3985 /* while the pad is busy, avoid following it when doing state changes.
3986 * Don't update the cookie yet, we will do that after the structure
3987 * change finished and we are ready to inspect the new updated
3989 bin_replace_message (bin, message, GST_MESSAGE_STRUCTURE_CHANGE);
3992 /* a pad link/unlink ended, signal the state change iterator that we
3993 * need to resync by updating the structure_cookie. */
3994 bin_remove_messages (bin, GST_MESSAGE_SRC (message),
3995 GST_MESSAGE_STRUCTURE_CHANGE);
3996 if (!GST_BIN_IS_NO_RESYNC (bin))
3997 bin->priv->structure_cookie++;
3999 GST_OBJECT_UNLOCK (bin);
4002 gst_message_unref (message);
4006 case GST_MESSAGE_NEED_CONTEXT:{
4007 const gchar *context_type;
4008 GList *l, *contexts;
4010 gst_message_parse_context_type (message, &context_type);
4011 GST_OBJECT_LOCK (bin);
4012 contexts = GST_ELEMENT_CAST (bin)->contexts;
4013 GST_LOG_OBJECT (bin, "got need-context message type: %s", context_type);
4014 for (l = contexts; l; l = l->next) {
4015 GstContext *tmp = l->data;
4016 const gchar *tmp_type = gst_context_get_context_type (tmp);
4018 if (strcmp (context_type, tmp_type) == 0) {
4019 gst_element_set_context (GST_ELEMENT (src), l->data);
4023 GST_OBJECT_UNLOCK (bin);
4025 /* Forward if we couldn't answer the message */
4029 gst_message_unref (message);
4034 case GST_MESSAGE_HAVE_CONTEXT:{
4035 GstContext *context;
4037 gst_message_parse_have_context (message, &context);
4038 gst_bin_update_context (bin, context);
4039 gst_context_unref (context);
4051 /* Send all other messages upward */
4052 GST_DEBUG_OBJECT (bin, "posting message upward");
4053 gst_element_post_message (GST_ELEMENT_CAST (bin), message);
4058 /* generic struct passed to all query fold methods */
4067 typedef void (*QueryInitFunction) (GstBin * bin, QueryFold * fold);
4068 typedef void (*QueryDoneFunction) (GstBin * bin, QueryFold * fold);
4070 /* for duration/position we collect all durations/positions and take
4071 * the MAX of all valid results */
4073 bin_query_min_max_init (GstBin * bin, QueryFold * fold)
4081 bin_query_duration_fold (const GValue * vitem, GValue * ret, QueryFold * fold)
4083 gboolean res = FALSE;
4084 GstObject *item = g_value_get_object (vitem);
4085 if (GST_IS_PAD (item))
4086 res = gst_pad_query (GST_PAD (item), fold->query);
4088 res = gst_element_query (GST_ELEMENT (item), fold->query);
4093 g_value_set_boolean (ret, TRUE);
4095 gst_query_parse_duration (fold->query, NULL, &duration);
4097 GST_DEBUG_OBJECT (item, "got duration %" G_GINT64_FORMAT, duration);
4099 if (duration == -1) {
4100 /* duration query succeeded, but duration is unknown */
4105 if (duration > fold->max)
4106 fold->max = duration;
4113 bin_query_duration_done (GstBin * bin, QueryFold * fold)
4117 gst_query_parse_duration (fold->query, &format, NULL);
4118 /* store max in query result */
4119 gst_query_set_duration (fold->query, format, fold->max);
4121 GST_DEBUG_OBJECT (bin, "max duration %" G_GINT64_FORMAT, fold->max);
4123 /* FIXME: re-implement duration caching */
4126 GST_OBJECT_LOCK (bin);
4127 bin->messages = g_list_prepend (bin->messages,
4128 gst_message_new_duration (GST_OBJECT_CAST (bin), format, fold->max));
4129 GST_OBJECT_UNLOCK (bin);
4134 bin_query_position_fold (const GValue * vitem, GValue * ret, QueryFold * fold)
4136 gboolean res = FALSE;
4137 GstObject *item = g_value_get_object (vitem);
4138 if (GST_IS_PAD (item))
4139 res = gst_pad_query (GST_PAD (item), fold->query);
4141 res = gst_element_query (GST_ELEMENT (item), fold->query);
4146 g_value_set_boolean (ret, TRUE);
4148 gst_query_parse_position (fold->query, NULL, &position);
4150 GST_DEBUG_OBJECT (item, "got position %" G_GINT64_FORMAT, position);
4152 if (position > fold->max)
4153 fold->max = position;
4160 bin_query_position_done (GstBin * bin, QueryFold * fold)
4164 gst_query_parse_position (fold->query, &format, NULL);
4165 /* store max in query result */
4166 gst_query_set_position (fold->query, format, fold->max);
4168 GST_DEBUG_OBJECT (bin, "max position %" G_GINT64_FORMAT, fold->max);
4172 bin_query_latency_fold (const GValue * vitem, GValue * ret, QueryFold * fold)
4174 gboolean res = FALSE;
4175 GstObject *item = g_value_get_object (vitem);
4176 if (GST_IS_PAD (item))
4177 res = gst_pad_query (GST_PAD (item), fold->query);
4179 res = gst_element_query (GST_ELEMENT (item), fold->query);
4181 GstClockTime min, max;
4184 gst_query_parse_latency (fold->query, &live, &min, &max);
4186 GST_DEBUG_OBJECT (item,
4187 "got latency min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT
4188 ", live %d", GST_TIME_ARGS (min), GST_TIME_ARGS (max), live);
4190 /* for the combined latency we collect the MAX of all min latencies and
4191 * the MIN of all max latencies */
4193 if (min > fold->min)
4195 if (fold->max == -1)
4197 else if (max < fold->max)
4203 g_value_set_boolean (ret, FALSE);
4204 GST_DEBUG_OBJECT (item, "failed query");
4211 bin_query_latency_done (GstBin * bin, QueryFold * fold)
4213 /* store max in query result */
4214 gst_query_set_latency (fold->query, fold->live, fold->min, fold->max);
4216 GST_DEBUG_OBJECT (bin,
4217 "latency min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT
4218 ", live %d", GST_TIME_ARGS (fold->min), GST_TIME_ARGS (fold->max),
4222 /* generic fold, return first valid result */
4224 bin_query_generic_fold (const GValue * vitem, GValue * ret, QueryFold * fold)
4226 gboolean res = FALSE;
4227 GstObject *item = g_value_get_object (vitem);
4228 if (GST_IS_PAD (item))
4229 res = gst_pad_query (GST_PAD (item), fold->query);
4231 res = gst_element_query (GST_ELEMENT (item), fold->query);
4233 g_value_set_boolean (ret, TRUE);
4234 GST_DEBUG_OBJECT (item, "answered query %p", fold->query);
4237 /* and stop as soon as we have a valid result */
4241 /* Perform a query iteration for the given bin. The query is stored in
4242 * QueryFold and iter should be either a GstPad iterator or a
4243 * GstElement iterator. */
4245 bin_iterate_fold (GstBin * bin, GstIterator * iter, QueryInitFunction fold_init,
4246 QueryDoneFunction fold_done, GstIteratorFoldFunction fold_func,
4247 QueryFold * fold_data, gboolean default_return)
4249 gboolean res = default_return;
4251 /* set the result of the query to FALSE initially */
4252 g_value_init (&ret, G_TYPE_BOOLEAN);
4253 g_value_set_boolean (&ret, res);
4256 GstIteratorResult ires;
4258 ires = gst_iterator_fold (iter, fold_func, &ret, fold_data);
4261 case GST_ITERATOR_RESYNC:
4262 gst_iterator_resync (iter);
4264 fold_init (bin, fold_data);
4265 g_value_set_boolean (&ret, res);
4267 case GST_ITERATOR_OK:
4268 case GST_ITERATOR_DONE:
4269 res = g_value_get_boolean (&ret);
4270 if (fold_done != NULL && res)
4271 fold_done (bin, fold_data);
4283 gst_bin_query (GstElement * element, GstQuery * query)
4285 GstBin *bin = GST_BIN_CAST (element);
4287 gboolean default_return = FALSE;
4288 gboolean res = FALSE;
4289 gboolean src_pads_query_result = FALSE;
4290 GstIteratorFoldFunction fold_func;
4291 QueryInitFunction fold_init = NULL;
4292 QueryDoneFunction fold_done = NULL;
4293 QueryFold fold_data;
4295 switch (GST_QUERY_TYPE (query)) {
4296 case GST_QUERY_DURATION:
4298 /* FIXME: implement duration caching in GstBin again */
4303 gst_query_parse_duration (query, &qformat, NULL);
4305 /* find cached duration query */
4306 GST_OBJECT_LOCK (bin);
4307 for (cached = bin->messages; cached; cached = g_list_next (cached)) {
4308 GstMessage *message = (GstMessage *) cached->data;
4310 if (GST_MESSAGE_TYPE (message) == GST_MESSAGE_DURATION_CHANGED &&
4311 GST_MESSAGE_SRC (message) == GST_OBJECT_CAST (bin)) {
4315 gst_message_parse_duration (message, &format, &duration);
4317 /* if cached same format, copy duration in query result */
4318 if (format == qformat) {
4319 GST_DEBUG_OBJECT (bin, "return cached duration %" G_GINT64_FORMAT,
4321 GST_OBJECT_UNLOCK (bin);
4323 gst_query_set_duration (query, qformat, duration);
4329 GST_OBJECT_UNLOCK (bin);
4331 #ifndef GST_DISABLE_GST_DEBUG
4333 /* Quieten this particularly annoying FIXME a bit: */
4334 static gboolean printed_fixme = FALSE;
4335 if (!printed_fixme) {
4336 GST_FIXME ("implement duration caching in GstBin again");
4337 printed_fixme = TRUE;
4343 /* no cached value found, iterate and collect durations */
4344 fold_func = (GstIteratorFoldFunction) bin_query_duration_fold;
4345 fold_init = bin_query_min_max_init;
4346 fold_done = bin_query_duration_done;
4349 case GST_QUERY_POSITION:
4351 fold_func = (GstIteratorFoldFunction) bin_query_position_fold;
4352 fold_init = bin_query_min_max_init;
4353 fold_done = bin_query_position_done;
4356 case GST_QUERY_LATENCY:
4358 fold_func = (GstIteratorFoldFunction) bin_query_latency_fold;
4359 fold_init = bin_query_min_max_init;
4360 fold_done = bin_query_latency_done;
4361 default_return = TRUE;
4365 fold_func = (GstIteratorFoldFunction) bin_query_generic_fold;
4369 fold_data.query = query;
4371 iter = gst_bin_iterate_sinks (bin);
4372 GST_DEBUG_OBJECT (bin, "Sending query %p (type %s) to sink children",
4373 query, GST_QUERY_TYPE_NAME (query));
4376 fold_init (bin, &fold_data);
4379 bin_iterate_fold (bin, iter, fold_init, fold_done, fold_func, &fold_data,
4381 gst_iterator_free (iter);
4384 /* Query the source pads of the element */
4385 iter = gst_element_iterate_src_pads (element);
4386 src_pads_query_result =
4387 bin_iterate_fold (bin, iter, fold_init, fold_done, fold_func,
4388 &fold_data, default_return);
4389 gst_iterator_free (iter);
4391 if (src_pads_query_result)
4395 GST_DEBUG_OBJECT (bin, "query %p result %d", query, res);
4401 set_context (const GValue * item, gpointer user_data)
4403 GstElement *element = g_value_get_object (item);
4405 gst_element_set_context (element, user_data);
4409 gst_bin_set_context (GstElement * element, GstContext * context)
4412 GstIterator *children;
4414 g_return_if_fail (GST_IS_BIN (element));
4416 bin = GST_BIN (element);
4418 GST_ELEMENT_CLASS (parent_class)->set_context (element, context);
4420 children = gst_bin_iterate_elements (bin);
4421 while (gst_iterator_foreach (children, set_context,
4422 context) == GST_ITERATOR_RESYNC)
4423 gst_iterator_resync (children);
4424 gst_iterator_free (children);
4428 compare_name (const GValue * velement, const gchar * name)
4431 GstElement *element = g_value_get_object (velement);
4433 GST_OBJECT_LOCK (element);
4434 eq = strcmp (GST_ELEMENT_NAME (element), name);
4435 GST_OBJECT_UNLOCK (element);
4441 * gst_bin_get_by_name:
4443 * @name: the element name to search for
4445 * Gets the element with the given name from a bin. This
4446 * function recurses into child bins.
4448 * Returns %NULL if no element with the given name is found in the bin.
4450 * MT safe. Caller owns returned reference.
4452 * Returns: (transfer full) (nullable): the #GstElement with the given
4456 gst_bin_get_by_name (GstBin * bin, const gchar * name)
4458 GstIterator *children;
4459 GValue result = { 0, };
4460 GstElement *element;
4463 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
4465 GST_CAT_INFO (GST_CAT_PARENTAGE, "[%s]: looking up child element %s",
4466 GST_ELEMENT_NAME (bin), name);
4468 children = gst_bin_iterate_recurse (bin);
4469 found = gst_iterator_find_custom (children,
4470 (GCompareFunc) compare_name, &result, (gpointer) name);
4471 gst_iterator_free (children);
4474 element = g_value_dup_object (&result);
4475 g_value_unset (&result);
4484 * gst_bin_get_by_name_recurse_up:
4486 * @name: the element name to search for
4488 * Gets the element with the given name from this bin. If the
4489 * element is not found, a recursion is performed on the parent bin.
4492 * - no element with the given name is found in the bin
4494 * MT safe. Caller owns returned reference.
4496 * Returns: (transfer full) (nullable): the #GstElement with the given
4500 gst_bin_get_by_name_recurse_up (GstBin * bin, const gchar * name)
4504 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
4505 g_return_val_if_fail (name != NULL, NULL);
4507 result = gst_bin_get_by_name (bin, name);
4512 parent = gst_object_get_parent (GST_OBJECT_CAST (bin));
4514 if (GST_IS_BIN (parent)) {
4515 result = gst_bin_get_by_name_recurse_up (GST_BIN_CAST (parent), name);
4517 gst_object_unref (parent);
4525 compare_interface (const GValue * velement, GValue * interface)
4527 GstElement *element = g_value_get_object (velement);
4528 GType interface_type = (GType) g_value_get_pointer (interface);
4531 if (G_TYPE_CHECK_INSTANCE_TYPE (element, interface_type)) {
4540 * gst_bin_get_by_interface:
4542 * @iface: the #GType of an interface
4544 * Looks for an element inside the bin that implements the given
4545 * interface. If such an element is found, it returns the element.
4546 * You can cast this element to the given interface afterwards. If you want
4547 * all elements that implement the interface, use
4548 * gst_bin_iterate_all_by_interface(). This function recurses into child bins.
4550 * MT safe. Caller owns returned reference.
4552 * Returns: (transfer full): A #GstElement inside the bin implementing the interface
4555 gst_bin_get_by_interface (GstBin * bin, GType iface)
4557 GstIterator *children;
4558 GValue result = { 0, };
4559 GstElement *element;
4561 GValue viface = { 0, };
4563 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
4564 g_return_val_if_fail (G_TYPE_IS_INTERFACE (iface), NULL);
4566 g_value_init (&viface, G_TYPE_POINTER);
4567 g_value_set_pointer (&viface, (gpointer) iface);
4569 children = gst_bin_iterate_recurse (bin);
4570 found = gst_iterator_find_custom (children, (GCompareFunc) compare_interface,
4572 gst_iterator_free (children);
4575 element = g_value_dup_object (&result);
4576 g_value_unset (&result);
4580 g_value_unset (&viface);
4586 * gst_bin_iterate_all_by_interface:
4588 * @iface: the #GType of an interface
4590 * Looks for all elements inside the bin that implements the given
4591 * interface. You can safely cast all returned elements to the given interface.
4592 * The function recurses inside child bins. The iterator will yield a series
4593 * of #GstElement that should be unreffed after use.
4595 * MT safe. Caller owns returned value.
4597 * Returns: (transfer full) (nullable): a #GstIterator of #GstElement
4598 * for all elements in the bin implementing the given interface,
4602 gst_bin_iterate_all_by_interface (GstBin * bin, GType iface)
4604 GstIterator *children;
4605 GstIterator *result;
4606 GValue viface = { 0, };
4608 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
4609 g_return_val_if_fail (G_TYPE_IS_INTERFACE (iface), NULL);
4611 g_value_init (&viface, G_TYPE_POINTER);
4612 g_value_set_pointer (&viface, (gpointer) iface);
4614 children = gst_bin_iterate_recurse (bin);
4615 result = gst_iterator_filter (children, (GCompareFunc) compare_interface,
4618 g_value_unset (&viface);