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;
2326 /* get next element in iterator. */
2327 static GstIteratorResult
2328 gst_bin_sort_iterator_next (GstBinSortIterator * bit, GValue * result)
2331 GstBin *bin = bit->bin;
2333 /* empty queue, we have to find a next best element */
2334 if (g_queue_is_empty (&bit->queue)) {
2336 bit->best_deg = G_MAXINT;
2337 g_list_foreach (bin->children, (GFunc) find_element, bit);
2338 if ((best = bit->best)) {
2339 /* when we detected an unlink, don't warn because our degrees might be
2340 * screwed up. We will resync later */
2341 if (bit->best_deg != 0 && !bit->dirty) {
2342 /* we don't fail on this one yet */
2343 GST_WARNING_OBJECT (bin, "loop dected in graph");
2344 g_warning ("loop detected in the graph of bin '%s'!!",
2345 GST_ELEMENT_NAME (bin));
2347 /* best unhandled element, schedule as next element */
2348 GST_DEBUG_OBJECT (bin, "queue empty, next best: %s",
2349 GST_ELEMENT_NAME (best));
2350 HASH_SET_DEGREE (bit, best, -1);
2351 g_value_set_object (result, best);
2353 GST_DEBUG_OBJECT (bin, "queue empty, elements exhausted");
2354 /* no more unhandled elements, we are done */
2355 return GST_ITERATOR_DONE;
2358 /* everything added to the queue got reffed */
2359 best = g_queue_pop_head (&bit->queue);
2360 g_value_set_object (result, best);
2361 gst_object_unref (best);
2364 GST_DEBUG_OBJECT (bin, "queue head gives %s", GST_ELEMENT_NAME (best));
2365 /* update degrees of linked elements */
2366 update_degree (best, bit);
2368 return GST_ITERATOR_OK;
2371 /* clear queues, recalculate the degrees and restart. */
2373 gst_bin_sort_iterator_resync (GstBinSortIterator * bit)
2375 GstBin *bin = bit->bin;
2377 GST_DEBUG_OBJECT (bin, "resync");
2379 clear_queue (&bit->queue);
2381 g_list_foreach (bin->children, (GFunc) reset_degree, bit);
2382 /* calc degrees, incrementing */
2384 g_list_foreach (bin->children, (GFunc) update_degree, bit);
2385 /* for the rest of the function we decrement the degrees */
2389 /* clear queues, unref bin and free iterator. */
2391 gst_bin_sort_iterator_free (GstBinSortIterator * bit)
2393 GstBin *bin = bit->bin;
2395 GST_DEBUG_OBJECT (bin, "free");
2396 clear_queue (&bit->queue);
2397 g_hash_table_destroy (bit->hash);
2398 gst_object_unref (bin);
2401 /* should be called with the bin LOCK held */
2402 static GstIterator *
2403 gst_bin_sort_iterator_new (GstBin * bin)
2405 GstBinSortIterator *result;
2407 /* we don't need an ItemFunction because we ref the items in the _next
2409 result = (GstBinSortIterator *)
2410 gst_iterator_new (sizeof (GstBinSortIterator),
2412 GST_OBJECT_GET_LOCK (bin),
2413 &bin->priv->structure_cookie,
2414 (GstIteratorCopyFunction) gst_bin_sort_iterator_copy,
2415 (GstIteratorNextFunction) gst_bin_sort_iterator_next,
2416 (GstIteratorItemFunction) NULL,
2417 (GstIteratorResyncFunction) gst_bin_sort_iterator_resync,
2418 (GstIteratorFreeFunction) gst_bin_sort_iterator_free);
2419 g_queue_init (&result->queue);
2420 result->hash = g_hash_table_new (NULL, NULL);
2421 gst_object_ref (bin);
2423 gst_bin_sort_iterator_resync (result);
2425 return (GstIterator *) result;
2429 * gst_bin_iterate_sorted:
2432 * Gets an iterator for the elements in this bin in topologically
2433 * sorted order. This means that the elements are returned from
2434 * the most downstream elements (sinks) to the sources.
2436 * This function is used internally to perform the state changes
2437 * of the bin elements and for clock selection.
2439 * MT safe. Caller owns returned value.
2441 * Returns: (transfer full) (nullable): a #GstIterator of #GstElement,
2445 gst_bin_iterate_sorted (GstBin * bin)
2447 GstIterator *result;
2449 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
2451 GST_OBJECT_LOCK (bin);
2452 result = gst_bin_sort_iterator_new (bin);
2453 GST_OBJECT_UNLOCK (bin);
2458 static GstStateChangeReturn
2459 gst_bin_element_set_state (GstBin * bin, GstElement * element,
2460 GstClockTime base_time, GstClockTime start_time, GstState current,
2463 GstStateChangeReturn ret;
2464 GstState child_current, child_pending;
2468 GST_STATE_LOCK (element);
2470 GST_OBJECT_LOCK (element);
2471 /* set base_time and start time on child */
2472 GST_ELEMENT_START_TIME (element) = start_time;
2473 element->base_time = base_time;
2474 /* peel off the locked flag */
2475 locked = GST_ELEMENT_IS_LOCKED_STATE (element);
2476 /* Get the previous set_state result to preserve NO_PREROLL and ASYNC */
2477 ret = GST_STATE_RETURN (element);
2478 child_current = GST_STATE (element);
2479 child_pending = GST_STATE_PENDING (element);
2480 GST_OBJECT_UNLOCK (element);
2482 /* skip locked elements */
2483 if (G_UNLIKELY (locked))
2486 /* if the element was no preroll, just start changing the state regardless
2487 * if it had async elements (in the case of a bin) because they won't preroll
2489 if (G_UNLIKELY (ret == GST_STATE_CHANGE_NO_PREROLL)) {
2490 GST_DEBUG_OBJECT (element, "element is NO_PREROLL, ignore async elements");
2494 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2495 "current %s pending %s, desired next %s",
2496 gst_element_state_get_name (child_current),
2497 gst_element_state_get_name (child_pending),
2498 gst_element_state_get_name (next));
2500 /* always recurse into bins so that we can set the base time */
2501 if (GST_IS_BIN (element))
2504 /* Try not to change the state of elements that are already in the state we're
2506 if (child_current == next && child_pending == GST_STATE_VOID_PENDING) {
2507 /* child is already at the requested state, return previous return. Note that
2508 * if the child has a pending state to next, we will still call the
2509 * set_state function */
2511 } else if (next > current) {
2512 /* upward state change */
2513 if (child_pending == GST_STATE_VOID_PENDING) {
2514 /* .. and the child is not busy doing anything */
2515 if (child_current > next) {
2516 /* .. and is already past the requested state, assume it got there
2518 ret = GST_STATE_CHANGE_SUCCESS;
2521 } else if (child_pending > child_current) {
2522 /* .. and the child is busy going upwards */
2523 if (child_current >= next) {
2524 /* .. and is already past the requested state, assume it got there
2526 ret = GST_STATE_CHANGE_SUCCESS;
2530 /* .. and the child is busy going downwards */
2531 if (child_current > next) {
2532 /* .. and is already past the requested state, assume it got there
2534 ret = GST_STATE_CHANGE_SUCCESS;
2538 } else if (next < current) {
2539 /* downward state change */
2540 if (child_pending == GST_STATE_VOID_PENDING) {
2541 /* .. and the child is not busy doing anything */
2542 if (child_current < next) {
2543 /* .. and is already past the requested state, assume it got there
2545 ret = GST_STATE_CHANGE_SUCCESS;
2548 } else if (child_pending < child_current) {
2549 /* .. and the child is busy going downwards */
2550 if (child_current <= next) {
2551 /* .. and is already past the requested state, assume it got there
2553 ret = GST_STATE_CHANGE_SUCCESS;
2557 /* .. and the child is busy going upwards */
2558 if (child_current < next) {
2559 /* .. and is already past the requested state, assume it got there
2561 ret = GST_STATE_CHANGE_SUCCESS;
2568 GST_OBJECT_LOCK (bin);
2569 /* the element was busy with an upwards async state change, we must wait for
2570 * an ASYNC_DONE message before we attemp to change the state. */
2572 find_message (bin, GST_OBJECT_CAST (element),
2573 GST_MESSAGE_ASYNC_START))) {
2574 #ifndef GST_DISABLE_GST_DEBUG
2575 GstMessage *message = GST_MESSAGE_CAST (found->data);
2577 GST_DEBUG_OBJECT (element, "element message %p, %s async busy",
2578 message, GST_ELEMENT_NAME (GST_MESSAGE_SRC (message)));
2580 /* only wait for upward state changes */
2581 if (next > current) {
2582 /* We found an async element check if we can force its state to change or
2583 * if we have to wait for it to preroll. */
2587 GST_OBJECT_UNLOCK (bin);
2590 GST_DEBUG_OBJECT (bin,
2591 "setting element %s to %s, base_time %" GST_TIME_FORMAT,
2592 GST_ELEMENT_NAME (element), gst_element_state_get_name (next),
2593 GST_TIME_ARGS (base_time));
2596 ret = gst_element_set_state (element, next);
2598 GST_STATE_UNLOCK (element);
2604 GST_DEBUG_OBJECT (element,
2605 "element is locked, return previous return %s",
2606 gst_element_state_change_return_get_name (ret));
2607 GST_STATE_UNLOCK (element);
2612 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2613 "skipping transition from %s to %s",
2614 gst_element_state_get_name (child_current),
2615 gst_element_state_get_name (next));
2616 GST_STATE_UNLOCK (element);
2621 GST_DEBUG_OBJECT (element, "element was busy, delaying state change");
2622 GST_OBJECT_UNLOCK (bin);
2623 GST_STATE_UNLOCK (element);
2624 return GST_STATE_CHANGE_ASYNC;
2628 /* gst_iterator_fold functions for pads_activate
2629 * Stop the iterator if activating one pad failed, but only if that pad
2630 * has not been removed from the element. */
2632 activate_pads (const GValue * vpad, GValue * ret, gboolean * active)
2634 GstPad *pad = g_value_get_object (vpad);
2635 gboolean cont = TRUE;
2637 if (!gst_pad_set_active (pad, *active)) {
2638 if (GST_PAD_PARENT (pad) != NULL) {
2640 g_value_set_boolean (ret, FALSE);
2647 /* returns false on error or early cutout of the fold, true if all
2648 * pads in @iter were (de)activated successfully. */
2650 iterator_activate_fold_with_resync (GstIterator * iter, gpointer user_data)
2652 GstIteratorResult ires;
2655 /* no need to unset this later, it's just a boolean */
2656 g_value_init (&ret, G_TYPE_BOOLEAN);
2657 g_value_set_boolean (&ret, TRUE);
2660 ires = gst_iterator_fold (iter, (GstIteratorFoldFunction) activate_pads,
2663 case GST_ITERATOR_RESYNC:
2664 /* need to reset the result again */
2665 g_value_set_boolean (&ret, TRUE);
2666 gst_iterator_resync (iter);
2668 case GST_ITERATOR_DONE:
2669 /* all pads iterated, return collected value */
2672 /* iterator returned _ERROR or premature end with _OK,
2673 * mark an error and exit */
2674 g_value_set_boolean (&ret, FALSE);
2679 /* return collected value */
2680 return g_value_get_boolean (&ret);
2683 /* is called with STATE_LOCK
2686 gst_bin_src_pads_activate (GstBin * bin, gboolean active)
2691 GST_DEBUG_OBJECT (bin, "%s pads", active ? "activate" : "deactivate");
2693 iter = gst_element_iterate_src_pads ((GstElement *) bin);
2694 fold_ok = iterator_activate_fold_with_resync (iter, &active);
2695 gst_iterator_free (iter);
2696 if (G_UNLIKELY (!fold_ok))
2699 GST_DEBUG_OBJECT (bin, "pad %sactivation successful", active ? "" : "de");
2706 GST_DEBUG_OBJECT (bin, "pad %sactivation failed", active ? "" : "de");
2712 * gst_bin_recalculate_latency:
2715 * Query @bin for the current latency using and reconfigures this latency to all the
2716 * elements with a LATENCY event.
2718 * This method is typically called on the pipeline when a #GST_MESSAGE_LATENCY
2719 * is posted on the bus.
2721 * This function simply emits the 'do-latency' signal so any custom latency
2722 * calculations will be performed.
2724 * Returns: %TRUE if the latency could be queried and reconfigured.
2727 gst_bin_recalculate_latency (GstBin * bin)
2731 g_signal_emit (bin, gst_bin_signals[DO_LATENCY], 0, &res);
2732 GST_DEBUG_OBJECT (bin, "latency returned %d", res);
2738 gst_bin_do_latency_func (GstBin * bin)
2741 GstElement *element;
2742 GstClockTime min_latency, max_latency;
2745 g_return_val_if_fail (GST_IS_BIN (bin), FALSE);
2747 element = GST_ELEMENT_CAST (bin);
2749 GST_DEBUG_OBJECT (element, "querying latency");
2751 query = gst_query_new_latency ();
2752 if ((res = gst_element_query (element, query))) {
2755 gst_query_parse_latency (query, &live, &min_latency, &max_latency);
2757 GST_DEBUG_OBJECT (element,
2758 "got min latency %" GST_TIME_FORMAT ", max latency %"
2759 GST_TIME_FORMAT ", live %d", GST_TIME_ARGS (min_latency),
2760 GST_TIME_ARGS (max_latency), live);
2762 if (max_latency < min_latency) {
2763 /* this is an impossible situation, some parts of the pipeline might not
2764 * work correctly. We post a warning for now. */
2765 GST_ELEMENT_WARNING (element, CORE, CLOCK, (NULL),
2766 ("Impossible to configure latency: max %" GST_TIME_FORMAT " < min %"
2767 GST_TIME_FORMAT ". Add queues or other buffering elements.",
2768 GST_TIME_ARGS (max_latency), GST_TIME_ARGS (min_latency)));
2771 /* configure latency on elements */
2772 res = gst_element_send_event (element, gst_event_new_latency (min_latency));
2774 GST_INFO_OBJECT (element, "configured latency of %" GST_TIME_FORMAT,
2775 GST_TIME_ARGS (min_latency));
2777 GST_WARNING_OBJECT (element,
2778 "did not really configure latency of %" GST_TIME_FORMAT,
2779 GST_TIME_ARGS (min_latency));
2782 /* this is not a real problem, we just don't configure any latency. */
2783 GST_WARNING_OBJECT (element, "failed to query latency");
2785 gst_query_unref (query);
2791 gst_bin_post_message (GstElement * element, GstMessage * msg)
2793 GstElementClass *pklass = (GstElementClass *) parent_class;
2796 ret = pklass->post_message (element, gst_message_ref (msg));
2798 if (GST_MESSAGE_TYPE (msg) == GST_MESSAGE_STATE_CHANGED &&
2799 GST_MESSAGE_SRC (msg) == GST_OBJECT_CAST (element)) {
2800 GstState newstate, pending;
2802 gst_message_parse_state_changed (msg, NULL, &newstate, &pending);
2803 if (newstate == GST_STATE_PLAYING && pending == GST_STATE_VOID_PENDING) {
2804 GST_BIN_CAST (element)->priv->posted_playing = TRUE;
2805 bin_do_eos (GST_BIN_CAST (element));
2807 GST_BIN_CAST (element)->priv->posted_playing = FALSE;
2811 gst_message_unref (msg);
2817 reset_state (const GValue * data, gpointer user_data)
2819 GstElement *e = g_value_get_object (data);
2820 GstState state = GPOINTER_TO_INT (user_data);
2822 if (gst_element_set_state (e, state) == GST_STATE_CHANGE_FAILURE)
2823 GST_WARNING_OBJECT (e, "Failed to switch back down to %s",
2824 gst_element_state_get_name (state));
2827 static GstStateChangeReturn
2828 gst_bin_change_state_func (GstElement * element, GstStateChange transition)
2831 GstStateChangeReturn ret;
2832 GstState current, next;
2833 gboolean have_async;
2834 gboolean have_no_preroll;
2835 GstClockTime base_time, start_time;
2838 GValue data = { 0, };
2840 /* we don't need to take the STATE_LOCK, it is already taken */
2841 current = (GstState) GST_STATE_TRANSITION_CURRENT (transition);
2842 next = (GstState) GST_STATE_TRANSITION_NEXT (transition);
2844 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2845 "changing state of children from %s to %s",
2846 gst_element_state_get_name (current), gst_element_state_get_name (next));
2848 bin = GST_BIN_CAST (element);
2851 case GST_STATE_PLAYING:
2853 gboolean toplevel, asynchandling;
2855 GST_OBJECT_LOCK (bin);
2856 toplevel = BIN_IS_TOPLEVEL (bin);
2857 asynchandling = bin->priv->asynchandling;
2858 GST_OBJECT_UNLOCK (bin);
2861 gst_bin_recalculate_latency (bin);
2863 gst_element_post_message (element,
2864 gst_message_new_latency (GST_OBJECT_CAST (element)));
2867 case GST_STATE_PAUSED:
2868 /* Clear EOS list on next PAUSED */
2869 GST_OBJECT_LOCK (bin);
2870 GST_DEBUG_OBJECT (element, "clearing EOS elements");
2871 bin_remove_messages (bin, NULL, GST_MESSAGE_EOS);
2872 bin->priv->posted_eos = FALSE;
2873 if (current == GST_STATE_READY)
2874 bin_remove_messages (bin, NULL, GST_MESSAGE_STREAM_START);
2875 GST_OBJECT_UNLOCK (bin);
2876 if (current == GST_STATE_READY)
2877 if (!(gst_bin_src_pads_activate (bin, TRUE)))
2878 goto activate_failure;
2880 case GST_STATE_READY:
2881 /* Clear message list on next READY */
2882 GST_OBJECT_LOCK (bin);
2883 GST_DEBUG_OBJECT (element, "clearing all cached messages");
2884 bin_remove_messages (bin, NULL, GST_MESSAGE_ANY);
2885 GST_OBJECT_UNLOCK (bin);
2886 /* We might not have reached PAUSED yet due to async errors,
2887 * make sure to always deactivate the pads nonetheless */
2888 if (!(gst_bin_src_pads_activate (bin, FALSE)))
2889 goto activate_failure;
2891 case GST_STATE_NULL:
2892 /* Clear message list on next NULL */
2893 GST_OBJECT_LOCK (bin);
2894 GST_DEBUG_OBJECT (element, "clearing all cached messages");
2895 bin_remove_messages (bin, NULL, GST_MESSAGE_ANY);
2896 GST_OBJECT_UNLOCK (bin);
2897 if (current == GST_STATE_READY) {
2898 if (!(gst_bin_src_pads_activate (bin, FALSE)))
2899 goto activate_failure;
2906 /* this flag is used to make the async state changes return immediately. We
2907 * don't want them to interfere with this state change */
2908 GST_OBJECT_LOCK (bin);
2909 bin->polling = TRUE;
2910 GST_OBJECT_UNLOCK (bin);
2912 /* iterate in state change order */
2913 it = gst_bin_iterate_sorted (bin);
2915 /* mark if we've seen an ASYNC element in the bin when we did a state change.
2916 * Note how we don't reset this value when a resync happens, the reason being
2917 * that the async element posted ASYNC_START and we want to post ASYNC_DONE
2918 * even after a resync when the async element is gone */
2922 /* take base_time */
2923 base_time = gst_element_get_base_time (element);
2924 start_time = gst_element_get_start_time (element);
2926 have_no_preroll = FALSE;
2930 switch (gst_iterator_next (it, &data)) {
2931 case GST_ITERATOR_OK:
2935 child = g_value_get_object (&data);
2937 /* set state and base_time now */
2938 ret = gst_bin_element_set_state (bin, child, base_time, start_time,
2942 case GST_STATE_CHANGE_SUCCESS:
2943 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2944 "child '%s' changed state to %d(%s) successfully",
2945 GST_ELEMENT_NAME (child), next,
2946 gst_element_state_get_name (next));
2948 case GST_STATE_CHANGE_ASYNC:
2950 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2951 "child '%s' is changing state asynchronously to %s",
2952 GST_ELEMENT_NAME (child), gst_element_state_get_name (next));
2956 case GST_STATE_CHANGE_FAILURE:{
2959 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2960 "child '%s' failed to go to state %d(%s)",
2961 GST_ELEMENT_NAME (child),
2962 next, gst_element_state_get_name (next));
2964 /* Only fail if the child is still inside
2965 * this bin. It might've been removed already
2966 * because of the error by the bin subclass
2967 * to ignore the error. */
2968 parent = gst_object_get_parent (GST_OBJECT_CAST (child));
2969 if (parent == GST_OBJECT_CAST (element)) {
2970 /* element is still in bin, really error now */
2971 gst_object_unref (parent);
2974 /* child removed from bin, let the resync code redo the state
2976 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2977 "child '%s' was removed from the bin",
2978 GST_ELEMENT_NAME (child));
2981 gst_object_unref (parent);
2985 case GST_STATE_CHANGE_NO_PREROLL:
2986 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2987 "child '%s' changed state to %d(%s) successfully without preroll",
2988 GST_ELEMENT_NAME (child), next,
2989 gst_element_state_get_name (next));
2990 have_no_preroll = TRUE;
2993 g_assert_not_reached ();
2996 g_value_reset (&data);
2999 case GST_ITERATOR_RESYNC:
3000 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "iterator doing resync");
3001 gst_iterator_resync (it);
3004 case GST_ITERATOR_DONE:
3005 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "iterator done");
3011 ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
3012 if (G_UNLIKELY (ret == GST_STATE_CHANGE_FAILURE))
3015 if (have_no_preroll) {
3016 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
3017 "we have NO_PREROLL elements %s -> NO_PREROLL",
3018 gst_element_state_change_return_get_name (ret));
3019 ret = GST_STATE_CHANGE_NO_PREROLL;
3020 } else if (have_async) {
3021 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
3022 "we have ASYNC elements %s -> ASYNC",
3023 gst_element_state_change_return_get_name (ret));
3024 ret = GST_STATE_CHANGE_ASYNC;
3028 g_value_unset (&data);
3029 gst_iterator_free (it);
3031 GST_OBJECT_LOCK (bin);
3032 bin->polling = FALSE;
3033 /* it's possible that we did not get ASYNC from the children while the bin is
3034 * simulating ASYNC behaviour by posting an ASYNC_DONE message on the bus with
3035 * itself as the source. In that case we still want to check if the state
3036 * change completed. */
3037 if (ret != GST_STATE_CHANGE_ASYNC && !bin->priv->pending_async_done) {
3038 /* no element returned ASYNC and there are no pending async_done messages,
3039 * we can just complete. */
3040 GST_DEBUG_OBJECT (bin, "no async elements");
3043 /* when we get here an ASYNC element was found */
3044 if (GST_STATE_TARGET (bin) <= GST_STATE_READY) {
3045 /* we ignore ASYNC state changes when we go to READY or NULL */
3046 GST_DEBUG_OBJECT (bin, "target state %s <= READY",
3047 gst_element_state_get_name (GST_STATE_TARGET (bin)));
3051 GST_DEBUG_OBJECT (bin, "check async elements");
3052 /* check if all elements managed to commit their state already */
3053 if (!find_message (bin, NULL, GST_MESSAGE_ASYNC_START)) {
3054 /* nothing found, remove all old ASYNC_DONE messages. This can happen when
3055 * all the elements commited their state while we were doing the state
3056 * change. We will still return ASYNC for consistency but we commit the
3057 * state already so that a _get_state() will return immediately. */
3058 bin_remove_messages (bin, NULL, GST_MESSAGE_ASYNC_DONE);
3060 GST_DEBUG_OBJECT (bin, "async elements commited");
3061 bin_handle_async_done (bin, GST_STATE_CHANGE_SUCCESS, FALSE,
3062 GST_CLOCK_TIME_NONE);
3066 bin->priv->pending_async_done = FALSE;
3067 GST_OBJECT_UNLOCK (bin);
3069 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
3070 "done changing bin's state from %s to %s, now in %s, ret %s",
3071 gst_element_state_get_name (current),
3072 gst_element_state_get_name (next),
3073 gst_element_state_get_name (GST_STATE (element)),
3074 gst_element_state_change_return_get_name (ret));
3081 GST_CAT_WARNING_OBJECT (GST_CAT_STATES, element,
3082 "failure (de)activating src pads");
3083 return GST_STATE_CHANGE_FAILURE;
3088 if (current < next) {
3089 GstIterator *it = gst_bin_iterate_sorted (GST_BIN (element));
3090 GstIteratorResult ret;
3092 GST_DEBUG_OBJECT (element,
3093 "Bin failed to change state, switching children back to %s",
3094 gst_element_state_get_name (current));
3097 gst_iterator_foreach (it, &reset_state, GINT_TO_POINTER (current));
3098 if (ret != GST_ITERATOR_RESYNC)
3100 gst_iterator_resync (it);
3102 gst_iterator_free (it);
3109 * This function is a utility event handler. It will send the event to all sinks
3110 * or sources and appropriate ghost pads depending on the event-direction.
3112 * Applications are free to override this behaviour and implement their own
3113 * handler, but this will work for pretty much all cases in practice.
3116 gst_bin_send_event (GstElement * element, GstEvent * event)
3118 GstBin *bin = GST_BIN_CAST (element);
3120 gboolean res = TRUE;
3121 gboolean done = FALSE;
3122 GValue data = { 0, };
3124 if (GST_EVENT_IS_DOWNSTREAM (event)) {
3125 iter = gst_bin_iterate_sources (bin);
3126 GST_DEBUG_OBJECT (bin, "Sending %s event to src children",
3127 GST_EVENT_TYPE_NAME (event));
3129 iter = gst_bin_iterate_sinks (bin);
3130 GST_DEBUG_OBJECT (bin, "Sending %s event to sink children",
3131 GST_EVENT_TYPE_NAME (event));
3135 switch (gst_iterator_next (iter, &data)) {
3136 case GST_ITERATOR_OK:
3138 GstElement *child = g_value_get_object (&data);
3140 gst_event_ref (event);
3141 res &= gst_element_send_event (child, event);
3143 GST_LOG_OBJECT (child, "After handling %s event: %d",
3144 GST_EVENT_TYPE_NAME (event), res);
3146 g_value_reset (&data);
3149 case GST_ITERATOR_RESYNC:
3150 gst_iterator_resync (iter);
3153 case GST_ITERATOR_DONE:
3156 case GST_ITERATOR_ERROR:
3157 g_assert_not_reached ();
3161 g_value_unset (&data);
3162 gst_iterator_free (iter);
3164 if (GST_EVENT_IS_DOWNSTREAM (event)) {
3165 iter = gst_element_iterate_sink_pads (GST_ELEMENT (bin));
3166 GST_DEBUG_OBJECT (bin, "Sending %s event to sink pads",
3167 GST_EVENT_TYPE_NAME (event));
3169 iter = gst_element_iterate_src_pads (GST_ELEMENT (bin));
3170 GST_DEBUG_OBJECT (bin, "Sending %s event to src pads",
3171 GST_EVENT_TYPE_NAME (event));
3176 switch (gst_iterator_next (iter, &data)) {
3177 case GST_ITERATOR_OK:
3179 GstPad *pad = g_value_get_object (&data);
3181 gst_event_ref (event);
3182 res &= gst_pad_send_event (pad, event);
3183 GST_LOG_OBJECT (pad, "After handling %s event: %d",
3184 GST_EVENT_TYPE_NAME (event), res);
3187 case GST_ITERATOR_RESYNC:
3188 gst_iterator_resync (iter);
3191 case GST_ITERATOR_DONE:
3194 case GST_ITERATOR_ERROR:
3195 g_assert_not_reached ();
3200 g_value_unset (&data);
3201 gst_iterator_free (iter);
3202 gst_event_unref (event);
3207 /* this is the function called by the threadpool. When async elements commit
3208 * their state, this function will attempt to bring the bin to the next state.
3211 gst_bin_continue_func (GstBin * bin, BinContinueData * data)
3213 GstState current, next, pending;
3214 GstStateChange transition;
3216 pending = data->pending;
3218 GST_DEBUG_OBJECT (bin, "waiting for state lock");
3219 GST_STATE_LOCK (bin);
3221 GST_DEBUG_OBJECT (bin, "doing state continue");
3222 GST_OBJECT_LOCK (bin);
3224 /* if a new state change happened after this thread was scheduled, we return
3226 if (data->cookie != GST_ELEMENT_CAST (bin)->state_cookie)
3229 current = GST_STATE (bin);
3230 next = GST_STATE_GET_NEXT (current, pending);
3231 transition = (GstStateChange) GST_STATE_TRANSITION (current, next);
3233 GST_STATE_NEXT (bin) = next;
3234 GST_STATE_PENDING (bin) = pending;
3236 GST_STATE_RETURN (bin) = GST_STATE_CHANGE_ASYNC;
3237 GST_OBJECT_UNLOCK (bin);
3239 GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
3240 "continue state change %s to %s, final %s",
3241 gst_element_state_get_name (current),
3242 gst_element_state_get_name (next), gst_element_state_get_name (pending));
3244 gst_element_change_state (GST_ELEMENT_CAST (bin), transition);
3246 GST_STATE_UNLOCK (bin);
3247 GST_DEBUG_OBJECT (bin, "state continue done");
3253 GST_OBJECT_UNLOCK (bin);
3254 GST_STATE_UNLOCK (bin);
3255 GST_DEBUG_OBJECT (bin, "state continue aborted due to intervening change");
3260 static GstBusSyncReply
3261 bin_bus_handler (GstBus * bus, GstMessage * message, GstBin * bin)
3263 GstBinClass *bclass;
3265 bclass = GST_BIN_GET_CLASS (bin);
3266 if (bclass->handle_message)
3267 bclass->handle_message (bin, message);
3269 gst_message_unref (message);
3271 return GST_BUS_DROP;
3275 free_bin_continue_data (BinContinueData * data)
3277 g_slice_free (BinContinueData, data);
3281 bin_push_state_continue (GstBin * bin, BinContinueData * data)
3283 GST_DEBUG_OBJECT (bin, "pushing continue on thread pool");
3284 gst_element_call_async (GST_ELEMENT_CAST (bin),
3285 (GstElementCallAsyncFunc) gst_bin_continue_func, data,
3286 (GDestroyNotify) free_bin_continue_data);
3289 /* an element started an async state change, if we were not busy with a state
3290 * change, we perform a lost state.
3291 * This function is called with the OBJECT lock.
3294 bin_handle_async_start (GstBin * bin)
3296 GstState old_state, new_state;
3298 GstMessage *amessage = NULL;
3300 if (GST_STATE_RETURN (bin) == GST_STATE_CHANGE_FAILURE)
3303 /* get our toplevel state */
3304 toplevel = BIN_IS_TOPLEVEL (bin);
3306 /* prepare an ASYNC_START message, we always post the start message even if we
3307 * are busy with a state change or when we are NO_PREROLL. */
3309 /* non toplevel bin, prepare async-start for the parent */
3310 amessage = gst_message_new_async_start (GST_OBJECT_CAST (bin));
3312 if (bin->polling || GST_STATE_PENDING (bin) != GST_STATE_VOID_PENDING)
3315 /* async starts are ignored when we are NO_PREROLL */
3316 if (GST_STATE_RETURN (bin) == GST_STATE_CHANGE_NO_PREROLL)
3317 goto was_no_preroll;
3319 old_state = GST_STATE (bin);
3321 /* when we PLAYING we go back to PAUSED, when preroll happens, we go back to
3322 * PLAYING after optionally redistributing the base_time. */
3323 if (old_state > GST_STATE_PAUSED)
3324 new_state = GST_STATE_PAUSED;
3326 new_state = old_state;
3328 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
3329 "lost state of %s, new %s", gst_element_state_get_name (old_state),
3330 gst_element_state_get_name (new_state));
3332 GST_STATE (bin) = new_state;
3333 GST_STATE_NEXT (bin) = new_state;
3334 GST_STATE_PENDING (bin) = new_state;
3335 GST_STATE_RETURN (bin) = GST_STATE_CHANGE_ASYNC;
3336 GST_OBJECT_UNLOCK (bin);
3339 _priv_gst_element_state_changed (GST_ELEMENT_CAST (bin), new_state, new_state,
3344 /* post our ASYNC_START. */
3345 GST_DEBUG_OBJECT (bin, "posting ASYNC_START to parent");
3346 gst_element_post_message (GST_ELEMENT_CAST (bin), amessage);
3348 GST_OBJECT_LOCK (bin);
3354 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "we had an error");
3359 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "state change busy");
3360 GST_OBJECT_UNLOCK (bin);
3365 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "ignoring, we are NO_PREROLL");
3366 GST_OBJECT_UNLOCK (bin);
3371 /* this function is called when there are no more async elements in the bin. We
3372 * post a state changed message and an ASYNC_DONE message.
3373 * This function is called with the OBJECT lock.
3376 bin_handle_async_done (GstBin * bin, GstStateChangeReturn ret,
3377 gboolean flag_pending, GstClockTime running_time)
3379 GstState current, pending, target;
3380 GstStateChangeReturn old_ret;
3381 GstState old_state, old_next;
3382 gboolean toplevel, state_changed = FALSE;
3383 GstMessage *amessage = NULL;
3384 BinContinueData *cont = NULL;
3386 if (GST_STATE_RETURN (bin) == GST_STATE_CHANGE_FAILURE)
3389 pending = GST_STATE_PENDING (bin);
3394 /* check if there is something to commit */
3395 if (pending == GST_STATE_VOID_PENDING)
3396 goto nothing_pending;
3398 old_ret = GST_STATE_RETURN (bin);
3399 GST_STATE_RETURN (bin) = ret;
3401 /* move to the next target state */
3402 target = GST_STATE_TARGET (bin);
3403 pending = GST_STATE_PENDING (bin) = target;
3405 amessage = gst_message_new_async_done (GST_OBJECT_CAST (bin), running_time);
3407 old_state = GST_STATE (bin);
3408 /* this is the state we should go to next */
3409 old_next = GST_STATE_NEXT (bin);
3411 if (old_next != GST_STATE_PLAYING) {
3412 GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
3413 "committing state from %s to %s, old pending %s",
3414 gst_element_state_get_name (old_state),
3415 gst_element_state_get_name (old_next),
3416 gst_element_state_get_name (pending));
3418 /* update current state */
3419 current = GST_STATE (bin) = old_next;
3421 GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
3422 "setting state from %s to %s, pending %s",
3423 gst_element_state_get_name (old_state),
3424 gst_element_state_get_name (old_state),
3425 gst_element_state_get_name (pending));
3426 current = old_state;
3429 /* get our toplevel state */
3430 toplevel = BIN_IS_TOPLEVEL (bin);
3432 /* see if we reached the final state. If we are not toplevel, we also have to
3433 * stop here, the parent will continue our state. */
3434 if ((pending == current) || !toplevel) {
3435 GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
3436 "completed state change, pending VOID");
3438 /* mark VOID pending */
3439 pending = GST_STATE_VOID_PENDING;
3440 GST_STATE_PENDING (bin) = pending;
3441 GST_STATE_NEXT (bin) = GST_STATE_VOID_PENDING;
3443 GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
3444 "continue state change, pending %s",
3445 gst_element_state_get_name (pending));
3447 cont = g_slice_new (BinContinueData);
3449 /* cookie to detect concurrent state change */
3450 cont->cookie = GST_ELEMENT_CAST (bin)->state_cookie;
3451 /* pending target state */
3452 cont->pending = pending;
3454 GST_STATE_RETURN (bin) = GST_STATE_CHANGE_ASYNC;
3455 GST_STATE_NEXT (bin) = GST_STATE_GET_NEXT (old_state, pending);
3458 if (old_next != GST_STATE_PLAYING) {
3459 if (old_state != old_next || old_ret == GST_STATE_CHANGE_ASYNC) {
3460 state_changed = TRUE;
3463 GST_OBJECT_UNLOCK (bin);
3465 if (state_changed) {
3466 _priv_gst_element_state_changed (GST_ELEMENT_CAST (bin), old_state,
3470 /* post our combined ASYNC_DONE when all is ASYNC_DONE. */
3471 GST_DEBUG_OBJECT (bin, "posting ASYNC_DONE to parent");
3472 gst_element_post_message (GST_ELEMENT_CAST (bin), amessage);
3475 GST_OBJECT_LOCK (bin);
3477 /* toplevel, start continue state */
3478 GST_DEBUG_OBJECT (bin, "all async-done, starting state continue");
3479 bin_push_state_continue (bin, cont);
3481 GST_DEBUG_OBJECT (bin, "state change complete");
3482 GST_STATE_BROADCAST (bin);
3488 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "we had an error");
3493 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "state change busy");
3494 /* if we were busy with a state change and we are requested to flag a
3495 * pending async done, we do so here */
3497 bin->priv->pending_async_done = TRUE;
3502 GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin, "nothing pending");
3508 bin_do_eos (GstBin * bin)
3513 GST_OBJECT_LOCK (bin);
3514 /* If all sinks are EOS, we're in PLAYING and no state change is pending
3515 * (or we're doing playing to playing and noone else will trigger posting
3516 * EOS for us) we forward the EOS message to the parent bin or application
3518 eos = GST_STATE (bin) == GST_STATE_PLAYING
3519 && (GST_STATE_PENDING (bin) == GST_STATE_VOID_PENDING ||
3520 GST_STATE_PENDING (bin) == GST_STATE_PLAYING)
3521 && bin->priv->posted_playing && is_eos (bin, &seqnum);
3522 GST_OBJECT_UNLOCK (bin);
3525 && g_atomic_int_compare_and_exchange (&bin->priv->posted_eos, FALSE,
3527 GstMessage *tmessage;
3529 /* Clear out any further messages, and reset posted_eos so we can
3530 detect any new EOS that happens (eg, after a seek). Since all
3531 sinks have now posted an EOS, there will be no further EOS events
3532 seen unless there is a new logical EOS */
3533 GST_OBJECT_LOCK (bin);
3534 bin_remove_messages (bin, NULL, GST_MESSAGE_EOS);
3535 bin->priv->posted_eos = FALSE;
3536 GST_OBJECT_UNLOCK (bin);
3538 tmessage = gst_message_new_eos (GST_OBJECT_CAST (bin));
3539 gst_message_set_seqnum (tmessage, seqnum);
3540 GST_DEBUG_OBJECT (bin,
3541 "all sinks posted EOS, posting seqnum #%" G_GUINT32_FORMAT, seqnum);
3542 gst_element_post_message (GST_ELEMENT_CAST (bin), tmessage);
3544 GST_LOG_OBJECT (bin, "Not forwarding EOS due to in progress state change, "
3545 " or already posted, or waiting for more EOS");
3550 bin_do_stream_start (GstBin * bin)
3553 gboolean stream_start;
3554 gboolean have_group_id = FALSE;
3557 GST_OBJECT_LOCK (bin);
3558 /* If all sinks are STREAM_START we forward the STREAM_START message
3559 * to the parent bin or application
3561 stream_start = is_stream_start (bin, &seqnum, &have_group_id, &group_id);
3562 GST_OBJECT_UNLOCK (bin);
3565 GstMessage *tmessage;
3567 GST_OBJECT_LOCK (bin);
3568 bin_remove_messages (bin, NULL, GST_MESSAGE_STREAM_START);
3569 GST_OBJECT_UNLOCK (bin);
3571 tmessage = gst_message_new_stream_start (GST_OBJECT_CAST (bin));
3572 gst_message_set_seqnum (tmessage, seqnum);
3574 gst_message_set_group_id (tmessage, group_id);
3576 GST_DEBUG_OBJECT (bin,
3577 "all sinks posted STREAM_START, posting seqnum #%" G_GUINT32_FORMAT,
3579 gst_element_post_message (GST_ELEMENT_CAST (bin), tmessage);
3583 /* must be called without the object lock as it posts messages */
3585 bin_do_message_forward (GstBin * bin, GstMessage * message)
3587 if (bin->priv->message_forward) {
3588 GstMessage *forwarded;
3590 GST_DEBUG_OBJECT (bin, "pass %s message upward",
3591 GST_MESSAGE_TYPE_NAME (message));
3593 /* we need to convert these messages to element messages so that our parent
3594 * bin can easily ignore them and so that the application can easily
3595 * distinguish between the internally forwarded and the real messages. */
3596 forwarded = gst_message_new_element (GST_OBJECT_CAST (bin),
3597 gst_structure_new ("GstBinForwarded",
3598 "message", GST_TYPE_MESSAGE, message, NULL));
3600 gst_element_post_message (GST_ELEMENT_CAST (bin), forwarded);
3605 gst_bin_update_context (GstBin * bin, GstContext * context)
3607 GST_OBJECT_LOCK (bin);
3608 gst_bin_update_context_unlocked (bin, context);
3609 GST_OBJECT_UNLOCK (bin);
3613 gst_bin_update_context_unlocked (GstBin * bin, GstContext * context)
3615 const gchar *context_type;
3616 GList *l, **contexts;
3618 contexts = &GST_ELEMENT_CAST (bin)->contexts;
3619 context_type = gst_context_get_context_type (context);
3621 GST_DEBUG_OBJECT (bin, "set context %p %" GST_PTR_FORMAT, context,
3622 gst_context_get_structure (context));
3623 for (l = *contexts; l; l = l->next) {
3624 GstContext *tmp = l->data;
3625 const gchar *tmp_type = gst_context_get_context_type (tmp);
3627 /* Always store newest context but never replace
3628 * a persistent one by a non-persistent one */
3629 if (strcmp (context_type, tmp_type) == 0 &&
3630 (gst_context_is_persistent (context) ||
3631 !gst_context_is_persistent (tmp))) {
3632 gst_context_replace ((GstContext **) & l->data, context);
3636 /* Not found? Add */
3638 *contexts = g_list_prepend (*contexts, gst_context_ref (context));
3642 /* handle child messages:
3644 * This method is called synchronously when a child posts a message on
3647 * GST_MESSAGE_EOS: This message is only posted by sinks
3648 * in the PLAYING state. If all sinks posted the EOS message, post
3651 * GST_MESSAGE_STATE_DIRTY: Deprecated
3653 * GST_MESSAGE_SEGMENT_START: just collect, never forward upwards. If an
3654 * element posts segment_start twice, only the last message is kept.
3656 * GST_MESSAGE_SEGMENT_DONE: replace SEGMENT_START message from same poster
3657 * with the segment_done message. If there are no more segment_start
3658 * messages, post segment_done message upwards.
3660 * GST_MESSAGE_DURATION_CHANGED: clear any cached durations.
3661 * Whenever someone performs a duration query on the bin, we store the
3662 * result so we can answer it quicker the next time. Any element that
3663 * changes its duration marks our cached values invalid.
3664 * This message is also posted upwards. This is currently disabled
3665 * because too many elements don't post DURATION_CHANGED messages when
3666 * the duration changes.
3668 * GST_MESSAGE_CLOCK_LOST: This message is posted by an element when it
3669 * can no longer provide a clock. The default bin behaviour is to
3670 * check if the lost clock was the one provided by the bin. If so and
3671 * we are currently in the PLAYING state, we forward the message to
3673 * This message is also generated when we remove a clock provider from
3674 * a bin. If this message is received by the application, it should
3675 * PAUSE the pipeline and set it back to PLAYING to force a new clock
3676 * and a new base_time distribution.
3678 * GST_MESSAGE_CLOCK_PROVIDE: This message is generated when an element
3679 * can provide a clock. This mostly happens when we add a new clock
3680 * provider to the bin. The default behaviour of the bin is to mark the
3681 * currently selected clock as dirty, which will perform a clock
3682 * recalculation the next time we are asked to provide a clock.
3683 * This message is never sent to the application but is forwarded to
3686 * GST_MESSAGE_ASYNC_START: Create an internal ELEMENT message that stores
3687 * the state of the element and the fact that the element will need a
3688 * new base_time. This message is not forwarded to the application.
3690 * GST_MESSAGE_ASYNC_DONE: Find the internal ELEMENT message we kept for the
3691 * element when it posted ASYNC_START. If all elements are done, post a
3692 * ASYNC_DONE message to the parent.
3694 * OTHER: post upwards.
3697 gst_bin_handle_message_func (GstBin * bin, GstMessage * message)
3700 GstMessageType type;
3701 GstMessage *tmessage;
3704 src = GST_MESSAGE_SRC (message);
3705 type = GST_MESSAGE_TYPE (message);
3707 GST_DEBUG_OBJECT (bin, "[msg %p] handling child %s message of type %s",
3708 message, src ? GST_ELEMENT_NAME (src) : "(NULL)",
3709 GST_MESSAGE_TYPE_NAME (message));
3712 case GST_MESSAGE_ERROR:
3714 GST_OBJECT_LOCK (bin);
3716 GST_DEBUG_OBJECT (bin, "got ERROR message, unlocking state change");
3717 GST_STATE_RETURN (bin) = GST_STATE_CHANGE_FAILURE;
3718 GST_STATE_BROADCAST (bin);
3719 GST_OBJECT_UNLOCK (bin);
3723 case GST_MESSAGE_EOS:
3726 /* collect all eos messages from the children */
3727 bin_do_message_forward (bin, message);
3728 GST_OBJECT_LOCK (bin);
3729 /* ref message for future use */
3730 bin_replace_message (bin, message, GST_MESSAGE_EOS);
3731 GST_OBJECT_UNLOCK (bin);
3736 case GST_MESSAGE_STREAM_START:
3739 /* collect all stream_start messages from the children */
3740 GST_OBJECT_LOCK (bin);
3741 /* ref message for future use */
3742 bin_replace_message (bin, message, GST_MESSAGE_STREAM_START);
3743 GST_OBJECT_UNLOCK (bin);
3745 bin_do_stream_start (bin);
3748 case GST_MESSAGE_STATE_DIRTY:
3750 GST_WARNING_OBJECT (bin, "received deprecated STATE_DIRTY message");
3753 gst_message_unref (message);
3756 case GST_MESSAGE_SEGMENT_START:{
3757 gboolean post = FALSE;
3761 gst_message_parse_segment_start (message, &format, &position);
3762 seqnum = gst_message_get_seqnum (message);
3764 bin_do_message_forward (bin, message);
3766 GST_OBJECT_LOCK (bin);
3767 /* if this is the first segment-start, post to parent but not to the
3769 if (!find_message (bin, NULL, GST_MESSAGE_SEGMENT_START) &&
3770 (GST_OBJECT_PARENT (bin) != NULL)) {
3773 /* replace any previous segment_start message from this source
3774 * with the new segment start message */
3775 bin_replace_message (bin, message, GST_MESSAGE_SEGMENT_START);
3776 GST_OBJECT_UNLOCK (bin);
3778 tmessage = gst_message_new_segment_start (GST_OBJECT_CAST (bin),
3780 gst_message_set_seqnum (tmessage, seqnum);
3782 /* post segment start with initial format and position. */
3783 GST_DEBUG_OBJECT (bin, "posting SEGMENT_START (%u) bus message: %p",
3785 gst_element_post_message (GST_ELEMENT_CAST (bin), tmessage);
3789 case GST_MESSAGE_SEGMENT_DONE:
3791 gboolean post = FALSE;
3795 gst_message_parse_segment_done (message, &format, &position);
3796 seqnum = gst_message_get_seqnum (message);
3798 bin_do_message_forward (bin, message);
3800 GST_OBJECT_LOCK (bin);
3801 bin_replace_message (bin, message, GST_MESSAGE_SEGMENT_START);
3802 /* if there are no more segment_start messages, everybody posted
3803 * a segment_done and we can post one on the bus. */
3805 /* we don't care who still has a pending segment start */
3806 if (!find_message (bin, NULL, GST_MESSAGE_SEGMENT_START)) {
3809 /* remove all old segment_done messages */
3810 bin_remove_messages (bin, NULL, GST_MESSAGE_SEGMENT_DONE);
3812 GST_OBJECT_UNLOCK (bin);
3814 tmessage = gst_message_new_segment_done (GST_OBJECT_CAST (bin),
3816 gst_message_set_seqnum (tmessage, seqnum);
3818 /* post segment done with latest format and position. */
3819 GST_DEBUG_OBJECT (bin, "posting SEGMENT_DONE (%u) bus message: %p",
3821 gst_element_post_message (GST_ELEMENT_CAST (bin), tmessage);
3825 case GST_MESSAGE_DURATION_CHANGED:
3827 /* FIXME: remove all cached durations, next time somebody asks
3828 * for duration, we will recalculate. */
3830 GST_OBJECT_LOCK (bin);
3831 bin_remove_messages (bin, NULL, GST_MESSAGE_DURATION_CHANGED);
3832 GST_OBJECT_UNLOCK (bin);
3836 case GST_MESSAGE_CLOCK_LOST:
3838 GstClock **provided_clock_p;
3839 GstElement **clock_provider_p;
3840 gboolean playing, toplevel, provided, forward;
3843 gst_message_parse_clock_lost (message, &clock);
3845 GST_OBJECT_LOCK (bin);
3846 bin->clock_dirty = TRUE;
3847 /* if we lost the clock that we provided, post to parent but
3848 * only if we are not a top-level bin or PLAYING.
3849 * The reason for this is that applications should be able
3850 * to PAUSE/PLAY if they receive this message without worrying
3851 * about the state of the pipeline. */
3852 provided = (clock == bin->provided_clock);
3853 playing = (GST_STATE (bin) == GST_STATE_PLAYING);
3854 toplevel = GST_OBJECT_PARENT (bin) == NULL;
3855 forward = provided && (playing || !toplevel);
3857 GST_DEBUG_OBJECT (bin,
3858 "Lost clock %" GST_PTR_FORMAT " provided by %" GST_PTR_FORMAT,
3859 bin->provided_clock, bin->clock_provider);
3860 provided_clock_p = &bin->provided_clock;
3861 clock_provider_p = &bin->clock_provider;
3862 gst_object_replace ((GstObject **) provided_clock_p, NULL);
3863 gst_object_replace ((GstObject **) clock_provider_p, NULL);
3865 GST_DEBUG_OBJECT (bin, "provided %d, playing %d, forward %d",
3866 provided, playing, forward);
3867 GST_OBJECT_UNLOCK (bin);
3873 gst_message_unref (message);
3876 case GST_MESSAGE_CLOCK_PROVIDE:
3880 GST_OBJECT_LOCK (bin);
3881 bin->clock_dirty = TRUE;
3882 /* a new clock is available, post to parent but not
3883 * to the application */
3884 forward = GST_OBJECT_PARENT (bin) != NULL;
3885 GST_OBJECT_UNLOCK (bin);
3891 gst_message_unref (message);
3894 case GST_MESSAGE_ASYNC_START:
3898 GST_DEBUG_OBJECT (bin, "ASYNC_START message %p, %s", message,
3899 src ? GST_OBJECT_NAME (src) : "(NULL)");
3901 bin_do_message_forward (bin, message);
3903 GST_OBJECT_LOCK (bin);
3904 /* we ignore the message if we are going to <= READY */
3905 if ((target = GST_STATE_TARGET (bin)) <= GST_STATE_READY)
3906 goto ignore_start_message;
3908 /* takes ownership of the message */
3909 bin_replace_message (bin, message, GST_MESSAGE_ASYNC_START);
3911 bin_handle_async_start (bin);
3912 GST_OBJECT_UNLOCK (bin);
3915 ignore_start_message:
3917 GST_DEBUG_OBJECT (bin, "ignoring message, target %s",
3918 gst_element_state_get_name (target));
3919 GST_OBJECT_UNLOCK (bin);
3920 gst_message_unref (message);
3924 case GST_MESSAGE_ASYNC_DONE:
3926 GstClockTime running_time;
3929 GST_DEBUG_OBJECT (bin, "ASYNC_DONE message %p, %s", message,
3930 src ? GST_OBJECT_NAME (src) : "(NULL)");
3932 gst_message_parse_async_done (message, &running_time);
3934 bin_do_message_forward (bin, message);
3936 GST_OBJECT_LOCK (bin);
3937 /* ignore messages if we are shutting down */
3938 if ((target = GST_STATE_TARGET (bin)) <= GST_STATE_READY)
3939 goto ignore_done_message;
3941 bin_replace_message (bin, message, GST_MESSAGE_ASYNC_START);
3942 /* if there are no more ASYNC_START messages, everybody posted
3943 * a ASYNC_DONE and we can post one on the bus. When checking, we
3944 * don't care who still has a pending ASYNC_START */
3945 if (!find_message (bin, NULL, GST_MESSAGE_ASYNC_START)) {
3946 /* nothing found, remove all old ASYNC_DONE messages */
3947 bin_remove_messages (bin, NULL, GST_MESSAGE_ASYNC_DONE);
3949 GST_DEBUG_OBJECT (bin, "async elements commited");
3950 /* when we get an async done message when a state change was busy, we
3951 * need to set the pending_done flag so that at the end of the state
3952 * change we can see if we need to verify pending async elements, hence
3953 * the TRUE argument here. */
3954 bin_handle_async_done (bin, GST_STATE_CHANGE_SUCCESS, TRUE,
3957 GST_DEBUG_OBJECT (bin, "there are more async elements pending");
3959 GST_OBJECT_UNLOCK (bin);
3962 ignore_done_message:
3964 GST_DEBUG_OBJECT (bin, "ignoring message, target %s",
3965 gst_element_state_get_name (target));
3966 GST_OBJECT_UNLOCK (bin);
3967 gst_message_unref (message);
3971 case GST_MESSAGE_STRUCTURE_CHANGE:
3975 gst_message_parse_structure_change (message, NULL, NULL, &busy);
3977 GST_OBJECT_LOCK (bin);
3979 /* while the pad is busy, avoid following it when doing state changes.
3980 * Don't update the cookie yet, we will do that after the structure
3981 * change finished and we are ready to inspect the new updated
3983 bin_replace_message (bin, message, GST_MESSAGE_STRUCTURE_CHANGE);
3986 /* a pad link/unlink ended, signal the state change iterator that we
3987 * need to resync by updating the structure_cookie. */
3988 bin_remove_messages (bin, GST_MESSAGE_SRC (message),
3989 GST_MESSAGE_STRUCTURE_CHANGE);
3990 if (!GST_BIN_IS_NO_RESYNC (bin))
3991 bin->priv->structure_cookie++;
3993 GST_OBJECT_UNLOCK (bin);
3996 gst_message_unref (message);
4000 case GST_MESSAGE_NEED_CONTEXT:{
4001 const gchar *context_type;
4002 GList *l, *contexts;
4004 gst_message_parse_context_type (message, &context_type);
4005 GST_OBJECT_LOCK (bin);
4006 contexts = GST_ELEMENT_CAST (bin)->contexts;
4007 GST_LOG_OBJECT (bin, "got need-context message type: %s", context_type);
4008 for (l = contexts; l; l = l->next) {
4009 GstContext *tmp = l->data;
4010 const gchar *tmp_type = gst_context_get_context_type (tmp);
4012 if (strcmp (context_type, tmp_type) == 0) {
4013 gst_element_set_context (GST_ELEMENT (src), l->data);
4017 GST_OBJECT_UNLOCK (bin);
4019 /* Forward if we couldn't answer the message */
4023 gst_message_unref (message);
4028 case GST_MESSAGE_HAVE_CONTEXT:{
4029 GstContext *context;
4031 gst_message_parse_have_context (message, &context);
4032 gst_bin_update_context (bin, context);
4033 gst_context_unref (context);
4045 /* Send all other messages upward */
4046 GST_DEBUG_OBJECT (bin, "posting message upward");
4047 gst_element_post_message (GST_ELEMENT_CAST (bin), message);
4052 /* generic struct passed to all query fold methods */
4061 typedef void (*QueryInitFunction) (GstBin * bin, QueryFold * fold);
4062 typedef void (*QueryDoneFunction) (GstBin * bin, QueryFold * fold);
4064 /* for duration/position we collect all durations/positions and take
4065 * the MAX of all valid results */
4067 bin_query_min_max_init (GstBin * bin, QueryFold * fold)
4075 bin_query_duration_fold (const GValue * vitem, GValue * ret, QueryFold * fold)
4077 gboolean res = FALSE;
4078 GstObject *item = g_value_get_object (vitem);
4079 if (GST_IS_PAD (item))
4080 res = gst_pad_query (GST_PAD (item), fold->query);
4082 res = gst_element_query (GST_ELEMENT (item), fold->query);
4087 g_value_set_boolean (ret, TRUE);
4089 gst_query_parse_duration (fold->query, NULL, &duration);
4091 GST_DEBUG_OBJECT (item, "got duration %" G_GINT64_FORMAT, duration);
4093 if (duration == -1) {
4094 /* duration query succeeded, but duration is unknown */
4099 if (duration > fold->max)
4100 fold->max = duration;
4107 bin_query_duration_done (GstBin * bin, QueryFold * fold)
4111 gst_query_parse_duration (fold->query, &format, NULL);
4112 /* store max in query result */
4113 gst_query_set_duration (fold->query, format, fold->max);
4115 GST_DEBUG_OBJECT (bin, "max duration %" G_GINT64_FORMAT, fold->max);
4117 /* FIXME: re-implement duration caching */
4120 GST_OBJECT_LOCK (bin);
4121 bin->messages = g_list_prepend (bin->messages,
4122 gst_message_new_duration (GST_OBJECT_CAST (bin), format, fold->max));
4123 GST_OBJECT_UNLOCK (bin);
4128 bin_query_position_fold (const GValue * vitem, GValue * ret, QueryFold * fold)
4130 gboolean res = FALSE;
4131 GstObject *item = g_value_get_object (vitem);
4132 if (GST_IS_PAD (item))
4133 res = gst_pad_query (GST_PAD (item), fold->query);
4135 res = gst_element_query (GST_ELEMENT (item), fold->query);
4140 g_value_set_boolean (ret, TRUE);
4142 gst_query_parse_position (fold->query, NULL, &position);
4144 GST_DEBUG_OBJECT (item, "got position %" G_GINT64_FORMAT, position);
4146 if (position > fold->max)
4147 fold->max = position;
4154 bin_query_position_done (GstBin * bin, QueryFold * fold)
4158 gst_query_parse_position (fold->query, &format, NULL);
4159 /* store max in query result */
4160 gst_query_set_position (fold->query, format, fold->max);
4162 GST_DEBUG_OBJECT (bin, "max position %" G_GINT64_FORMAT, fold->max);
4166 bin_query_latency_fold (const GValue * vitem, GValue * ret, QueryFold * fold)
4168 gboolean res = FALSE;
4169 GstObject *item = g_value_get_object (vitem);
4170 if (GST_IS_PAD (item))
4171 res = gst_pad_query (GST_PAD (item), fold->query);
4173 res = gst_element_query (GST_ELEMENT (item), fold->query);
4175 GstClockTime min, max;
4178 gst_query_parse_latency (fold->query, &live, &min, &max);
4180 GST_DEBUG_OBJECT (item,
4181 "got latency min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT
4182 ", live %d", GST_TIME_ARGS (min), GST_TIME_ARGS (max), live);
4184 /* for the combined latency we collect the MAX of all min latencies and
4185 * the MIN of all max latencies */
4187 if (min > fold->min)
4189 if (fold->max == -1)
4191 else if (max < fold->max)
4197 g_value_set_boolean (ret, FALSE);
4198 GST_DEBUG_OBJECT (item, "failed query");
4205 bin_query_latency_done (GstBin * bin, QueryFold * fold)
4207 /* store max in query result */
4208 gst_query_set_latency (fold->query, fold->live, fold->min, fold->max);
4210 GST_DEBUG_OBJECT (bin,
4211 "latency min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT
4212 ", live %d", GST_TIME_ARGS (fold->min), GST_TIME_ARGS (fold->max),
4216 /* generic fold, return first valid result */
4218 bin_query_generic_fold (const GValue * vitem, GValue * ret, QueryFold * fold)
4220 gboolean res = FALSE;
4221 GstObject *item = g_value_get_object (vitem);
4222 if (GST_IS_PAD (item))
4223 res = gst_pad_query (GST_PAD (item), fold->query);
4225 res = gst_element_query (GST_ELEMENT (item), fold->query);
4227 g_value_set_boolean (ret, TRUE);
4228 GST_DEBUG_OBJECT (item, "answered query %p", fold->query);
4231 /* and stop as soon as we have a valid result */
4235 /* Perform a query iteration for the given bin. The query is stored in
4236 * QueryFold and iter should be either a GstPad iterator or a
4237 * GstElement iterator. */
4239 bin_iterate_fold (GstBin * bin, GstIterator * iter, QueryInitFunction fold_init,
4240 QueryDoneFunction fold_done, GstIteratorFoldFunction fold_func,
4241 QueryFold * fold_data, gboolean default_return)
4243 gboolean res = default_return;
4245 /* set the result of the query to FALSE initially */
4246 g_value_init (&ret, G_TYPE_BOOLEAN);
4247 g_value_set_boolean (&ret, res);
4250 GstIteratorResult ires;
4252 ires = gst_iterator_fold (iter, fold_func, &ret, fold_data);
4255 case GST_ITERATOR_RESYNC:
4256 gst_iterator_resync (iter);
4258 fold_init (bin, fold_data);
4259 g_value_set_boolean (&ret, res);
4261 case GST_ITERATOR_OK:
4262 case GST_ITERATOR_DONE:
4263 res = g_value_get_boolean (&ret);
4264 if (fold_done != NULL && res)
4265 fold_done (bin, fold_data);
4277 gst_bin_query (GstElement * element, GstQuery * query)
4279 GstBin *bin = GST_BIN_CAST (element);
4281 gboolean default_return = FALSE;
4282 gboolean res = FALSE;
4283 gboolean src_pads_query_result = FALSE;
4284 GstIteratorFoldFunction fold_func;
4285 QueryInitFunction fold_init = NULL;
4286 QueryDoneFunction fold_done = NULL;
4287 QueryFold fold_data;
4289 switch (GST_QUERY_TYPE (query)) {
4290 case GST_QUERY_DURATION:
4292 /* FIXME: implement duration caching in GstBin again */
4297 gst_query_parse_duration (query, &qformat, NULL);
4299 /* find cached duration query */
4300 GST_OBJECT_LOCK (bin);
4301 for (cached = bin->messages; cached; cached = g_list_next (cached)) {
4302 GstMessage *message = (GstMessage *) cached->data;
4304 if (GST_MESSAGE_TYPE (message) == GST_MESSAGE_DURATION_CHANGED &&
4305 GST_MESSAGE_SRC (message) == GST_OBJECT_CAST (bin)) {
4309 gst_message_parse_duration (message, &format, &duration);
4311 /* if cached same format, copy duration in query result */
4312 if (format == qformat) {
4313 GST_DEBUG_OBJECT (bin, "return cached duration %" G_GINT64_FORMAT,
4315 GST_OBJECT_UNLOCK (bin);
4317 gst_query_set_duration (query, qformat, duration);
4323 GST_OBJECT_UNLOCK (bin);
4325 #ifndef GST_DISABLE_GST_DEBUG
4327 /* Quieten this particularly annoying FIXME a bit: */
4328 static gboolean printed_fixme = FALSE;
4329 if (!printed_fixme) {
4330 GST_FIXME ("implement duration caching in GstBin again");
4331 printed_fixme = TRUE;
4337 /* no cached value found, iterate and collect durations */
4338 fold_func = (GstIteratorFoldFunction) bin_query_duration_fold;
4339 fold_init = bin_query_min_max_init;
4340 fold_done = bin_query_duration_done;
4343 case GST_QUERY_POSITION:
4345 fold_func = (GstIteratorFoldFunction) bin_query_position_fold;
4346 fold_init = bin_query_min_max_init;
4347 fold_done = bin_query_position_done;
4350 case GST_QUERY_LATENCY:
4352 fold_func = (GstIteratorFoldFunction) bin_query_latency_fold;
4353 fold_init = bin_query_min_max_init;
4354 fold_done = bin_query_latency_done;
4355 default_return = TRUE;
4359 fold_func = (GstIteratorFoldFunction) bin_query_generic_fold;
4363 fold_data.query = query;
4365 iter = gst_bin_iterate_sinks (bin);
4366 GST_DEBUG_OBJECT (bin, "Sending query %p (type %s) to sink children",
4367 query, GST_QUERY_TYPE_NAME (query));
4370 fold_init (bin, &fold_data);
4373 bin_iterate_fold (bin, iter, fold_init, fold_done, fold_func, &fold_data,
4375 gst_iterator_free (iter);
4378 /* Query the source pads of the element */
4379 iter = gst_element_iterate_src_pads (element);
4380 src_pads_query_result =
4381 bin_iterate_fold (bin, iter, fold_init, fold_done, fold_func,
4382 &fold_data, default_return);
4383 gst_iterator_free (iter);
4385 if (src_pads_query_result)
4389 GST_DEBUG_OBJECT (bin, "query %p result %d", query, res);
4395 set_context (const GValue * item, gpointer user_data)
4397 GstElement *element = g_value_get_object (item);
4399 gst_element_set_context (element, user_data);
4403 gst_bin_set_context (GstElement * element, GstContext * context)
4406 GstIterator *children;
4408 g_return_if_fail (GST_IS_BIN (element));
4410 bin = GST_BIN (element);
4412 GST_ELEMENT_CLASS (parent_class)->set_context (element, context);
4414 children = gst_bin_iterate_elements (bin);
4415 while (gst_iterator_foreach (children, set_context,
4416 context) == GST_ITERATOR_RESYNC)
4417 gst_iterator_resync (children);
4418 gst_iterator_free (children);
4422 compare_name (const GValue * velement, const gchar * name)
4425 GstElement *element = g_value_get_object (velement);
4427 GST_OBJECT_LOCK (element);
4428 eq = strcmp (GST_ELEMENT_NAME (element), name);
4429 GST_OBJECT_UNLOCK (element);
4435 * gst_bin_get_by_name:
4437 * @name: the element name to search for
4439 * Gets the element with the given name from a bin. This
4440 * function recurses into child bins.
4442 * Returns %NULL if no element with the given name is found in the bin.
4444 * MT safe. Caller owns returned reference.
4446 * Returns: (transfer full) (nullable): the #GstElement with the given
4450 gst_bin_get_by_name (GstBin * bin, const gchar * name)
4452 GstIterator *children;
4453 GValue result = { 0, };
4454 GstElement *element;
4457 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
4459 GST_CAT_INFO (GST_CAT_PARENTAGE, "[%s]: looking up child element %s",
4460 GST_ELEMENT_NAME (bin), name);
4462 children = gst_bin_iterate_recurse (bin);
4463 found = gst_iterator_find_custom (children,
4464 (GCompareFunc) compare_name, &result, (gpointer) name);
4465 gst_iterator_free (children);
4468 element = g_value_dup_object (&result);
4469 g_value_unset (&result);
4478 * gst_bin_get_by_name_recurse_up:
4480 * @name: the element name to search for
4482 * Gets the element with the given name from this bin. If the
4483 * element is not found, a recursion is performed on the parent bin.
4486 * - no element with the given name is found in the bin
4488 * MT safe. Caller owns returned reference.
4490 * Returns: (transfer full) (nullable): the #GstElement with the given
4494 gst_bin_get_by_name_recurse_up (GstBin * bin, const gchar * name)
4498 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
4499 g_return_val_if_fail (name != NULL, NULL);
4501 result = gst_bin_get_by_name (bin, name);
4506 parent = gst_object_get_parent (GST_OBJECT_CAST (bin));
4508 if (GST_IS_BIN (parent)) {
4509 result = gst_bin_get_by_name_recurse_up (GST_BIN_CAST (parent), name);
4511 gst_object_unref (parent);
4519 compare_interface (const GValue * velement, GValue * interface)
4521 GstElement *element = g_value_get_object (velement);
4522 GType interface_type = (GType) g_value_get_pointer (interface);
4525 if (G_TYPE_CHECK_INSTANCE_TYPE (element, interface_type)) {
4534 * gst_bin_get_by_interface:
4536 * @iface: the #GType of an interface
4538 * Looks for an element inside the bin that implements the given
4539 * interface. If such an element is found, it returns the element.
4540 * You can cast this element to the given interface afterwards. If you want
4541 * all elements that implement the interface, use
4542 * gst_bin_iterate_all_by_interface(). This function recurses into child bins.
4544 * MT safe. Caller owns returned reference.
4546 * Returns: (transfer full): A #GstElement inside the bin implementing the interface
4549 gst_bin_get_by_interface (GstBin * bin, GType iface)
4551 GstIterator *children;
4552 GValue result = { 0, };
4553 GstElement *element;
4555 GValue viface = { 0, };
4557 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
4558 g_return_val_if_fail (G_TYPE_IS_INTERFACE (iface), NULL);
4560 g_value_init (&viface, G_TYPE_POINTER);
4561 g_value_set_pointer (&viface, (gpointer) iface);
4563 children = gst_bin_iterate_recurse (bin);
4564 found = gst_iterator_find_custom (children, (GCompareFunc) compare_interface,
4566 gst_iterator_free (children);
4569 element = g_value_dup_object (&result);
4570 g_value_unset (&result);
4574 g_value_unset (&viface);
4580 * gst_bin_iterate_all_by_interface:
4582 * @iface: the #GType of an interface
4584 * Looks for all elements inside the bin that implements the given
4585 * interface. You can safely cast all returned elements to the given interface.
4586 * The function recurses inside child bins. The iterator will yield a series
4587 * of #GstElement that should be unreffed after use.
4589 * MT safe. Caller owns returned value.
4591 * Returns: (transfer full) (nullable): a #GstIterator of #GstElement
4592 * for all elements in the bin implementing the given interface,
4596 gst_bin_iterate_all_by_interface (GstBin * bin, GType iface)
4598 GstIterator *children;
4599 GstIterator *result;
4600 GValue viface = { 0, };
4602 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
4603 g_return_val_if_fail (G_TYPE_IS_INTERFACE (iface), NULL);
4605 g_value_init (&viface, G_TYPE_POINTER);
4606 g_value_set_pointer (&viface, (gpointer) iface);
4608 children = gst_bin_iterate_recurse (bin);
4609 result = gst_iterator_filter (children, (GCompareFunc) compare_interface,
4612 g_value_unset (&viface);