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., 59 Temple Place - Suite 330,
21 * Boston, MA 02111-1307, USA.
28 * @short_description: Base class and element that can contain other elements
30 * #GstBin is an element that can contain other #GstElement, allowing them to be
32 * Pads from the child elements can be ghosted to the bin, see #GstGhostPad.
33 * This makes the bin look like any other elements and enables creation of
34 * higher-level abstraction elements.
36 * A new #GstBin is created with gst_bin_new(). Use a #GstPipeline instead if you
37 * want to create a toplevel bin because a normal bin doesn't have a bus or
38 * handle clock distribution of its own.
40 * After the bin has been created you will typically add elements to it with
41 * gst_bin_add(). You can remove elements with gst_bin_remove().
43 * An element can be retrieved from a bin with gst_bin_get_by_name(), using the
44 * elements name. gst_bin_get_by_name_recurse_up() is mainly used for internal
45 * purposes and will query the parent bins when the element is not found in the
48 * An iterator of elements in a bin can be retrieved with
49 * gst_bin_iterate_elements(). Various other iterators exist to retrieve the
52 * gst_object_unref() is used to drop your reference to the bin.
54 * The #GstBin::element-added signal is fired whenever a new element is added to
55 * the bin. Likewise the #GstBin::element-removed signal is fired whenever an
56 * element is removed from the bin.
58 * <refsect2><title>Notes</title>
60 * A #GstBin internally intercepts every #GstMessage posted by its children and
61 * implements the following default behaviour for each of them:
64 * <term>GST_MESSAGE_EOS</term>
65 * <listitem><para>This message is only posted by sinks in the PLAYING
66 * state. If all sinks posted the EOS message, this bin will post and EOS
67 * message upwards.</para></listitem>
70 * <term>GST_MESSAGE_SEGMENT_START</term>
71 * <listitem><para>just collected and never forwarded upwards.
72 * The messages are used to decide when all elements have completed playback
73 * of their segment.</para></listitem>
76 * <term>GST_MESSAGE_SEGMENT_DONE</term>
77 * <listitem><para> Is posted by #GstBin when all elements that posted
78 * a SEGMENT_START have posted a SEGMENT_DONE.</para></listitem>
81 * <term>GST_MESSAGE_DURATION</term>
82 * <listitem><para> Is posted by an element that detected a change
83 * in the stream duration. The default bin behaviour is to clear any
84 * cached duration values so that the next duration query will perform
85 * a full duration recalculation. The duration change is posted to the
86 * application so that it can refetch the new duration with a duration
87 * query. Note that these messages can be posted before the bin is
88 * prerolled, in which case the duration query might fail.
92 * <term>GST_MESSAGE_CLOCK_LOST</term>
93 * <listitem><para> This message is posted by an element when it
94 * can no longer provide a clock. The default bin behaviour is to
95 * check if the lost clock was the one provided by the bin. If so and
96 * the bin is currently in the PLAYING state, the message is forwarded to
98 * This message is also generated when a clock provider is removed from
99 * the bin. If this message is received by the application, it should
100 * PAUSE the pipeline and set it back to PLAYING to force a new clock
105 * <term>GST_MESSAGE_CLOCK_PROVIDE</term>
106 * <listitem><para> This message is generated when an element
107 * can provide a clock. This mostly happens when a new clock
108 * provider is added to the bin. The default behaviour of the bin is to
109 * mark the currently selected clock as dirty, which will perform a clock
110 * recalculation the next time the bin is asked to provide a clock.
111 * This message is never sent tot the application but is forwarded to
112 * the parent of the bin.
116 * <term>OTHERS</term>
117 * <listitem><para> posted upwards.</para></listitem>
122 * A #GstBin implements the following default behaviour for answering to a
126 * <term>GST_QUERY_DURATION</term>
127 * <listitem><para>If the query has been asked before with the same format
128 * and the bin is a toplevel bin (ie. has no parent),
129 * use the cached previous value. If no previous value was cached, the
130 * query is sent to all sink elements in the bin and the MAXIMUM of all
131 * values is returned. If the bin is a toplevel bin the value is cached.
132 * If no sinks are available in the bin, the query fails.
136 * <term>GST_QUERY_POSITION</term>
137 * <listitem><para>The query is sent to all sink elements in the bin and the
138 * MAXIMUM of all values is returned. If no sinks are available in the bin,
143 * <term>OTHERS</term>
144 * <listitem><para>the query is forwarded to all sink elements, the result
145 * of the first sink that answers the query successfully is returned. If no
146 * sink is in the bin, the query fails.</para></listitem>
150 * A #GstBin will by default forward any event sent to it to all sink elements.
151 * If all the sinks return TRUE, the bin will also return TRUE, else FALSE is
152 * returned. If no sinks are in the bin, the event handler will return TRUE.
157 * Last reviewed on 2006-04-28 (0.10.6)
160 #include "gst_private.h"
162 #include "gstevent.h"
164 #include "gstmarshal.h"
166 #include "gsterror.h"
168 #include "gstindex.h"
169 #include "gstindexfactory.h"
170 #include "gstutils.h"
171 #include "gstchildproxy.h"
173 /* enable for DURATION caching.
174 * FIXME currently too many elements don't update
175 * their duration when it changes so we return inaccurate values. */
176 #undef DURATION_CACHING
178 /* latency is by default enabled now.
179 * live-preroll and no-live-preroll in the environment var GST_COMPAT
180 * to enables or disable it respectively.
182 static gboolean enable_latency = TRUE;
184 GST_DEBUG_CATEGORY_STATIC (bin_debug);
185 #define GST_CAT_DEFAULT bin_debug
187 /* a bin is toplevel if it has no parent or when it is configured to behave like
189 #define BIN_IS_TOPLEVEL(bin) ((GST_OBJECT_PARENT (bin) == NULL) || bin->priv->asynchandling)
191 #define GST_BIN_GET_PRIVATE(obj) \
192 (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_BIN, GstBinPrivate))
194 struct _GstBinPrivate
196 gboolean asynchandling;
197 /* if we get an ASYNC_DONE message from ourselves, this means that the
198 * subclass will simulate ASYNC behaviour without having ASYNC children. When
199 * such an ASYNC_DONE message is posted while we are doing a state change, we
200 * have to process the message after finishing the state change even when no
201 * child returned GST_STATE_CHANGE_ASYNC. */
202 gboolean pending_async_done;
204 guint32 structure_cookie;
208 /* forward messages from our children */
209 gboolean message_forward;
219 static void gst_bin_dispose (GObject * object);
221 static void gst_bin_set_property (GObject * object, guint prop_id,
222 const GValue * value, GParamSpec * pspec);
223 static void gst_bin_get_property (GObject * object, guint prop_id,
224 GValue * value, GParamSpec * pspec);
226 static GstStateChangeReturn gst_bin_change_state_func (GstElement * element,
227 GstStateChange transition);
228 static GstStateChangeReturn gst_bin_get_state_func (GstElement * element,
229 GstState * state, GstState * pending, GstClockTime timeout);
230 static void bin_handle_async_done (GstBin * bin, GstStateChangeReturn ret,
231 gboolean flag_pending);
232 static void bin_handle_async_start (GstBin * bin, gboolean new_base_time);
233 static void bin_push_state_continue (BinContinueData * data);
235 static gboolean gst_bin_add_func (GstBin * bin, GstElement * element);
236 static gboolean gst_bin_remove_func (GstBin * bin, GstElement * element);
238 static void gst_bin_set_index_func (GstElement * element, GstIndex * index);
239 static GstIndex *gst_bin_get_index_func (GstElement * element);
241 static GstClock *gst_bin_provide_clock_func (GstElement * element);
242 static gboolean gst_bin_set_clock_func (GstElement * element, GstClock * clock);
244 static void gst_bin_handle_message_func (GstBin * bin, GstMessage * message);
245 static gboolean gst_bin_send_event (GstElement * element, GstEvent * event);
246 static GstBusSyncReply bin_bus_handler (GstBus * bus,
247 GstMessage * message, GstBin * bin);
248 static gboolean gst_bin_query (GstElement * element, GstQuery * query);
250 static gboolean gst_bin_do_latency_func (GstBin * bin);
252 static void bin_remove_messages (GstBin * bin, GstObject * src,
253 GstMessageType types);
254 static void gst_bin_continue_func (BinContinueData * data);
255 static gint bin_element_is_sink (GstElement * child, GstBin * bin);
256 static gint bin_element_is_src (GstElement * child, GstBin * bin);
258 static GstIterator *gst_bin_sort_iterator_new (GstBin * bin);
260 /* Bin signals and properties */
269 #define DEFAULT_ASYNC_HANDLING FALSE
270 #define DEFAULT_MESSAGE_FORWARD FALSE
276 PROP_MESSAGE_FORWARD,
280 static void gst_bin_child_proxy_init (gpointer g_iface, gpointer iface_data);
282 static guint gst_bin_signals[LAST_SIGNAL] = { 0 };
284 #define _do_init(type) \
286 const gchar *compat; \
287 static const GInterfaceInfo iface_info = { \
288 gst_bin_child_proxy_init, \
292 g_type_add_interface_static (type, GST_TYPE_CHILD_PROXY, &iface_info); \
294 GST_DEBUG_CATEGORY_INIT (bin_debug, "bin", GST_DEBUG_BOLD, \
295 "debugging info for the 'bin' container element"); \
297 /* compatibility stuff */ \
298 compat = g_getenv ("GST_COMPAT"); \
299 if (compat != NULL) { \
300 if (strstr (compat, "no-live-preroll")) \
301 enable_latency = FALSE; \
302 else if (strstr (compat, "live-preroll")) \
303 enable_latency = TRUE; \
307 GST_BOILERPLATE_FULL (GstBin, gst_bin, GstElement, GST_TYPE_ELEMENT, _do_init);
310 gst_bin_base_init (gpointer g_class)
312 GstElementClass *gstelement_class = GST_ELEMENT_CLASS (g_class);
314 gst_element_class_set_metadata (gstelement_class, "Generic bin",
316 "Simple container object",
317 "Erik Walthinsen <omega@cse.ogi.edu>,"
318 "Wim Taymans <wim.taymans@gmail.com>");
322 gst_bin_child_proxy_get_child_by_index (GstChildProxy * child_proxy,
328 bin = GST_BIN_CAST (child_proxy);
330 GST_OBJECT_LOCK (bin);
331 if ((res = g_list_nth_data (bin->children, index)))
332 gst_object_ref (res);
333 GST_OBJECT_UNLOCK (bin);
339 gst_bin_child_proxy_get_children_count (GstChildProxy * child_proxy)
344 bin = GST_BIN_CAST (child_proxy);
346 GST_OBJECT_LOCK (bin);
347 num = bin->numchildren;
348 GST_OBJECT_UNLOCK (bin);
354 gst_bin_child_proxy_init (gpointer g_iface, gpointer iface_data)
356 GstChildProxyInterface *iface = g_iface;
358 iface->get_children_count = gst_bin_child_proxy_get_children_count;
359 iface->get_child_by_index = gst_bin_child_proxy_get_child_by_index;
363 _gst_boolean_accumulator (GSignalInvocationHint * ihint,
364 GValue * return_accu, const GValue * handler_return, gpointer dummy)
368 myboolean = g_value_get_boolean (handler_return);
369 if (!(ihint->run_type & G_SIGNAL_RUN_CLEANUP))
370 g_value_set_boolean (return_accu, myboolean);
372 GST_DEBUG ("invocation %d, %d", ihint->run_type, myboolean);
379 gst_bin_class_init (GstBinClass * klass)
381 GObjectClass *gobject_class;
382 GstObjectClass *gstobject_class;
383 GstElementClass *gstelement_class;
386 gobject_class = (GObjectClass *) klass;
387 gstobject_class = (GstObjectClass *) klass;
388 gstelement_class = (GstElementClass *) klass;
390 g_type_class_add_private (klass, sizeof (GstBinPrivate));
392 gobject_class->set_property = gst_bin_set_property;
393 gobject_class->get_property = gst_bin_get_property;
396 * GstBin:async-handling
398 * If set to #TRUE, the bin will handle asynchronous state changes.
399 * This should be used only if the bin subclass is modifying the state
400 * of its children on its own.
404 g_object_class_install_property (gobject_class, PROP_ASYNC_HANDLING,
405 g_param_spec_boolean ("async-handling", "Async Handling",
406 "The bin will handle Asynchronous state changes",
407 DEFAULT_ASYNC_HANDLING, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
410 * GstBin::element-added:
412 * @element: the #GstElement that was added to the bin
414 * Will be emitted after the element was added to the bin.
416 gst_bin_signals[ELEMENT_ADDED] =
417 g_signal_new ("element-added", G_TYPE_FROM_CLASS (klass),
418 G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GstBinClass, element_added), NULL,
419 NULL, gst_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GST_TYPE_ELEMENT);
421 * GstBin::element-removed:
423 * @element: the #GstElement that was removed from the bin
425 * Will be emitted after the element was removed from the bin.
427 gst_bin_signals[ELEMENT_REMOVED] =
428 g_signal_new ("element-removed", G_TYPE_FROM_CLASS (klass),
429 G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GstBinClass, element_removed), NULL,
430 NULL, gst_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GST_TYPE_ELEMENT);
432 * GstBin::do-latency:
435 * Will be emitted when the bin needs to perform latency calculations. This
436 * signal is only emited for toplevel bins or when async-handling is
439 * Only one signal handler is invoked. If no signals are connected, the
440 * default handler is invoked, which will query and distribute the lowest
441 * possible latency to all sinks.
443 * Connect to this signal if the default latency calculations are not
444 * sufficient, like when you need different latencies for different sinks in
449 gst_bin_signals[DO_LATENCY] =
450 g_signal_new ("do-latency", G_TYPE_FROM_CLASS (klass),
451 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstBinClass, do_latency),
452 _gst_boolean_accumulator, NULL, gst_marshal_BOOLEAN__VOID,
453 G_TYPE_BOOLEAN, 0, G_TYPE_NONE);
456 * GstBin:message-forward
458 * Forward all children messages, even those that would normally be filtered by
459 * the bin. This can be interesting when one wants to be notified of the EOS
460 * state of individual elements, for example.
462 * The messages are converted to an ELEMENT message with the bin as the
463 * source. The structure of the message is named 'GstBinForwarded' and contains
464 * a field named 'message' of type GST_TYPE_MESSAGE that contains the original
469 g_object_class_install_property (gobject_class, PROP_MESSAGE_FORWARD,
470 g_param_spec_boolean ("message-forward", "Message Forward",
471 "Forwards all children messages",
472 DEFAULT_MESSAGE_FORWARD, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
474 gobject_class->dispose = gst_bin_dispose;
476 gstelement_class->change_state =
477 GST_DEBUG_FUNCPTR (gst_bin_change_state_func);
478 gstelement_class->get_state = GST_DEBUG_FUNCPTR (gst_bin_get_state_func);
479 gstelement_class->get_index = GST_DEBUG_FUNCPTR (gst_bin_get_index_func);
480 gstelement_class->set_index = GST_DEBUG_FUNCPTR (gst_bin_set_index_func);
481 gstelement_class->provide_clock =
482 GST_DEBUG_FUNCPTR (gst_bin_provide_clock_func);
483 gstelement_class->set_clock = GST_DEBUG_FUNCPTR (gst_bin_set_clock_func);
485 gstelement_class->send_event = GST_DEBUG_FUNCPTR (gst_bin_send_event);
486 gstelement_class->query = GST_DEBUG_FUNCPTR (gst_bin_query);
488 klass->add_element = GST_DEBUG_FUNCPTR (gst_bin_add_func);
489 klass->remove_element = GST_DEBUG_FUNCPTR (gst_bin_remove_func);
490 klass->handle_message = GST_DEBUG_FUNCPTR (gst_bin_handle_message_func);
492 klass->do_latency = GST_DEBUG_FUNCPTR (gst_bin_do_latency_func);
494 GST_DEBUG ("creating bin thread pool");
497 g_thread_pool_new ((GFunc) gst_bin_continue_func, NULL, -1, FALSE, &err);
499 g_critical ("could alloc threadpool %s", err->message);
504 gst_bin_init (GstBin * bin, GstBinClass * klass)
508 bin->numchildren = 0;
509 bin->children = NULL;
510 bin->children_cookie = 0;
511 bin->messages = NULL;
512 bin->provided_clock = NULL;
513 bin->clock_dirty = FALSE;
515 /* Set up a bus for listening to child elements */
516 bus = gst_bus_new ();
517 bin->child_bus = bus;
518 GST_DEBUG_OBJECT (bin, "using bus %" GST_PTR_FORMAT " to listen to children",
520 gst_bus_set_sync_handler (bus, (GstBusSyncHandler) bin_bus_handler, bin);
521 _priv_gst_bus_set_child_mode (bus);
523 bin->priv = GST_BIN_GET_PRIVATE (bin);
524 bin->priv->asynchandling = DEFAULT_ASYNC_HANDLING;
525 bin->priv->structure_cookie = 0;
526 bin->priv->message_forward = DEFAULT_MESSAGE_FORWARD;
530 gst_bin_dispose (GObject * object)
532 GstBin *bin = GST_BIN_CAST (object);
533 GstBus **child_bus_p = &bin->child_bus;
534 GstClock **provided_clock_p = &bin->provided_clock;
535 GstElement **clock_provider_p = &bin->clock_provider;
536 GstIndex **index_p = &bin->priv->index;
538 GST_CAT_DEBUG_OBJECT (GST_CAT_REFCOUNTING, object, "dispose");
540 GST_OBJECT_LOCK (object);
541 gst_object_replace ((GstObject **) child_bus_p, NULL);
542 gst_object_replace ((GstObject **) provided_clock_p, NULL);
543 gst_object_replace ((GstObject **) clock_provider_p, NULL);
544 gst_object_replace ((GstObject **) index_p, NULL);
545 bin_remove_messages (bin, NULL, GST_MESSAGE_ANY);
546 GST_OBJECT_UNLOCK (object);
548 while (bin->children) {
549 gst_bin_remove (bin, GST_ELEMENT_CAST (bin->children->data));
551 if (G_UNLIKELY (bin->children != NULL)) {
552 g_critical ("could not remove elements from bin '%s'",
553 GST_STR_NULL (GST_OBJECT_NAME (object)));
556 G_OBJECT_CLASS (parent_class)->dispose (object);
561 * @name: the name of the new bin
563 * Creates a new bin with the given name.
565 * Returns: (transfer full): a new #GstBin
568 gst_bin_new (const gchar * name)
570 return gst_element_factory_make ("bin", name);
574 gst_bin_set_property (GObject * object, guint prop_id,
575 const GValue * value, GParamSpec * pspec)
579 gstbin = GST_BIN_CAST (object);
582 case PROP_ASYNC_HANDLING:
583 GST_OBJECT_LOCK (gstbin);
584 gstbin->priv->asynchandling = g_value_get_boolean (value);
585 GST_OBJECT_UNLOCK (gstbin);
587 case PROP_MESSAGE_FORWARD:
588 GST_OBJECT_LOCK (gstbin);
589 gstbin->priv->message_forward = g_value_get_boolean (value);
590 GST_OBJECT_UNLOCK (gstbin);
593 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
599 gst_bin_get_property (GObject * object, guint prop_id,
600 GValue * value, GParamSpec * pspec)
604 gstbin = GST_BIN_CAST (object);
607 case PROP_ASYNC_HANDLING:
608 GST_OBJECT_LOCK (gstbin);
609 g_value_set_boolean (value, gstbin->priv->asynchandling);
610 GST_OBJECT_UNLOCK (gstbin);
612 case PROP_MESSAGE_FORWARD:
613 GST_OBJECT_LOCK (gstbin);
614 g_value_set_boolean (value, gstbin->priv->message_forward);
615 GST_OBJECT_UNLOCK (gstbin);
618 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
623 /* return the cached index */
625 gst_bin_get_index_func (GstElement * element)
630 bin = GST_BIN_CAST (element);
632 GST_OBJECT_LOCK (bin);
633 if ((result = bin->priv->index))
634 gst_object_ref (result);
635 GST_OBJECT_UNLOCK (bin);
640 /* set the index on all elements in this bin
645 gst_bin_set_index_func (GstElement * element, GstIndex * index)
652 bin = GST_BIN_CAST (element);
654 GST_OBJECT_LOCK (bin);
655 old = bin->priv->index;
656 if (G_UNLIKELY (old == index))
659 gst_object_ref (index);
660 bin->priv->index = index;
661 GST_OBJECT_UNLOCK (bin);
664 gst_object_unref (old);
666 it = gst_bin_iterate_elements (bin);
668 /* set the index on all elements in the bin */
673 switch (gst_iterator_next (it, &data)) {
674 case GST_ITERATOR_OK:
676 GstElement *child = GST_ELEMENT_CAST (data);
678 GST_DEBUG_OBJECT (bin, "setting index on '%s'",
679 GST_ELEMENT_NAME (child));
680 gst_element_set_index (child, index);
682 gst_object_unref (child);
685 case GST_ITERATOR_RESYNC:
686 GST_DEBUG_OBJECT (bin, "iterator doing resync");
687 gst_iterator_resync (it);
690 case GST_ITERATOR_DONE:
691 GST_DEBUG_OBJECT (bin, "iterator done");
696 gst_iterator_free (it);
701 GST_DEBUG_OBJECT (bin, "index was already set");
702 GST_OBJECT_UNLOCK (bin);
707 /* set the clock on all elements in this bin
712 gst_bin_set_clock_func (GstElement * element, GstClock * clock)
719 bin = GST_BIN_CAST (element);
721 it = gst_bin_iterate_elements (bin);
727 switch (gst_iterator_next (it, &data)) {
728 case GST_ITERATOR_OK:
730 GstElement *child = GST_ELEMENT_CAST (data);
732 res &= gst_element_set_clock (child, clock);
734 gst_object_unref (child);
737 case GST_ITERATOR_RESYNC:
738 GST_DEBUG_OBJECT (bin, "iterator doing resync");
739 gst_iterator_resync (it);
743 case GST_ITERATOR_DONE:
744 GST_DEBUG_OBJECT (bin, "iterator done");
749 gst_iterator_free (it);
754 /* get the clock for this bin by asking all of the children in this bin
756 * The ref of the returned clock in increased so unref after usage.
758 * We loop the elements in state order and pick the last clock we can
759 * get. This makes sure we get a clock from the source.
764 gst_bin_provide_clock_func (GstElement * element)
766 GstClock *result = NULL;
767 GstElement *provider = NULL;
771 GstClock **provided_clock_p;
772 GstElement **clock_provider_p;
774 bin = GST_BIN_CAST (element);
776 GST_OBJECT_LOCK (bin);
777 if (!bin->clock_dirty)
780 GST_DEBUG_OBJECT (bin, "finding new clock");
782 it = gst_bin_sort_iterator_new (bin);
784 while (it->next (it, &val) == GST_ITERATOR_OK) {
785 GstElement *child = GST_ELEMENT_CAST (val);
788 clock = gst_element_provide_clock (child);
790 GST_DEBUG_OBJECT (bin, "found candidate clock %p by element %s",
791 clock, GST_ELEMENT_NAME (child));
793 gst_object_unref (result);
794 gst_object_unref (provider);
799 gst_object_unref (child);
803 provided_clock_p = &bin->provided_clock;
804 clock_provider_p = &bin->clock_provider;
805 gst_object_replace ((GstObject **) provided_clock_p, (GstObject *) result);
806 gst_object_replace ((GstObject **) clock_provider_p, (GstObject *) provider);
807 bin->clock_dirty = FALSE;
808 GST_DEBUG_OBJECT (bin,
809 "provided new clock %" GST_PTR_FORMAT " by provider %" GST_PTR_FORMAT,
811 /* Provider is not being returned to caller, just the result */
813 gst_object_unref (provider);
814 GST_OBJECT_UNLOCK (bin);
816 gst_iterator_free (it);
822 if ((result = bin->provided_clock))
823 gst_object_ref (result);
824 GST_DEBUG_OBJECT (bin, "returning old clock %p", result);
825 GST_OBJECT_UNLOCK (bin);
832 * functions for manipulating cached messages
837 GstMessageType types;
840 /* check if a message is of given src and type */
842 message_check (GstMessage * message, MessageFind * target)
847 eq &= GST_MESSAGE_SRC (message) == target->src;
849 eq &= (GST_MESSAGE_TYPE (message) & target->types) != 0;
850 GST_LOG ("looking at message %p: %d", message, eq);
856 find_message (GstBin * bin, GstObject * src, GstMessageType types)
864 result = g_list_find_custom (bin->messages, &find,
865 (GCompareFunc) message_check);
868 GST_DEBUG_OBJECT (bin, "we found a message %p from %s matching types %08x",
869 result->data, GST_OBJECT_NAME (GST_MESSAGE_CAST (result->data)->src),
872 GST_DEBUG_OBJECT (bin, "no message found matching types %08x", types);
873 #ifndef GST_DISABLE_GST_DEBUG
877 for (i = 0; i < 32; i++)
878 if (types & (1 << i))
879 GST_DEBUG_OBJECT (bin, " %s", gst_message_type_get_name (1 << i));
887 /* with LOCK, returns TRUE if message had a valid SRC, takes ownership of
890 * A message that is cached and has the same SRC and type is replaced
891 * by the given message.
894 bin_replace_message (GstBin * bin, GstMessage * message, GstMessageType types)
900 if ((src = GST_MESSAGE_SRC (message))) {
901 /* first find the previous message posted by this element */
902 if ((previous = find_message (bin, src, types))) {
903 GstMessage *previous_msg;
905 /* if we found a previous message, replace it */
906 previous_msg = previous->data;
907 previous->data = message;
909 GST_DEBUG_OBJECT (bin, "replace old message %s from %s with %s message",
910 GST_MESSAGE_TYPE_NAME (previous_msg), GST_ELEMENT_NAME (src),
911 GST_MESSAGE_TYPE_NAME (message));
913 gst_message_unref (previous_msg);
915 /* keep new message */
916 bin->messages = g_list_prepend (bin->messages, message);
918 GST_DEBUG_OBJECT (bin, "got new message %p, %s from %s",
919 message, GST_MESSAGE_TYPE_NAME (message), GST_ELEMENT_NAME (src));
922 GST_DEBUG_OBJECT (bin, "got message %s from (NULL), not processing",
923 GST_MESSAGE_TYPE_NAME (message));
925 gst_message_unref (message);
930 /* with LOCK. Remove all messages of given types */
932 bin_remove_messages (GstBin * bin, GstObject * src, GstMessageType types)
940 for (walk = bin->messages; walk; walk = next) {
941 GstMessage *message = (GstMessage *) walk->data;
943 next = g_list_next (walk);
945 if (message_check (message, &find) == 0) {
946 GST_DEBUG_OBJECT (GST_MESSAGE_SRC (message),
947 "deleting message %p of types 0x%08x", message, types);
948 bin->messages = g_list_delete_link (bin->messages, walk);
949 gst_message_unref (message);
951 GST_DEBUG_OBJECT (GST_MESSAGE_SRC (message),
952 "not deleting message %p of type 0x%08x", message,
953 GST_MESSAGE_TYPE (message));
959 /* Check if the bin is EOS. We do this by scanning all sinks and
960 * checking if they posted an EOS message.
962 * call with bin LOCK */
964 is_eos (GstBin * bin)
970 for (walk = bin->children; walk; walk = g_list_next (walk)) {
973 element = GST_ELEMENT_CAST (walk->data);
974 if (bin_element_is_sink (element, bin) == 0) {
975 /* check if element posted EOS */
976 if (find_message (bin, GST_OBJECT_CAST (element), GST_MESSAGE_EOS)) {
977 GST_DEBUG ("sink '%s' posted EOS", GST_ELEMENT_NAME (element));
979 GST_DEBUG ("sink '%s' did not post EOS yet",
980 GST_ELEMENT_NAME (element));
990 unlink_pads (GstPad * pad)
994 if ((peer = gst_pad_get_peer (pad))) {
995 if (gst_pad_get_direction (pad) == GST_PAD_SRC)
996 gst_pad_unlink (pad, peer);
998 gst_pad_unlink (peer, pad);
999 gst_object_unref (peer);
1001 gst_object_unref (pad);
1004 /* vmethod that adds an element to a bin
1009 gst_bin_add_func (GstBin * bin, GstElement * element)
1013 gboolean is_sink, is_source;
1014 GstMessage *clock_message = NULL, *async_message = NULL;
1015 GstStateChangeReturn ret;
1017 GST_DEBUG_OBJECT (bin, "element :%s", GST_ELEMENT_NAME (element));
1019 /* we obviously can't add ourself to ourself */
1020 if (G_UNLIKELY (GST_ELEMENT_CAST (element) == GST_ELEMENT_CAST (bin)))
1023 /* get the element name to make sure it is unique in this bin. */
1024 GST_OBJECT_LOCK (element);
1025 elem_name = g_strdup (GST_ELEMENT_NAME (element));
1026 is_sink = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_IS_SINK);
1027 is_source = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_IS_SOURCE);
1028 GST_OBJECT_UNLOCK (element);
1030 GST_OBJECT_LOCK (bin);
1032 /* then check to see if the element's name is already taken in the bin,
1033 * we can safely take the lock here. This check is probably bogus because
1034 * you can safely change the element name after this check and before setting
1035 * the object parent. The window is very small though... */
1036 if (G_UNLIKELY (!gst_object_check_uniqueness (bin->children, elem_name)))
1037 goto duplicate_name;
1039 /* set the element's parent and add the element to the bin's list of children */
1040 if (G_UNLIKELY (!gst_object_set_parent (GST_OBJECT_CAST (element),
1041 GST_OBJECT_CAST (bin))))
1044 /* if we add a sink we become a sink */
1046 GST_CAT_DEBUG_OBJECT (GST_CAT_PARENTAGE, bin, "element \"%s\" was sink",
1048 GST_OBJECT_FLAG_SET (bin, GST_ELEMENT_IS_SINK);
1051 GST_CAT_DEBUG_OBJECT (GST_CAT_PARENTAGE, bin, "element \"%s\" was source",
1053 GST_OBJECT_FLAG_SET (bin, GST_ELEMENT_IS_SOURCE);
1055 if (gst_element_provides_clock (element)) {
1056 GST_DEBUG_OBJECT (bin, "element \"%s\" can provide a clock", elem_name);
1058 gst_message_new_clock_provide (GST_OBJECT_CAST (element), NULL, TRUE);
1061 bin->children = g_list_prepend (bin->children, element);
1063 bin->children_cookie++;
1064 bin->priv->structure_cookie++;
1066 /* distribute the bus */
1067 gst_element_set_bus (element, bin->child_bus);
1069 /* propagate the current base_time, start_time and clock */
1070 gst_element_set_base_time (element, GST_ELEMENT_CAST (bin)->base_time);
1071 gst_element_set_start_time (element, GST_ELEMENT_START_TIME (bin));
1072 /* it's possible that the element did not accept the clock but
1073 * that is not important right now. When the pipeline goes to PLAYING,
1074 * a new clock will be selected */
1075 gst_element_set_clock (element, GST_ELEMENT_CLOCK (bin));
1076 /* set the cached index on the children */
1077 if (bin->priv->index)
1078 gst_element_set_index (element, bin->priv->index);
1080 ret = GST_STATE_RETURN (bin);
1081 /* no need to update the state if we are in error */
1082 if (ret == GST_STATE_CHANGE_FAILURE)
1083 goto no_state_recalc;
1085 /* update the bin state, the new element could have been an ASYNC or
1086 * NO_PREROLL element */
1087 ret = GST_STATE_RETURN (element);
1088 GST_DEBUG_OBJECT (bin, "added %s element",
1089 gst_element_state_change_return_get_name (ret));
1092 case GST_STATE_CHANGE_ASYNC:
1094 /* create message to track this aync element when it posts an async-done
1097 gst_message_new_async_start (GST_OBJECT_CAST (element), FALSE);
1100 case GST_STATE_CHANGE_NO_PREROLL:
1101 /* ignore all async elements we might have and commit our state */
1102 bin_handle_async_done (bin, ret, FALSE);
1104 case GST_STATE_CHANGE_FAILURE:
1111 GST_OBJECT_UNLOCK (bin);
1113 /* post the messages on the bus of the element so that the bin can handle
1116 gst_element_post_message (GST_ELEMENT_CAST (element), clock_message);
1119 gst_element_post_message (GST_ELEMENT_CAST (element), async_message);
1121 /* unlink all linked pads */
1122 it = gst_element_iterate_pads (element);
1123 gst_iterator_foreach (it, (GFunc) unlink_pads, element);
1124 gst_iterator_free (it);
1126 GST_CAT_DEBUG_OBJECT (GST_CAT_PARENTAGE, bin, "added element \"%s\"",
1130 g_signal_emit (bin, gst_bin_signals[ELEMENT_ADDED], 0, element);
1131 gst_child_proxy_child_added ((GstObject *) bin, (GstObject *) element);
1135 /* ERROR handling here */
1138 GST_OBJECT_LOCK (bin);
1139 g_warning ("Cannot add bin '%s' to itself", GST_ELEMENT_NAME (bin));
1140 GST_OBJECT_UNLOCK (bin);
1145 g_warning ("Name '%s' is not unique in bin '%s', not adding",
1146 elem_name, GST_ELEMENT_NAME (bin));
1147 GST_OBJECT_UNLOCK (bin);
1153 g_warning ("Element '%s' already has parent", elem_name);
1154 GST_OBJECT_UNLOCK (bin);
1163 * @element: (transfer full): the #GstElement to add
1165 * Adds the given element to the bin. Sets the element's parent, and thus
1166 * takes ownership of the element. An element can only be added to one bin.
1168 * If the element's pads are linked to other pads, the pads will be unlinked
1169 * before the element is added to the bin.
1172 * When you add an element to an already-running pipeline, you will have to
1173 * take care to set the state of the newly-added element to the desired
1174 * state (usually PLAYING or PAUSED, same you set the pipeline to originally)
1175 * with gst_element_set_state(), or use gst_element_sync_state_with_parent().
1176 * The bin or pipeline will not take care of this for you.
1181 * Returns: TRUE if the element could be added, FALSE if
1182 * the bin does not want to accept the element.
1185 gst_bin_add (GstBin * bin, GstElement * element)
1187 GstBinClass *bclass;
1190 g_return_val_if_fail (GST_IS_BIN (bin), FALSE);
1191 g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1193 bclass = GST_BIN_GET_CLASS (bin);
1195 if (G_UNLIKELY (bclass->add_element == NULL))
1198 GST_CAT_DEBUG (GST_CAT_PARENTAGE, "adding element %s to bin %s",
1199 GST_STR_NULL (GST_ELEMENT_NAME (element)),
1200 GST_STR_NULL (GST_ELEMENT_NAME (bin)));
1202 result = bclass->add_element (bin, element);
1206 /* ERROR handling */
1209 g_warning ("adding elements to bin '%s' is not supported",
1210 GST_ELEMENT_NAME (bin));
1215 /* remove an element from the bin
1220 gst_bin_remove_func (GstBin * bin, GstElement * element)
1224 gboolean is_sink, is_source, othersink, othersource, found;
1225 GstMessage *clock_message = NULL;
1226 GstClock **provided_clock_p;
1227 GstElement **clock_provider_p;
1229 gboolean other_async, this_async, have_no_preroll;
1230 GstStateChangeReturn ret;
1232 GST_DEBUG_OBJECT (bin, "element :%s", GST_ELEMENT_NAME (element));
1234 GST_OBJECT_LOCK (element);
1235 /* Check if the element is already being removed and immediately
1237 if (G_UNLIKELY (GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_UNPARENTING)))
1238 goto already_removing;
1240 GST_OBJECT_FLAG_SET (element, GST_ELEMENT_UNPARENTING);
1241 /* grab element name so we can print it */
1242 elem_name = g_strdup (GST_ELEMENT_NAME (element));
1243 is_sink = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_IS_SINK);
1244 is_source = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_IS_SOURCE);
1245 GST_OBJECT_UNLOCK (element);
1247 /* unlink all linked pads */
1248 it = gst_element_iterate_pads (element);
1249 gst_iterator_foreach (it, (GFunc) unlink_pads, element);
1250 gst_iterator_free (it);
1252 GST_OBJECT_LOCK (bin);
1255 othersource = FALSE;
1256 have_no_preroll = FALSE;
1257 /* iterate the elements, we collect which ones are async and no_preroll. We
1258 * also remove the element when we find it. */
1259 for (walk = bin->children; walk; walk = next) {
1260 GstElement *child = GST_ELEMENT_CAST (walk->data);
1262 next = g_list_next (walk);
1264 if (child == element) {
1266 /* remove the element */
1267 bin->children = g_list_delete_link (bin->children, walk);
1269 gboolean child_sink, child_source;
1271 GST_OBJECT_LOCK (child);
1272 child_sink = GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_IS_SINK);
1273 child_source = GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_IS_SOURCE);
1274 /* when we remove a sink, check if there are other sinks. */
1275 if (is_sink && !othersink && child_sink)
1277 if (is_source && !othersource && child_source)
1279 /* check if we have NO_PREROLL children */
1280 if (GST_STATE_RETURN (child) == GST_STATE_CHANGE_NO_PREROLL)
1281 have_no_preroll = TRUE;
1282 GST_OBJECT_UNLOCK (child);
1286 /* the element must have been in the bin's list of children */
1287 if (G_UNLIKELY (!found))
1290 /* we now removed the element from the list of elements, increment the cookie
1291 * so that others can detect a change in the children list. */
1293 bin->children_cookie++;
1294 bin->priv->structure_cookie++;
1296 if (is_sink && !othersink) {
1297 /* we're not a sink anymore */
1298 GST_DEBUG_OBJECT (bin, "we removed the last sink");
1299 GST_OBJECT_FLAG_UNSET (bin, GST_ELEMENT_IS_SINK);
1301 if (is_source && !othersource) {
1302 /* we're not a source anymore */
1303 GST_DEBUG_OBJECT (bin, "we removed the last source");
1304 GST_OBJECT_FLAG_UNSET (bin, GST_ELEMENT_IS_SOURCE);
1308 /* if the clock provider for this element is removed, we lost
1309 * the clock as well, we need to inform the parent of this
1310 * so that it can select a new clock */
1311 if (bin->clock_provider == element) {
1312 GST_DEBUG_OBJECT (bin, "element \"%s\" provided the clock", elem_name);
1313 bin->clock_dirty = TRUE;
1315 gst_message_new_clock_lost (GST_OBJECT_CAST (bin), bin->provided_clock);
1316 provided_clock_p = &bin->provided_clock;
1317 clock_provider_p = &bin->clock_provider;
1318 gst_object_replace ((GstObject **) provided_clock_p, NULL);
1319 gst_object_replace ((GstObject **) clock_provider_p, NULL);
1322 /* remove messages for the element, if there was a pending ASYNC_START
1323 * message we must see if removing the element caused the bin to lose its
1326 other_async = FALSE;
1327 for (walk = bin->messages; walk; walk = next) {
1328 GstMessage *message = (GstMessage *) walk->data;
1329 GstElement *src = GST_ELEMENT_CAST (GST_MESSAGE_SRC (message));
1332 next = g_list_next (walk);
1335 switch (GST_MESSAGE_TYPE (message)) {
1336 case GST_MESSAGE_ASYNC_START:
1342 GST_DEBUG_OBJECT (src, "looking at message %p", message);
1344 case GST_MESSAGE_STRUCTURE_CHANGE:
1348 GST_DEBUG_OBJECT (src, "looking at structure change message %p",
1350 /* it's unlikely that this message is still in the list of messages
1351 * because this would mean that a link/unlink is busy in another thread
1352 * while we remove the element. We still have to remove the message
1353 * because we might not receive the done message anymore when the element
1354 * is removed from the bin. */
1355 gst_message_parse_structure_change (message, NULL, &owner, NULL);
1356 if (owner == element)
1367 /* delete all message types */
1368 GST_DEBUG_OBJECT (src, "deleting message %p of element \"%s\"",
1369 message, elem_name);
1370 bin->messages = g_list_delete_link (bin->messages, walk);
1371 gst_message_unref (message);
1375 /* get last return */
1376 ret = GST_STATE_RETURN (bin);
1378 /* no need to update the state if we are in error */
1379 if (ret == GST_STATE_CHANGE_FAILURE)
1380 goto no_state_recalc;
1382 if (!other_async && this_async) {
1383 /* all other elements were not async and we removed the async one,
1384 * handle the async-done case because we are not async anymore now. */
1385 GST_DEBUG_OBJECT (bin,
1386 "we removed the last async element, have no_preroll %d",
1389 /* the current state return of the bin depends on if there are no_preroll
1390 * elements in the pipeline or not */
1391 if (have_no_preroll)
1392 ret = GST_STATE_CHANGE_NO_PREROLL;
1394 ret = GST_STATE_CHANGE_SUCCESS;
1396 bin_handle_async_done (bin, ret, FALSE);
1398 GST_DEBUG_OBJECT (bin,
1399 "recalc state preroll: %d, other async: %d, this async %d",
1400 have_no_preroll, other_async, this_async);
1402 if (have_no_preroll) {
1403 ret = GST_STATE_CHANGE_NO_PREROLL;
1404 } else if (other_async) {
1405 /* there are other async elements and we were not doing an async state
1406 * change, change our pending state and go async */
1407 if (GST_STATE_PENDING (bin) == GST_STATE_VOID_PENDING) {
1408 GST_STATE_NEXT (bin) = GST_STATE (bin);
1409 GST_STATE_PENDING (bin) = GST_STATE (bin);
1411 ret = GST_STATE_CHANGE_ASYNC;
1413 GST_STATE_RETURN (bin) = ret;
1416 GST_OBJECT_UNLOCK (bin);
1419 gst_element_post_message (GST_ELEMENT_CAST (bin), clock_message);
1421 GST_CAT_INFO_OBJECT (GST_CAT_PARENTAGE, bin, "removed child \"%s\"",
1425 gst_element_set_bus (element, NULL);
1427 /* Clear the clock we provided to the element */
1428 gst_element_set_clock (element, NULL);
1430 /* we ref here because after the _unparent() the element can be disposed
1431 * and we still need it to reset the UNPARENTING flag and fire a signal. */
1432 gst_object_ref (element);
1433 gst_object_unparent (GST_OBJECT_CAST (element));
1435 GST_OBJECT_LOCK (element);
1436 GST_OBJECT_FLAG_UNSET (element, GST_ELEMENT_UNPARENTING);
1437 GST_OBJECT_UNLOCK (element);
1439 g_signal_emit (bin, gst_bin_signals[ELEMENT_REMOVED], 0, element);
1440 gst_child_proxy_child_removed ((GstObject *) bin, (GstObject *) element);
1442 /* element is really out of our control now */
1443 gst_object_unref (element);
1447 /* ERROR handling */
1450 g_warning ("Element '%s' is not in bin '%s'", elem_name,
1451 GST_ELEMENT_NAME (bin));
1452 GST_OBJECT_UNLOCK (bin);
1458 GST_CAT_INFO_OBJECT (GST_CAT_PARENTAGE, bin, "already removing child");
1459 GST_OBJECT_UNLOCK (element);
1467 * @element: (transfer none): the #GstElement to remove
1469 * Removes the element from the bin, unparenting it as well.
1470 * Unparenting the element means that the element will be dereferenced,
1471 * so if the bin holds the only reference to the element, the element
1472 * will be freed in the process of removing it from the bin. If you
1473 * want the element to still exist after removing, you need to call
1474 * gst_object_ref() before removing it from the bin.
1476 * If the element's pads are linked to other pads, the pads will be unlinked
1477 * before the element is removed from the bin.
1481 * Returns: TRUE if the element could be removed, FALSE if
1482 * the bin does not want to remove the element.
1485 gst_bin_remove (GstBin * bin, GstElement * element)
1487 GstBinClass *bclass;
1490 g_return_val_if_fail (GST_IS_BIN (bin), FALSE);
1491 g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1493 bclass = GST_BIN_GET_CLASS (bin);
1495 if (G_UNLIKELY (bclass->remove_element == NULL))
1498 GST_CAT_DEBUG (GST_CAT_PARENTAGE, "removing element %s from bin %s",
1499 GST_ELEMENT_NAME (element), GST_ELEMENT_NAME (bin));
1501 result = bclass->remove_element (bin, element);
1505 /* ERROR handling */
1508 g_warning ("removing elements from bin '%s' is not supported",
1509 GST_ELEMENT_NAME (bin));
1514 static GstIteratorItem
1515 iterate_child (GstIterator * it, GstElement * child)
1517 gst_object_ref (child);
1518 return GST_ITERATOR_ITEM_PASS;
1522 * gst_bin_iterate_elements:
1525 * Gets an iterator for the elements in this bin.
1527 * Each element yielded by the iterator will have its refcount increased, so
1530 * MT safe. Caller owns returned value.
1532 * Returns: (transfer full): a #GstIterator of #GstElement, or NULL
1535 gst_bin_iterate_elements (GstBin * bin)
1537 GstIterator *result;
1539 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
1541 GST_OBJECT_LOCK (bin);
1542 /* add ref because the iterator refs the bin. When the iterator
1543 * is freed it will unref the bin again using the provided dispose
1545 gst_object_ref (bin);
1546 result = gst_iterator_new_list (GST_TYPE_ELEMENT,
1547 GST_OBJECT_GET_LOCK (bin),
1548 &bin->children_cookie,
1551 (GstIteratorItemFunction) iterate_child,
1552 (GstIteratorDisposeFunction) gst_object_unref);
1553 GST_OBJECT_UNLOCK (bin);
1558 static GstIteratorItem
1559 iterate_child_recurse (GstIterator * it, GstElement * child)
1561 gst_object_ref (child);
1562 if (GST_IS_BIN (child)) {
1563 GstIterator *other = gst_bin_iterate_recurse (GST_BIN_CAST (child));
1565 gst_iterator_push (it, other);
1567 return GST_ITERATOR_ITEM_PASS;
1571 * gst_bin_iterate_recurse:
1574 * Gets an iterator for the elements in this bin.
1575 * This iterator recurses into GstBin children.
1577 * Each element yielded by the iterator will have its refcount increased, so
1580 * MT safe. Caller owns returned value.
1582 * Returns: (transfer full): a #GstIterator of #GstElement, or NULL
1585 gst_bin_iterate_recurse (GstBin * bin)
1587 GstIterator *result;
1589 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
1591 GST_OBJECT_LOCK (bin);
1592 /* add ref because the iterator refs the bin. When the iterator
1593 * is freed it will unref the bin again using the provided dispose
1595 gst_object_ref (bin);
1596 result = gst_iterator_new_list (GST_TYPE_ELEMENT,
1597 GST_OBJECT_GET_LOCK (bin),
1598 &bin->children_cookie,
1601 (GstIteratorItemFunction) iterate_child_recurse,
1602 (GstIteratorDisposeFunction) gst_object_unref);
1603 GST_OBJECT_UNLOCK (bin);
1608 /* returns 0 when TRUE because this is a GCompareFunc */
1611 bin_element_is_sink (GstElement * child, GstBin * bin)
1615 /* we lock the child here for the remainder of the function to
1616 * get its name and flag safely. */
1617 GST_OBJECT_LOCK (child);
1618 is_sink = GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_IS_SINK);
1620 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
1621 "child %s %s sink", GST_OBJECT_NAME (child), is_sink ? "is" : "is not");
1623 GST_OBJECT_UNLOCK (child);
1624 return is_sink ? 0 : 1;
1628 sink_iterator_filter (GstElement * child, GstBin * bin)
1630 if (bin_element_is_sink (child, bin) == 0) {
1631 /* returns 0 because this is a GCompareFunc */
1634 /* child carries a ref from gst_bin_iterate_elements -- drop if not passing
1636 gst_object_unref (child);
1642 * gst_bin_iterate_sinks:
1645 * Gets an iterator for all elements in the bin that have the
1646 * #GST_ELEMENT_IS_SINK flag set.
1648 * Each element yielded by the iterator will have its refcount increased, so
1651 * MT safe. Caller owns returned value.
1653 * Returns: (transfer full): a #GstIterator of #GstElement, or NULL
1656 gst_bin_iterate_sinks (GstBin * bin)
1658 GstIterator *children;
1659 GstIterator *result;
1661 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
1663 children = gst_bin_iterate_elements (bin);
1664 result = gst_iterator_filter (children,
1665 (GCompareFunc) sink_iterator_filter, bin);
1670 /* returns 0 when TRUE because this is a GCompareFunc */
1673 bin_element_is_src (GstElement * child, GstBin * bin)
1677 /* we lock the child here for the remainder of the function to
1678 * get its name and other info safely. */
1679 GST_OBJECT_LOCK (child);
1680 is_src = GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_IS_SOURCE);
1682 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
1683 "child %s %s src", GST_OBJECT_NAME (child), is_src ? "is" : "is not");
1685 GST_OBJECT_UNLOCK (child);
1686 return is_src ? 0 : 1;
1690 src_iterator_filter (GstElement * child, GstBin * bin)
1692 if (bin_element_is_src (child, bin) == 0) {
1693 /* returns 0 because this is a GCompareFunc */
1696 /* child carries a ref from gst_bin_iterate_elements -- drop if not passing
1698 gst_object_unref (child);
1704 * gst_bin_iterate_sources:
1707 * Gets an iterator for all elements in the bin that have the
1708 * #GST_ELEMENT_IS_SOURCE flag set.
1710 * Each element yielded by the iterator will have its refcount increased, so
1713 * MT safe. Caller owns returned value.
1715 * Returns: (transfer full): a #GstIterator of #GstElement, or NULL
1718 gst_bin_iterate_sources (GstBin * bin)
1720 GstIterator *children;
1721 GstIterator *result;
1723 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
1725 children = gst_bin_iterate_elements (bin);
1726 result = gst_iterator_filter (children,
1727 (GCompareFunc) src_iterator_filter, bin);
1735 static GstStateChangeReturn
1736 gst_bin_get_state_func (GstElement * element, GstState * state,
1737 GstState * pending, GstClockTime timeout)
1739 GstStateChangeReturn ret;
1741 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element, "getting state");
1743 ret = parent_class->get_state (element, state, pending, timeout);
1748 /***********************************************
1749 * Topologically sorted iterator
1750 * see http://en.wikipedia.org/wiki/Topological_sorting
1752 * For each element in the graph, an entry is kept in a HashTable
1753 * with its number of srcpad connections (degree).
1754 * We then change state of all elements without dependencies
1755 * (degree 0) and decrement the degree of all elements connected
1756 * on the sinkpads. When an element reaches degree 0, its state is
1758 * When all elements are handled the algorithm stops.
1760 typedef struct _GstBinSortIterator
1763 GQueue *queue; /* elements queued for state change */
1764 GstBin *bin; /* bin we iterate */
1765 gint mode; /* adding or removing dependency */
1766 GstElement *best; /* next element with least dependencies */
1767 gint best_deg; /* best degree */
1768 GHashTable *hash; /* hashtable with element dependencies */
1769 gboolean dirty; /* we detected structure change */
1770 } GstBinSortIterator;
1772 /* we add and subtract 1 to make sure we don't confuse NULL and 0 */
1773 #define HASH_SET_DEGREE(bit, elem, deg) \
1774 g_hash_table_replace (bit->hash, elem, GINT_TO_POINTER(deg+1))
1775 #define HASH_GET_DEGREE(bit, elem) \
1776 (GPOINTER_TO_INT(g_hash_table_lookup (bit->hash, elem))-1)
1778 /* add element to queue of next elements in the iterator.
1779 * We push at the tail to give higher priority elements a
1782 add_to_queue (GstBinSortIterator * bit, GstElement * element)
1784 GST_DEBUG_OBJECT (bit->bin, "adding '%s' to queue",
1785 GST_ELEMENT_NAME (element));
1786 gst_object_ref (element);
1787 g_queue_push_tail (bit->queue, element);
1788 HASH_SET_DEGREE (bit, element, -1);
1792 remove_from_queue (GstBinSortIterator * bit, GstElement * element)
1796 if ((find = g_queue_find (bit->queue, element))) {
1797 GST_DEBUG_OBJECT (bit->bin, "removing '%s' from queue",
1798 GST_ELEMENT_NAME (element));
1800 g_queue_delete_link (bit->queue, find);
1801 gst_object_unref (element);
1803 GST_DEBUG_OBJECT (bit->bin, "unable to remove '%s' from queue",
1804 GST_ELEMENT_NAME (element));
1808 /* clear the queue, unref all objects as we took a ref when
1809 * we added them to the queue */
1811 clear_queue (GQueue * queue)
1815 while ((p = g_queue_pop_head (queue)))
1816 gst_object_unref (p);
1819 /* set all degrees to 0. Elements marked as a sink are
1820 * added to the queue immediatly. Since we only look at the SINK flag of the
1821 * element, it is possible that we add non-sinks to the queue. These will be
1822 * removed from the queue again when we can prove that it provides data for some
1825 reset_degree (GstElement * element, GstBinSortIterator * bit)
1829 /* sinks are added right away */
1830 GST_OBJECT_LOCK (element);
1831 is_sink = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_IS_SINK);
1832 GST_OBJECT_UNLOCK (element);
1835 add_to_queue (bit, element);
1837 /* others are marked with 0 and handled when sinks are done */
1838 HASH_SET_DEGREE (bit, element, 0);
1842 /* adjust the degree of all elements connected to the given
1843 * element. If a degree of an element drops to 0, it is
1844 * added to the queue of elements to schedule next.
1846 * We have to make sure not to cross the bin boundary this element
1850 update_degree (GstElement * element, GstBinSortIterator * bit)
1852 gboolean linked = FALSE;
1854 GST_OBJECT_LOCK (element);
1855 /* don't touch degree if element has no sinkpads */
1856 if (element->numsinkpads != 0) {
1857 /* loop over all sinkpads, decrement degree for all connected
1858 * elements in this bin */
1861 for (pads = element->sinkpads; pads; pads = g_list_next (pads)) {
1864 pad = GST_PAD_CAST (pads->data);
1866 /* we're iterating over the sinkpads, check if it's busy in a link/unlink */
1867 if (G_UNLIKELY (find_message (bit->bin, GST_OBJECT_CAST (pad),
1868 GST_MESSAGE_STRUCTURE_CHANGE))) {
1869 /* mark the iterator as dirty because we won't be updating the degree
1870 * of the peer parent now. This would result in the 'loop detected'
1871 * later on because the peer parent element could become the best next
1872 * element with a degree > 0. We will simply continue our state
1873 * changes and we'll eventually resync when the unlink completed and
1874 * the iterator cookie is updated. */
1879 if ((peer = gst_pad_get_peer (pad))) {
1880 GstElement *peer_element;
1882 if ((peer_element = gst_pad_get_parent_element (peer))) {
1883 GST_OBJECT_LOCK (peer_element);
1884 /* check that we don't go outside of this bin */
1885 if (GST_OBJECT_CAST (peer_element)->parent ==
1886 GST_OBJECT_CAST (bit->bin)) {
1887 gint old_deg, new_deg;
1889 old_deg = HASH_GET_DEGREE (bit, peer_element);
1891 /* check to see if we added an element as sink that was not really a
1892 * sink because it was connected to some other element. */
1893 if (old_deg == -1) {
1894 remove_from_queue (bit, peer_element);
1897 new_deg = old_deg + bit->mode;
1899 GST_DEBUG_OBJECT (bit->bin,
1900 "change element %s, degree %d->%d, linked to %s",
1901 GST_ELEMENT_NAME (peer_element), old_deg, new_deg,
1902 GST_ELEMENT_NAME (element));
1904 /* update degree, it is possible that an element was in 0 and
1905 * reaches -1 here. This would mean that the element had no sinkpads
1906 * but became linked while the state change was happening. We will
1907 * resync on this with the structure change message. */
1909 /* degree hit 0, add to queue */
1910 add_to_queue (bit, peer_element);
1912 HASH_SET_DEGREE (bit, peer_element, new_deg);
1916 GST_OBJECT_UNLOCK (peer_element);
1917 gst_object_unref (peer_element);
1919 gst_object_unref (peer);
1924 GST_DEBUG_OBJECT (bit->bin, "element %s not linked on any sinkpads",
1925 GST_ELEMENT_NAME (element));
1927 GST_OBJECT_UNLOCK (element);
1930 /* find the next best element not handled yet. This is the one
1931 * with the lowest non-negative degree */
1933 find_element (GstElement * element, GstBinSortIterator * bit)
1937 /* element is already handled */
1938 if ((degree = HASH_GET_DEGREE (bit, element)) < 0)
1941 /* first element or element with smaller degree */
1942 if (bit->best == NULL || bit->best_deg > degree) {
1943 bit->best = element;
1944 bit->best_deg = degree;
1948 /* get next element in iterator. the returned element has the
1949 * refcount increased */
1950 static GstIteratorResult
1951 gst_bin_sort_iterator_next (GstBinSortIterator * bit, gpointer * result)
1953 GstBin *bin = bit->bin;
1955 /* empty queue, we have to find a next best element */
1956 if (g_queue_is_empty (bit->queue)) {
1960 bit->best_deg = G_MAXINT;
1961 g_list_foreach (bin->children, (GFunc) find_element, bit);
1962 if ((best = bit->best)) {
1963 /* when we detected an unlink, don't warn because our degrees might be
1964 * screwed up. We will resync later */
1965 if (bit->best_deg != 0 && !bit->dirty) {
1966 /* we don't fail on this one yet */
1967 GST_WARNING_OBJECT (bin, "loop dected in graph");
1968 g_warning ("loop detected in the graph of bin '%s'!!",
1969 GST_ELEMENT_NAME (bin));
1971 /* best unhandled element, schedule as next element */
1972 GST_DEBUG_OBJECT (bin, "queue empty, next best: %s",
1973 GST_ELEMENT_NAME (best));
1974 gst_object_ref (best);
1975 HASH_SET_DEGREE (bit, best, -1);
1978 GST_DEBUG_OBJECT (bin, "queue empty, elements exhausted");
1979 /* no more unhandled elements, we are done */
1980 return GST_ITERATOR_DONE;
1983 /* everything added to the queue got reffed */
1984 *result = g_queue_pop_head (bit->queue);
1987 GST_DEBUG_OBJECT (bin, "queue head gives %s", GST_ELEMENT_NAME (*result));
1988 /* update degrees of linked elements */
1989 update_degree (GST_ELEMENT_CAST (*result), bit);
1991 return GST_ITERATOR_OK;
1994 /* clear queues, recalculate the degrees and restart. */
1996 gst_bin_sort_iterator_resync (GstBinSortIterator * bit)
1998 GstBin *bin = bit->bin;
2000 GST_DEBUG_OBJECT (bin, "resync");
2002 clear_queue (bit->queue);
2004 g_list_foreach (bin->children, (GFunc) reset_degree, bit);
2005 /* calc degrees, incrementing */
2007 g_list_foreach (bin->children, (GFunc) update_degree, bit);
2008 /* for the rest of the function we decrement the degrees */
2012 /* clear queues, unref bin and free iterator. */
2014 gst_bin_sort_iterator_free (GstBinSortIterator * bit)
2016 GstBin *bin = bit->bin;
2018 GST_DEBUG_OBJECT (bin, "free");
2019 clear_queue (bit->queue);
2020 g_queue_free (bit->queue);
2021 g_hash_table_destroy (bit->hash);
2022 gst_object_unref (bin);
2026 /* should be called with the bin LOCK held */
2027 static GstIterator *
2028 gst_bin_sort_iterator_new (GstBin * bin)
2030 GstBinSortIterator *result;
2032 /* we don't need an ItemFunction because we ref the items in the _next
2034 result = (GstBinSortIterator *)
2035 gst_iterator_new (sizeof (GstBinSortIterator),
2037 GST_OBJECT_GET_LOCK (bin),
2038 &bin->priv->structure_cookie,
2039 (GstIteratorNextFunction) gst_bin_sort_iterator_next,
2040 (GstIteratorItemFunction) NULL,
2041 (GstIteratorResyncFunction) gst_bin_sort_iterator_resync,
2042 (GstIteratorFreeFunction) gst_bin_sort_iterator_free);
2043 result->queue = g_queue_new ();
2044 result->hash = g_hash_table_new (NULL, NULL);
2045 gst_object_ref (bin);
2047 gst_bin_sort_iterator_resync (result);
2049 return (GstIterator *) result;
2053 * gst_bin_iterate_sorted:
2056 * Gets an iterator for the elements in this bin in topologically
2057 * sorted order. This means that the elements are returned from
2058 * the most downstream elements (sinks) to the sources.
2060 * This function is used internally to perform the state changes
2061 * of the bin elements and for clock selection.
2063 * Each element yielded by the iterator will have its refcount increased, so
2066 * MT safe. Caller owns returned value.
2068 * Returns: (transfer full): a #GstIterator of #GstElement, or NULL
2071 gst_bin_iterate_sorted (GstBin * bin)
2073 GstIterator *result;
2075 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
2077 GST_OBJECT_LOCK (bin);
2078 result = gst_bin_sort_iterator_new (bin);
2079 GST_OBJECT_UNLOCK (bin);
2084 static GstStateChangeReturn
2085 gst_bin_element_set_state (GstBin * bin, GstElement * element,
2086 GstClockTime base_time, GstClockTime start_time, GstState current,
2089 GstStateChangeReturn ret;
2090 GstState pending, child_current, child_pending;
2094 GST_STATE_LOCK (element);
2096 GST_OBJECT_LOCK (element);
2097 /* set base_time and start time on child */
2098 GST_ELEMENT_START_TIME (element) = start_time;
2099 element->base_time = base_time;
2100 /* peel off the locked flag */
2101 locked = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_LOCKED_STATE);
2102 /* Get the previous set_state result to preserve NO_PREROLL and ASYNC */
2103 ret = GST_STATE_RETURN (element);
2104 child_current = GST_STATE (element);
2105 child_pending = GST_STATE_PENDING (element);
2106 GST_OBJECT_UNLOCK (element);
2108 /* skip locked elements */
2109 if (G_UNLIKELY (locked))
2112 /* if the element was no preroll, just start changing the state regardless
2113 * if it had async elements (in the case of a bin) because they won't preroll
2115 if (G_UNLIKELY (ret == GST_STATE_CHANGE_NO_PREROLL)) {
2116 GST_DEBUG_OBJECT (element, "element is NO_PREROLL, ignore async elements");
2120 GST_OBJECT_LOCK (bin);
2121 pending = GST_STATE_PENDING (bin);
2123 /* Try not to change the state of elements that are already in the state we're
2125 if (!(next == GST_STATE_PLAYING || child_pending != GST_STATE_VOID_PENDING ||
2126 (child_pending == GST_STATE_VOID_PENDING &&
2127 ((pending > child_current && next > child_current) ||
2128 (pending < child_current && next < child_current)))))
2131 /* the element was busy with an upwards async state change, we must wait for
2132 * an ASYNC_DONE message before we attemp to change the state. */
2134 find_message (bin, GST_OBJECT_CAST (element),
2135 GST_MESSAGE_ASYNC_START))) {
2136 #ifndef GST_DISABLE_GST_DEBUG
2137 GstMessage *message = GST_MESSAGE_CAST (found->data);
2139 GST_DEBUG_OBJECT (element, "element message %p, %s async busy",
2140 message, GST_ELEMENT_NAME (GST_MESSAGE_SRC (message)));
2142 /* only wait for upward state changes */
2143 if (next > current) {
2144 /* We found an async element check if we can force its state to change or
2145 * if we have to wait for it to preroll. */
2146 if (G_UNLIKELY (!enable_latency)) {
2147 g_warning ("Future versions of GStreamer will wait for element \"%s\"\n"
2148 "\tto preroll in order to perform correct latency calculations.\n"
2149 "\tPlease verify that the application continues to work correctly by\n"
2150 "\tsetting the environment variable GST_COMPAT to a value containing\n"
2151 "\tthe string 'live-preroll'.", GST_ELEMENT_NAME (element));
2158 GST_OBJECT_UNLOCK (bin);
2161 GST_DEBUG_OBJECT (bin,
2162 "setting element %s to %s, base_time %" GST_TIME_FORMAT,
2163 GST_ELEMENT_NAME (element), gst_element_state_get_name (next),
2164 GST_TIME_ARGS (base_time));
2167 ret = gst_element_set_state (element, next);
2169 GST_STATE_UNLOCK (element);
2175 GST_DEBUG_OBJECT (element,
2176 "element is locked, return previous return %s",
2177 gst_element_state_change_return_get_name (ret));
2178 GST_STATE_UNLOCK (element);
2183 GST_DEBUG_OBJECT (element, "element was busy, delaying state change");
2184 GST_OBJECT_UNLOCK (bin);
2185 GST_STATE_UNLOCK (element);
2186 return GST_STATE_CHANGE_ASYNC;
2190 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2191 "skipping transition from %s to %s, since bin pending"
2192 " is %s : last change state return follows",
2193 gst_element_state_get_name (child_current),
2194 gst_element_state_get_name (next),
2195 gst_element_state_get_name (pending));
2196 GST_OBJECT_UNLOCK (bin);
2197 GST_STATE_UNLOCK (element);
2202 /* gst_iterator_fold functions for pads_activate
2203 * Note how we don't stop the iterator when we fail an activation. This is
2204 * probably a FIXME since when one pad activation fails, we don't want to
2205 * continue our state change. */
2207 activate_pads (GstPad * pad, GValue * ret, gboolean * active)
2209 if (!gst_pad_set_active (pad, *active))
2210 g_value_set_boolean (ret, FALSE);
2212 gst_pad_set_caps (pad, NULL);
2214 /* unref the object that was reffed for us by _fold */
2215 gst_object_unref (pad);
2219 /* returns false on error or early cutout (will never happen because the fold
2220 * function always returns TRUE, see FIXME above) of the fold, true if all
2221 * pads in @iter were (de)activated successfully. */
2223 iterator_activate_fold_with_resync (GstIterator * iter, gpointer user_data)
2225 GstIteratorResult ires;
2228 /* no need to unset this later, it's just a boolean */
2229 g_value_init (&ret, G_TYPE_BOOLEAN);
2230 g_value_set_boolean (&ret, TRUE);
2233 ires = gst_iterator_fold (iter, (GstIteratorFoldFunction) activate_pads,
2236 case GST_ITERATOR_RESYNC:
2237 /* need to reset the result again */
2238 g_value_set_boolean (&ret, TRUE);
2239 gst_iterator_resync (iter);
2241 case GST_ITERATOR_DONE:
2242 /* all pads iterated, return collected value */
2245 /* iterator returned _ERROR or premature end with _OK,
2246 * mark an error and exit */
2247 g_value_set_boolean (&ret, FALSE);
2252 /* return collected value */
2253 return g_value_get_boolean (&ret);
2256 /* is called with STATE_LOCK
2259 gst_bin_src_pads_activate (GstBin * bin, gboolean active)
2264 GST_DEBUG_OBJECT (bin, "src_pads_activate with active %d", active);
2266 iter = gst_element_iterate_src_pads ((GstElement *) bin);
2267 fold_ok = iterator_activate_fold_with_resync (iter, &active);
2268 gst_iterator_free (iter);
2269 if (G_UNLIKELY (!fold_ok))
2272 GST_DEBUG_OBJECT (bin, "pads_activate successful");
2279 GST_DEBUG_OBJECT (bin, "source pads_activate failed");
2285 * gst_bin_recalculate_latency:
2288 * Query @bin for the current latency using and reconfigures this latency to all the
2289 * elements with a LATENCY event.
2291 * This method is typically called on the pipeline when a #GST_MESSAGE_LATENCY
2292 * is posted on the bus.
2294 * This function simply emits the 'do-latency' signal so any custom latency
2295 * calculations will be performed.
2297 * Returns: %TRUE if the latency could be queried and reconfigured.
2302 gst_bin_recalculate_latency (GstBin * bin)
2306 g_signal_emit (bin, gst_bin_signals[DO_LATENCY], 0, &res);
2307 GST_DEBUG_OBJECT (bin, "latency returned %d", res);
2313 gst_bin_do_latency_func (GstBin * bin)
2316 GstElement *element;
2317 GstClockTime min_latency, max_latency;
2320 g_return_val_if_fail (GST_IS_BIN (bin), FALSE);
2322 element = GST_ELEMENT_CAST (bin);
2324 GST_DEBUG_OBJECT (element, "querying latency");
2326 query = gst_query_new_latency ();
2327 if ((res = gst_element_query (element, query))) {
2330 gst_query_parse_latency (query, &live, &min_latency, &max_latency);
2332 GST_DEBUG_OBJECT (element,
2333 "got min latency %" GST_TIME_FORMAT ", max latency %"
2334 GST_TIME_FORMAT ", live %d", GST_TIME_ARGS (min_latency),
2335 GST_TIME_ARGS (max_latency), live);
2337 if (max_latency < min_latency) {
2338 /* this is an impossible situation, some parts of the pipeline might not
2339 * work correctly. We post a warning for now. */
2340 GST_ELEMENT_WARNING (element, CORE, CLOCK, (NULL),
2341 ("Impossible to configure latency: max %" GST_TIME_FORMAT " < min %"
2342 GST_TIME_FORMAT ". Add queues or other buffering elements.",
2343 GST_TIME_ARGS (max_latency), GST_TIME_ARGS (min_latency)));
2346 /* configure latency on elements */
2347 res = gst_element_send_event (element, gst_event_new_latency (min_latency));
2349 GST_INFO_OBJECT (element, "configured latency of %" GST_TIME_FORMAT,
2350 GST_TIME_ARGS (min_latency));
2352 GST_WARNING_OBJECT (element,
2353 "did not really configure latency of %" GST_TIME_FORMAT,
2354 GST_TIME_ARGS (min_latency));
2357 /* this is not a real problem, we just don't configure any latency. */
2358 GST_WARNING_OBJECT (element, "failed to query latency");
2360 gst_query_unref (query);
2365 static GstStateChangeReturn
2366 gst_bin_change_state_func (GstElement * element, GstStateChange transition)
2369 GstStateChangeReturn ret;
2370 GstState current, next;
2371 gboolean have_async;
2372 gboolean have_no_preroll;
2373 GstClockTime base_time, start_time;
2377 /* we don't need to take the STATE_LOCK, it is already taken */
2378 current = (GstState) GST_STATE_TRANSITION_CURRENT (transition);
2379 next = (GstState) GST_STATE_TRANSITION_NEXT (transition);
2381 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2382 "changing state of children from %s to %s",
2383 gst_element_state_get_name (current), gst_element_state_get_name (next));
2385 bin = GST_BIN_CAST (element);
2388 case GST_STATE_PLAYING:
2392 GST_OBJECT_LOCK (bin);
2393 toplevel = BIN_IS_TOPLEVEL (bin);
2394 GST_OBJECT_UNLOCK (bin);
2397 gst_bin_recalculate_latency (bin);
2400 case GST_STATE_PAUSED:
2401 /* Clear EOS list on next PAUSED */
2402 GST_OBJECT_LOCK (bin);
2403 GST_DEBUG_OBJECT (element, "clearing EOS elements");
2404 bin_remove_messages (bin, NULL, GST_MESSAGE_EOS);
2405 GST_OBJECT_UNLOCK (bin);
2406 if (current == GST_STATE_READY)
2407 if (!(gst_bin_src_pads_activate (bin, TRUE)))
2408 goto activate_failure;
2410 case GST_STATE_READY:
2411 /* Clear message list on next READY */
2412 GST_OBJECT_LOCK (bin);
2413 GST_DEBUG_OBJECT (element, "clearing all cached messages");
2414 bin_remove_messages (bin, NULL, GST_MESSAGE_ANY);
2415 GST_OBJECT_UNLOCK (bin);
2416 if (current == GST_STATE_PAUSED)
2417 if (!(gst_bin_src_pads_activate (bin, FALSE)))
2418 goto activate_failure;
2420 case GST_STATE_NULL:
2421 if (current == GST_STATE_READY)
2422 if (!(gst_bin_src_pads_activate (bin, FALSE)))
2423 goto activate_failure;
2429 /* this flag is used to make the async state changes return immediatly. We
2430 * don't want them to interfere with this state change */
2431 GST_OBJECT_LOCK (bin);
2432 bin->polling = TRUE;
2433 GST_OBJECT_UNLOCK (bin);
2435 /* iterate in state change order */
2436 it = gst_bin_iterate_sorted (bin);
2438 /* mark if we've seen an ASYNC element in the bin when we did a state change.
2439 * Note how we don't reset this value when a resync happens, the reason being
2440 * that the async element posted ASYNC_START and we want to post ASYNC_DONE
2441 * even after a resync when the async element is gone */
2445 /* take base_time */
2446 base_time = gst_element_get_base_time (element);
2447 start_time = gst_element_get_start_time (element);
2449 have_no_preroll = FALSE;
2455 switch (gst_iterator_next (it, &data)) {
2456 case GST_ITERATOR_OK:
2460 child = GST_ELEMENT_CAST (data);
2462 /* set state and base_time now */
2463 ret = gst_bin_element_set_state (bin, child, base_time, start_time,
2467 case GST_STATE_CHANGE_SUCCESS:
2468 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2469 "child '%s' changed state to %d(%s) successfully",
2470 GST_ELEMENT_NAME (child), next,
2471 gst_element_state_get_name (next));
2473 case GST_STATE_CHANGE_ASYNC:
2475 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2476 "child '%s' is changing state asynchronously to %s",
2477 GST_ELEMENT_NAME (child), gst_element_state_get_name (next));
2481 case GST_STATE_CHANGE_FAILURE:{
2484 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2485 "child '%s' failed to go to state %d(%s)",
2486 GST_ELEMENT_NAME (child),
2487 next, gst_element_state_get_name (next));
2489 /* Only fail if the child is still inside
2490 * this bin. It might've been removed already
2491 * because of the error by the bin subclass
2492 * to ignore the error. */
2493 parent = gst_object_get_parent (GST_OBJECT_CAST (child));
2494 if (parent == GST_OBJECT_CAST (element)) {
2495 /* element is still in bin, really error now */
2496 gst_object_unref (child);
2497 gst_object_unref (parent);
2500 /* child removed from bin, let the resync code redo the state
2502 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2503 "child '%s' was removed from the bin",
2504 GST_ELEMENT_NAME (child));
2507 gst_object_unref (parent);
2511 case GST_STATE_CHANGE_NO_PREROLL:
2512 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2513 "child '%s' changed state to %d(%s) successfully without preroll",
2514 GST_ELEMENT_NAME (child), next,
2515 gst_element_state_get_name (next));
2516 have_no_preroll = TRUE;
2519 g_assert_not_reached ();
2522 gst_object_unref (child);
2525 case GST_ITERATOR_RESYNC:
2526 GST_CAT_DEBUG (GST_CAT_STATES, "iterator doing resync");
2527 gst_iterator_resync (it);
2530 case GST_ITERATOR_DONE:
2531 GST_CAT_DEBUG (GST_CAT_STATES, "iterator done");
2537 ret = parent_class->change_state (element, transition);
2538 if (G_UNLIKELY (ret == GST_STATE_CHANGE_FAILURE))
2541 if (have_no_preroll) {
2542 GST_CAT_DEBUG (GST_CAT_STATES,
2543 "we have NO_PREROLL elements %s -> NO_PREROLL",
2544 gst_element_state_change_return_get_name (ret));
2545 ret = GST_STATE_CHANGE_NO_PREROLL;
2546 } else if (have_async) {
2547 GST_CAT_DEBUG (GST_CAT_STATES, "we have ASYNC elements %s -> ASYNC",
2548 gst_element_state_change_return_get_name (ret));
2549 ret = GST_STATE_CHANGE_ASYNC;
2553 gst_iterator_free (it);
2555 GST_OBJECT_LOCK (bin);
2556 bin->polling = FALSE;
2557 /* it's possible that we did not get ASYNC from the children while the bin is
2558 * simulating ASYNC behaviour by posting an ASYNC_DONE message on the bus with
2559 * itself as the source. In that case we still want to check if the state
2560 * change completed. */
2561 if (ret != GST_STATE_CHANGE_ASYNC && !bin->priv->pending_async_done) {
2562 /* no element returned ASYNC and there are no pending async_done messages,
2563 * we can just complete. */
2564 GST_DEBUG_OBJECT (bin, "no async elements");
2567 /* when we get here an ASYNC element was found */
2568 if (GST_STATE_TARGET (bin) <= GST_STATE_READY) {
2569 /* we ignore ASYNC state changes when we go to READY or NULL */
2570 GST_DEBUG_OBJECT (bin, "target state %s <= READY",
2571 gst_element_state_get_name (GST_STATE_TARGET (bin)));
2575 GST_DEBUG_OBJECT (bin, "check async elements");
2576 /* check if all elements managed to commit their state already */
2577 if (!find_message (bin, NULL, GST_MESSAGE_ASYNC_START)) {
2578 /* nothing found, remove all old ASYNC_DONE messages. This can happen when
2579 * all the elements commited their state while we were doing the state
2580 * change. We will still return ASYNC for consistency but we commit the
2581 * state already so that a _get_state() will return immediatly. */
2582 bin_remove_messages (bin, NULL, GST_MESSAGE_ASYNC_DONE);
2584 GST_DEBUG_OBJECT (bin, "async elements commited");
2585 bin_handle_async_done (bin, GST_STATE_CHANGE_SUCCESS, FALSE);
2589 bin->priv->pending_async_done = FALSE;
2590 GST_OBJECT_UNLOCK (bin);
2592 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2593 "done changing bin's state from %s to %s, now in %s, ret %s",
2594 gst_element_state_get_name (current),
2595 gst_element_state_get_name (next),
2596 gst_element_state_get_name (GST_STATE (element)),
2597 gst_element_state_change_return_get_name (ret));
2604 GST_CAT_WARNING_OBJECT (GST_CAT_STATES, element,
2605 "failure (de)activating src pads");
2606 return GST_STATE_CHANGE_FAILURE;
2611 * This function is a utility event handler for seek events.
2612 * It will send the event to all sinks or sources depending on the
2615 * Applications are free to override this behaviour and
2616 * implement their own seek handler, but this will work for
2617 * pretty much all cases in practice.
2620 gst_bin_send_event (GstElement * element, GstEvent * event)
2622 GstBin *bin = GST_BIN_CAST (element);
2624 gboolean res = TRUE;
2625 gboolean done = FALSE;
2627 if (GST_EVENT_IS_DOWNSTREAM (event)) {
2628 iter = gst_bin_iterate_sources (bin);
2629 GST_DEBUG_OBJECT (bin, "Sending %s event to src children",
2630 GST_EVENT_TYPE_NAME (event));
2632 iter = gst_bin_iterate_sinks (bin);
2633 GST_DEBUG_OBJECT (bin, "Sending %s event to sink children",
2634 GST_EVENT_TYPE_NAME (event));
2640 switch (gst_iterator_next (iter, &data)) {
2641 case GST_ITERATOR_OK:
2645 gst_event_ref (event);
2646 child = GST_ELEMENT_CAST (data);
2647 res &= gst_element_send_event (child, event);
2648 gst_object_unref (child);
2651 case GST_ITERATOR_RESYNC:
2652 gst_iterator_resync (iter);
2655 case GST_ITERATOR_DONE:
2658 case GST_ITERATOR_ERROR:
2659 g_assert_not_reached ();
2663 gst_iterator_free (iter);
2664 gst_event_unref (event);
2669 /* this is the function called by the threadpool. When async elements commit
2670 * their state, this function will attempt to bring the bin to the next state.
2673 gst_bin_continue_func (BinContinueData * data)
2676 GstState current, next, pending;
2677 GstStateChange transition;
2680 pending = data->pending;
2682 GST_DEBUG_OBJECT (bin, "waiting for state lock");
2683 GST_STATE_LOCK (bin);
2685 GST_DEBUG_OBJECT (bin, "doing state continue");
2686 GST_OBJECT_LOCK (bin);
2688 /* if a new state change happened after this thread was scheduled, we return
2690 if (data->cookie != GST_ELEMENT_CAST (bin)->state_cookie)
2693 current = GST_STATE (bin);
2694 next = GST_STATE_GET_NEXT (current, pending);
2695 transition = (GstStateChange) GST_STATE_TRANSITION (current, next);
2697 GST_STATE_NEXT (bin) = next;
2698 GST_STATE_PENDING (bin) = pending;
2700 GST_STATE_RETURN (bin) = GST_STATE_CHANGE_ASYNC;
2701 GST_OBJECT_UNLOCK (bin);
2703 GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
2704 "continue state change %s to %s, final %s",
2705 gst_element_state_get_name (current),
2706 gst_element_state_get_name (next), gst_element_state_get_name (pending));
2708 gst_element_change_state (GST_ELEMENT_CAST (bin), transition);
2710 GST_STATE_UNLOCK (bin);
2711 GST_DEBUG_OBJECT (bin, "state continue done");
2712 gst_object_unref (bin);
2713 g_slice_free (BinContinueData, data);
2718 GST_OBJECT_UNLOCK (bin);
2719 GST_STATE_UNLOCK (bin);
2720 GST_DEBUG_OBJECT (bin, "state continue aborted due to intervening change");
2721 gst_object_unref (bin);
2722 g_slice_free (BinContinueData, data);
2727 static GstBusSyncReply
2728 bin_bus_handler (GstBus * bus, GstMessage * message, GstBin * bin)
2730 GstBinClass *bclass;
2732 bclass = GST_BIN_GET_CLASS (bin);
2733 if (bclass->handle_message)
2734 bclass->handle_message (bin, message);
2736 gst_message_unref (message);
2738 return GST_BUS_DROP;
2742 bin_push_state_continue (BinContinueData * data)
2749 klass = GST_BIN_GET_CLASS (bin);
2751 GST_DEBUG_OBJECT (bin, "pushing continue on thread pool");
2752 g_thread_pool_push (klass->pool, data, NULL);
2755 /* an element started an async state change, if we were not busy with a state
2756 * change, we perform a lost state.
2757 * This function is called with the OBJECT lock.
2760 bin_handle_async_start (GstBin * bin, gboolean new_base_time)
2762 GstState old_state, new_state;
2764 GstMessage *amessage = NULL;
2766 if (GST_STATE_RETURN (bin) == GST_STATE_CHANGE_FAILURE)
2769 /* get our toplevel state */
2770 toplevel = BIN_IS_TOPLEVEL (bin);
2772 /* prepare an ASYNC_START message, we always post the start message even if we
2773 * are busy with a state change or when we are NO_PREROLL. */
2775 /* non toplevel bin, prepare async-start for the parent */
2777 gst_message_new_async_start (GST_OBJECT_CAST (bin), new_base_time);
2779 if (bin->polling || GST_STATE_PENDING (bin) != GST_STATE_VOID_PENDING)
2782 /* async starts are ignored when we are NO_PREROLL */
2783 if (GST_STATE_RETURN (bin) == GST_STATE_CHANGE_NO_PREROLL)
2784 goto was_no_preroll;
2786 old_state = GST_STATE (bin);
2788 /* when we PLAYING we go back to PAUSED, when preroll happens, we go back to
2789 * PLAYING after optionally redistributing the base_time. */
2790 if (old_state > GST_STATE_PAUSED)
2791 new_state = GST_STATE_PAUSED;
2793 new_state = old_state;
2795 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
2796 "lost state of %s, new %s", gst_element_state_get_name (old_state),
2797 gst_element_state_get_name (new_state));
2799 GST_STATE (bin) = new_state;
2800 GST_STATE_NEXT (bin) = new_state;
2801 GST_STATE_PENDING (bin) = new_state;
2802 GST_STATE_RETURN (bin) = GST_STATE_CHANGE_ASYNC;
2803 GST_OBJECT_UNLOCK (bin);
2806 gst_element_post_message (GST_ELEMENT_CAST (bin),
2807 gst_message_new_state_changed (GST_OBJECT_CAST (bin),
2808 new_state, new_state, new_state));
2812 /* post our ASYNC_START. */
2813 GST_DEBUG_OBJECT (bin, "posting ASYNC_START to parent");
2814 gst_element_post_message (GST_ELEMENT_CAST (bin), amessage);
2816 GST_OBJECT_LOCK (bin);
2822 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "we had an error");
2827 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "state change busy");
2828 GST_OBJECT_UNLOCK (bin);
2833 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "ignoring, we are NO_PREROLL");
2834 GST_OBJECT_UNLOCK (bin);
2839 /* this function is called when there are no more async elements in the bin. We
2840 * post a state changed message and an ASYNC_DONE message.
2841 * This function is called with the OBJECT lock.
2844 bin_handle_async_done (GstBin * bin, GstStateChangeReturn ret,
2845 gboolean flag_pending)
2847 GstState current, pending, target;
2848 GstStateChangeReturn old_ret;
2849 GstState old_state, old_next;
2851 GstMessage *smessage = NULL, *amessage = NULL;
2852 BinContinueData *cont = NULL;
2854 if (GST_STATE_RETURN (bin) == GST_STATE_CHANGE_FAILURE)
2857 pending = GST_STATE_PENDING (bin);
2862 /* check if there is something to commit */
2863 if (pending == GST_STATE_VOID_PENDING)
2864 goto nothing_pending;
2866 old_ret = GST_STATE_RETURN (bin);
2867 GST_STATE_RETURN (bin) = ret;
2869 /* move to the next target state */
2870 target = GST_STATE_TARGET (bin);
2871 pending = GST_STATE_PENDING (bin) = target;
2873 amessage = gst_message_new_async_done (GST_OBJECT_CAST (bin));
2875 old_state = GST_STATE (bin);
2876 /* this is the state we should go to next */
2877 old_next = GST_STATE_NEXT (bin);
2879 if (old_next != GST_STATE_PLAYING) {
2880 GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
2881 "committing state from %s to %s, old pending %s",
2882 gst_element_state_get_name (old_state),
2883 gst_element_state_get_name (old_next),
2884 gst_element_state_get_name (pending));
2886 /* update current state */
2887 current = GST_STATE (bin) = old_next;
2889 GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
2890 "setting state from %s to %s, pending %s",
2891 gst_element_state_get_name (old_state),
2892 gst_element_state_get_name (old_state),
2893 gst_element_state_get_name (pending));
2894 current = old_state;
2897 /* get our toplevel state */
2898 toplevel = BIN_IS_TOPLEVEL (bin);
2900 /* see if we reached the final state. If we are not toplevel, we also have to
2901 * stop here, the parent will continue our state. */
2902 if ((pending == current) || !toplevel) {
2903 GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
2904 "completed state change, pending VOID");
2906 /* mark VOID pending */
2907 pending = GST_STATE_VOID_PENDING;
2908 GST_STATE_PENDING (bin) = pending;
2909 GST_STATE_NEXT (bin) = GST_STATE_VOID_PENDING;
2911 GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
2912 "continue state change, pending %s",
2913 gst_element_state_get_name (pending));
2915 cont = g_slice_new (BinContinueData);
2917 /* ref to the bin */
2918 cont->bin = gst_object_ref (bin);
2919 /* cookie to detect concurrent state change */
2920 cont->cookie = GST_ELEMENT_CAST (bin)->state_cookie;
2921 /* pending target state */
2922 cont->pending = pending;
2924 GST_STATE_RETURN (bin) = GST_STATE_CHANGE_ASYNC;
2925 GST_STATE_NEXT (bin) = GST_STATE_GET_NEXT (old_state, pending);
2928 if (old_next != GST_STATE_PLAYING) {
2929 if (old_state != old_next || old_ret == GST_STATE_CHANGE_ASYNC) {
2930 smessage = gst_message_new_state_changed (GST_OBJECT_CAST (bin),
2931 old_state, old_next, pending);
2934 GST_OBJECT_UNLOCK (bin);
2937 GST_DEBUG_OBJECT (bin, "posting state change message");
2938 gst_element_post_message (GST_ELEMENT_CAST (bin), smessage);
2941 /* post our combined ASYNC_DONE when all is ASYNC_DONE. */
2942 GST_DEBUG_OBJECT (bin, "posting ASYNC_DONE to parent");
2943 gst_element_post_message (GST_ELEMENT_CAST (bin), amessage);
2946 GST_OBJECT_LOCK (bin);
2948 /* toplevel, start continue state */
2949 GST_DEBUG_OBJECT (bin, "all async-done, starting state continue");
2950 bin_push_state_continue (cont);
2952 GST_DEBUG_OBJECT (bin, "state change complete");
2953 GST_STATE_BROADCAST (bin);
2959 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "we had an error");
2964 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "state change busy");
2965 /* if we were busy with a state change and we are requested to flag a
2966 * pending async done, we do so here */
2968 bin->priv->pending_async_done = TRUE;
2973 GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin, "nothing pending");
2978 /* must be called with the object lock. This function releases the lock to post
2981 bin_do_message_forward (GstBin * bin, GstMessage * message)
2983 if (bin->priv->message_forward) {
2984 GstMessage *forwarded;
2986 GST_DEBUG_OBJECT (bin, "pass %s message upward",
2987 GST_MESSAGE_TYPE_NAME (message));
2988 GST_OBJECT_UNLOCK (bin);
2990 /* we need to convert these messages to element messages so that our parent
2991 * bin can easily ignore them and so that the application can easily
2992 * distinguish between the internally forwarded and the real messages. */
2993 forwarded = gst_message_new_element (GST_OBJECT_CAST (bin),
2994 gst_structure_new ("GstBinForwarded",
2995 "message", GST_TYPE_MESSAGE, message, NULL));
2997 gst_element_post_message (GST_ELEMENT_CAST (bin), forwarded);
2999 GST_OBJECT_LOCK (bin);
3003 /* handle child messages:
3005 * This method is called synchronously when a child posts a message on
3008 * GST_MESSAGE_EOS: This message is only posted by sinks
3009 * in the PLAYING state. If all sinks posted the EOS message, post
3012 * GST_MESSAGE_STATE_DIRTY: Deprecated
3014 * GST_MESSAGE_SEGMENT_START: just collect, never forward upwards. If an
3015 * element posts segment_start twice, only the last message is kept.
3017 * GST_MESSAGE_SEGMENT_DONE: replace SEGMENT_START message from same poster
3018 * with the segment_done message. If there are no more segment_start
3019 * messages, post segment_done message upwards.
3021 * GST_MESSAGE_DURATION: remove all previously cached duration messages.
3022 * Whenever someone performs a duration query on the bin, we store the
3023 * result so we can answer it quicker the next time. Any element that
3024 * changes its duration marks our cached values invalid.
3025 * This message is also posted upwards. This is currently disabled
3026 * because too many elements don't post DURATION messages when the
3029 * GST_MESSAGE_CLOCK_LOST: This message is posted by an element when it
3030 * can no longer provide a clock. The default bin behaviour is to
3031 * check if the lost clock was the one provided by the bin. If so and
3032 * we are currently in the PLAYING state, we forward the message to
3034 * This message is also generated when we remove a clock provider from
3035 * a bin. If this message is received by the application, it should
3036 * PAUSE the pipeline and set it back to PLAYING to force a new clock
3037 * and a new base_time distribution.
3039 * GST_MESSAGE_CLOCK_PROVIDE: This message is generated when an element
3040 * can provide a clock. This mostly happens when we add a new clock
3041 * provider to the bin. The default behaviour of the bin is to mark the
3042 * currently selected clock as dirty, which will perform a clock
3043 * recalculation the next time we are asked to provide a clock.
3044 * This message is never sent to the application but is forwarded to
3047 * GST_MESSAGE_ASYNC_START: Create an internal ELEMENT message that stores
3048 * the state of the element and the fact that the element will need a
3049 * new base_time. This message is not forwarded to the application.
3051 * GST_MESSAGE_ASYNC_DONE: Find the internal ELEMENT message we kept for the
3052 * element when it posted ASYNC_START. If all elements are done, post a
3053 * ASYNC_DONE message to the parent.
3055 * OTHER: post upwards.
3058 gst_bin_handle_message_func (GstBin * bin, GstMessage * message)
3061 GstMessageType type;
3062 GstMessage *tmessage;
3065 src = GST_MESSAGE_SRC (message);
3066 type = GST_MESSAGE_TYPE (message);
3068 GST_DEBUG_OBJECT (bin, "[msg %p] handling child %s message of type %s",
3069 message, src ? GST_ELEMENT_NAME (src) : "(NULL)",
3070 GST_MESSAGE_TYPE_NAME (message));
3073 case GST_MESSAGE_ERROR:
3075 GST_OBJECT_LOCK (bin);
3077 GST_DEBUG_OBJECT (bin, "got ERROR message, unlocking state change");
3078 GST_STATE_RETURN (bin) = GST_STATE_CHANGE_FAILURE;
3079 GST_STATE_BROADCAST (bin);
3080 GST_OBJECT_UNLOCK (bin);
3084 case GST_MESSAGE_EOS:
3088 /* collect all eos messages from the children */
3089 GST_OBJECT_LOCK (bin);
3090 bin_do_message_forward (bin, message);
3091 /* ref message for future use */
3092 gst_message_ref (message);
3093 bin_replace_message (bin, message, GST_MESSAGE_EOS);
3095 GST_OBJECT_UNLOCK (bin);
3097 /* if we are completely EOS, we forward an EOS message */
3099 seqnum = gst_message_get_seqnum (message);
3100 tmessage = gst_message_new_eos (GST_OBJECT_CAST (bin));
3101 gst_message_set_seqnum (tmessage, seqnum);
3103 GST_DEBUG_OBJECT (bin,
3104 "all sinks posted EOS, posting seqnum #%" G_GUINT32_FORMAT, seqnum);
3105 gst_element_post_message (GST_ELEMENT_CAST (bin), tmessage);
3107 gst_message_unref (message);
3110 case GST_MESSAGE_STATE_DIRTY:
3112 GST_WARNING_OBJECT (bin, "received deprecated STATE_DIRTY message");
3115 gst_message_unref (message);
3118 case GST_MESSAGE_SEGMENT_START:{
3119 gboolean post = FALSE;
3123 gst_message_parse_segment_start (message, &format, &position);
3124 seqnum = gst_message_get_seqnum (message);
3126 GST_OBJECT_LOCK (bin);
3127 bin_do_message_forward (bin, message);
3128 /* if this is the first segment-start, post to parent but not to the
3130 if (!find_message (bin, NULL, GST_MESSAGE_SEGMENT_START) &&
3131 (GST_OBJECT_PARENT (bin) != NULL)) {
3134 /* replace any previous segment_start message from this source
3135 * with the new segment start message */
3136 bin_replace_message (bin, message, GST_MESSAGE_SEGMENT_START);
3137 GST_OBJECT_UNLOCK (bin);
3139 tmessage = gst_message_new_segment_start (GST_OBJECT_CAST (bin),
3141 gst_message_set_seqnum (tmessage, seqnum);
3143 /* post segment start with initial format and position. */
3144 GST_DEBUG_OBJECT (bin, "posting SEGMENT_START (%u) bus message: %p",
3146 gst_element_post_message (GST_ELEMENT_CAST (bin), tmessage);
3150 case GST_MESSAGE_SEGMENT_DONE:
3152 gboolean post = FALSE;
3156 gst_message_parse_segment_done (message, &format, &position);
3157 seqnum = gst_message_get_seqnum (message);
3159 GST_OBJECT_LOCK (bin);
3160 bin_do_message_forward (bin, message);
3161 bin_replace_message (bin, message, GST_MESSAGE_SEGMENT_START);
3162 /* if there are no more segment_start messages, everybody posted
3163 * a segment_done and we can post one on the bus. */
3165 /* we don't care who still has a pending segment start */
3166 if (!find_message (bin, NULL, GST_MESSAGE_SEGMENT_START)) {
3169 /* remove all old segment_done messages */
3170 bin_remove_messages (bin, NULL, GST_MESSAGE_SEGMENT_DONE);
3172 GST_OBJECT_UNLOCK (bin);
3174 tmessage = gst_message_new_segment_done (GST_OBJECT_CAST (bin),
3176 gst_message_set_seqnum (tmessage, seqnum);
3178 /* post segment done with latest format and position. */
3179 GST_DEBUG_OBJECT (bin, "posting SEGMENT_DONE (%u) bus message: %p",
3181 gst_element_post_message (GST_ELEMENT_CAST (bin), tmessage);
3185 case GST_MESSAGE_DURATION:
3187 /* remove all cached duration messages, next time somebody asks
3188 * for duration, we will recalculate. */
3189 GST_OBJECT_LOCK (bin);
3190 bin_remove_messages (bin, NULL, GST_MESSAGE_DURATION);
3191 GST_OBJECT_UNLOCK (bin);
3194 case GST_MESSAGE_CLOCK_LOST:
3196 GstClock **provided_clock_p;
3197 GstElement **clock_provider_p;
3198 gboolean playing, provided, forward;
3201 gst_message_parse_clock_lost (message, &clock);
3203 GST_OBJECT_LOCK (bin);
3204 bin->clock_dirty = TRUE;
3205 /* if we lost the clock that we provided, post to parent but
3206 * only if we are PLAYING. */
3207 provided = (clock == bin->provided_clock);
3208 playing = (GST_STATE (bin) == GST_STATE_PLAYING);
3209 forward = playing & provided;
3211 GST_DEBUG_OBJECT (bin,
3212 "Lost clock %" GST_PTR_FORMAT " provided by %" GST_PTR_FORMAT,
3213 bin->provided_clock, bin->clock_provider);
3214 provided_clock_p = &bin->provided_clock;
3215 clock_provider_p = &bin->clock_provider;
3216 gst_object_replace ((GstObject **) provided_clock_p, NULL);
3217 gst_object_replace ((GstObject **) clock_provider_p, NULL);
3219 GST_DEBUG_OBJECT (bin, "provided %d, playing %d, forward %d",
3220 provided, playing, forward);
3221 GST_OBJECT_UNLOCK (bin);
3227 gst_message_unref (message);
3230 case GST_MESSAGE_CLOCK_PROVIDE:
3234 GST_OBJECT_LOCK (bin);
3235 bin->clock_dirty = TRUE;
3236 /* a new clock is available, post to parent but not
3237 * to the application */
3238 forward = GST_OBJECT_PARENT (bin) != NULL;
3239 GST_OBJECT_UNLOCK (bin);
3245 gst_message_unref (message);
3248 case GST_MESSAGE_ASYNC_START:
3250 gboolean new_base_time;
3253 GST_DEBUG_OBJECT (bin, "ASYNC_START message %p, %s", message,
3254 src ? GST_OBJECT_NAME (src) : "(NULL)");
3256 gst_message_parse_async_start (message, &new_base_time);
3258 GST_OBJECT_LOCK (bin);
3259 bin_do_message_forward (bin, message);
3261 /* we ignore the message if we are going to <= READY */
3262 if ((target = GST_STATE_TARGET (bin)) <= GST_STATE_READY)
3263 goto ignore_start_message;
3265 /* takes ownership of the message */
3266 bin_replace_message (bin, message, GST_MESSAGE_ASYNC_START);
3268 bin_handle_async_start (bin, new_base_time);
3269 GST_OBJECT_UNLOCK (bin);
3272 ignore_start_message:
3274 GST_DEBUG_OBJECT (bin, "ignoring message, target %s",
3275 gst_element_state_get_name (target));
3276 GST_OBJECT_UNLOCK (bin);
3277 gst_message_unref (message);
3281 case GST_MESSAGE_ASYNC_DONE:
3285 GST_DEBUG_OBJECT (bin, "ASYNC_DONE message %p, %s", message,
3286 src ? GST_OBJECT_NAME (src) : "(NULL)");
3288 GST_OBJECT_LOCK (bin);
3289 bin_do_message_forward (bin, message);
3291 /* ignore messages if we are shutting down */
3292 if ((target = GST_STATE_TARGET (bin)) <= GST_STATE_READY)
3293 goto ignore_done_message;
3295 bin_replace_message (bin, message, GST_MESSAGE_ASYNC_START);
3296 /* if there are no more ASYNC_START messages, everybody posted
3297 * a ASYNC_DONE and we can post one on the bus. When checking, we
3298 * don't care who still has a pending ASYNC_START */
3299 if (!find_message (bin, NULL, GST_MESSAGE_ASYNC_START)) {
3300 /* nothing found, remove all old ASYNC_DONE messages */
3301 bin_remove_messages (bin, NULL, GST_MESSAGE_ASYNC_DONE);
3303 GST_DEBUG_OBJECT (bin, "async elements commited");
3304 /* when we get an async done message when a state change was busy, we
3305 * need to set the pending_done flag so that at the end of the state
3306 * change we can see if we need to verify pending async elements, hence
3307 * the TRUE argument here. */
3308 bin_handle_async_done (bin, GST_STATE_CHANGE_SUCCESS, TRUE);
3310 GST_DEBUG_OBJECT (bin, "there are more async elements pending");
3312 GST_OBJECT_UNLOCK (bin);
3315 ignore_done_message:
3317 GST_DEBUG_OBJECT (bin, "ignoring message, target %s",
3318 gst_element_state_get_name (target));
3319 GST_OBJECT_UNLOCK (bin);
3320 gst_message_unref (message);
3324 case GST_MESSAGE_STRUCTURE_CHANGE:
3328 gst_message_parse_structure_change (message, NULL, NULL, &busy);
3330 GST_OBJECT_LOCK (bin);
3332 /* while the pad is busy, avoid following it when doing state changes.
3333 * Don't update the cookie yet, we will do that after the structure
3334 * change finished and we are ready to inspect the new updated
3336 bin_replace_message (bin, message, GST_MESSAGE_STRUCTURE_CHANGE);
3339 /* a pad link/unlink ended, signal the state change iterator that we
3340 * need to resync by updating the structure_cookie. */
3341 bin_remove_messages (bin, GST_MESSAGE_SRC (message),
3342 GST_MESSAGE_STRUCTURE_CHANGE);
3343 bin->priv->structure_cookie++;
3345 GST_OBJECT_UNLOCK (bin);
3348 gst_message_unref (message);
3359 /* Send all other messages upward */
3360 GST_DEBUG_OBJECT (bin, "posting message upward");
3361 gst_element_post_message (GST_ELEMENT_CAST (bin), message);
3366 /* generic struct passed to all query fold methods */
3375 typedef void (*QueryInitFunction) (GstBin * bin, QueryFold * fold);
3376 typedef void (*QueryDoneFunction) (GstBin * bin, QueryFold * fold);
3378 /* for duration/position we collect all durations/positions and take
3379 * the MAX of all valid results */
3381 bin_query_min_max_init (GstBin * bin, QueryFold * fold)
3389 bin_query_duration_fold (GstElement * item, GValue * ret, QueryFold * fold)
3391 if (gst_element_query (item, fold->query)) {
3394 g_value_set_boolean (ret, TRUE);
3396 gst_query_parse_duration (fold->query, NULL, &duration);
3398 GST_DEBUG_OBJECT (item, "got duration %" G_GINT64_FORMAT, duration);
3400 if (duration > fold->max)
3401 fold->max = duration;
3404 gst_object_unref (item);
3409 bin_query_duration_done (GstBin * bin, QueryFold * fold)
3413 gst_query_parse_duration (fold->query, &format, NULL);
3414 /* store max in query result */
3415 gst_query_set_duration (fold->query, format, fold->max);
3417 GST_DEBUG_OBJECT (bin, "max duration %" G_GINT64_FORMAT, fold->max);
3419 #ifdef DURATION_CACHING
3421 GST_OBJECT_LOCK (bin);
3422 bin->messages = g_list_prepend (bin->messages,
3423 gst_message_new_duration (GST_OBJECT_CAST (bin), format, fold->max));
3424 GST_OBJECT_UNLOCK (bin);
3429 bin_query_position_fold (GstElement * item, GValue * ret, QueryFold * fold)
3431 if (gst_element_query (item, fold->query)) {
3434 g_value_set_boolean (ret, TRUE);
3436 gst_query_parse_position (fold->query, NULL, &position);
3438 GST_DEBUG_OBJECT (item, "got position %" G_GINT64_FORMAT, position);
3440 if (position > fold->max)
3441 fold->max = position;
3444 gst_object_unref (item);
3449 bin_query_position_done (GstBin * bin, QueryFold * fold)
3453 gst_query_parse_position (fold->query, &format, NULL);
3454 /* store max in query result */
3455 gst_query_set_position (fold->query, format, fold->max);
3457 GST_DEBUG_OBJECT (bin, "max position %" G_GINT64_FORMAT, fold->max);
3461 bin_query_latency_fold (GstElement * item, GValue * ret, QueryFold * fold)
3463 if (gst_element_query (item, fold->query)) {
3464 GstClockTime min, max;
3467 gst_query_parse_latency (fold->query, &live, &min, &max);
3469 GST_DEBUG_OBJECT (item,
3470 "got latency min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT
3471 ", live %d", GST_TIME_ARGS (min), GST_TIME_ARGS (max), live);
3473 /* for the combined latency we collect the MAX of all min latencies and
3474 * the MIN of all max latencies */
3476 if (min > fold->min)
3478 if (fold->max == -1)
3480 else if (max < fold->max)
3482 if (fold->live == FALSE)
3486 g_value_set_boolean (ret, FALSE);
3487 GST_DEBUG_OBJECT (item, "failed query");
3490 gst_object_unref (item);
3495 bin_query_latency_done (GstBin * bin, QueryFold * fold)
3497 /* store max in query result */
3498 gst_query_set_latency (fold->query, fold->live, fold->min, fold->max);
3500 GST_DEBUG_OBJECT (bin,
3501 "latency min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT
3502 ", live %d", GST_TIME_ARGS (fold->min), GST_TIME_ARGS (fold->max),
3506 /* generic fold, return first valid result */
3508 bin_query_generic_fold (GstElement * item, GValue * ret, QueryFold * fold)
3512 if ((res = gst_element_query (item, fold->query))) {
3513 g_value_set_boolean (ret, TRUE);
3514 GST_DEBUG_OBJECT (item, "answered query %p", fold->query);
3517 gst_object_unref (item);
3519 /* and stop as soon as we have a valid result */
3524 gst_bin_query (GstElement * element, GstQuery * query)
3526 GstBin *bin = GST_BIN_CAST (element);
3528 gboolean res = FALSE;
3529 GstIteratorFoldFunction fold_func;
3530 QueryInitFunction fold_init = NULL;
3531 QueryDoneFunction fold_done = NULL;
3532 QueryFold fold_data;
3535 switch (GST_QUERY_TYPE (query)) {
3536 case GST_QUERY_DURATION:
3538 #ifdef DURATION_CACHING
3542 gst_query_parse_duration (query, &qformat, NULL);
3544 /* find cached duration query */
3545 GST_OBJECT_LOCK (bin);
3546 for (cached = bin->messages; cached; cached = g_list_next (cached)) {
3547 GstMessage *message = (GstMessage *) cached->data;
3549 if (GST_MESSAGE_TYPE (message) == GST_MESSAGE_DURATION &&
3550 GST_MESSAGE_SRC (message) == GST_OBJECT_CAST (bin)) {
3554 gst_message_parse_duration (message, &format, &duration);
3556 /* if cached same format, copy duration in query result */
3557 if (format == qformat) {
3558 GST_DEBUG_OBJECT (bin, "return cached duration %" G_GINT64_FORMAT,
3560 GST_OBJECT_UNLOCK (bin);
3562 gst_query_set_duration (query, qformat, duration);
3568 GST_OBJECT_UNLOCK (bin);
3570 /* no cached value found, iterate and collect durations */
3571 fold_func = (GstIteratorFoldFunction) bin_query_duration_fold;
3572 fold_init = bin_query_min_max_init;
3573 fold_done = bin_query_duration_done;
3576 case GST_QUERY_POSITION:
3578 fold_func = (GstIteratorFoldFunction) bin_query_position_fold;
3579 fold_init = bin_query_min_max_init;
3580 fold_done = bin_query_position_done;
3583 case GST_QUERY_LATENCY:
3585 fold_func = (GstIteratorFoldFunction) bin_query_latency_fold;
3586 fold_init = bin_query_min_max_init;
3587 fold_done = bin_query_latency_done;
3592 fold_func = (GstIteratorFoldFunction) bin_query_generic_fold;
3596 fold_data.query = query;
3598 /* set the result of the query to FALSE initially */
3599 g_value_init (&ret, G_TYPE_BOOLEAN);
3600 g_value_set_boolean (&ret, res);
3602 iter = gst_bin_iterate_sinks (bin);
3603 GST_DEBUG_OBJECT (bin, "Sending query %p (type %s) to sink children",
3604 query, GST_QUERY_TYPE_NAME (query));
3607 fold_init (bin, &fold_data);
3610 GstIteratorResult ires;
3612 ires = gst_iterator_fold (iter, fold_func, &ret, &fold_data);
3615 case GST_ITERATOR_RESYNC:
3616 gst_iterator_resync (iter);
3618 fold_init (bin, &fold_data);
3619 g_value_set_boolean (&ret, res);
3621 case GST_ITERATOR_OK:
3622 case GST_ITERATOR_DONE:
3623 res = g_value_get_boolean (&ret);
3624 if (fold_done != NULL && res)
3625 fold_done (bin, &fold_data);
3633 gst_iterator_free (iter);
3635 #ifdef DURATION_CACHING
3638 GST_DEBUG_OBJECT (bin, "query %p result %d", query, res);
3644 compare_name (GstElement * element, const gchar * name)
3648 GST_OBJECT_LOCK (element);
3649 eq = strcmp (GST_ELEMENT_NAME (element), name);
3650 GST_OBJECT_UNLOCK (element);
3653 gst_object_unref (element);
3659 * gst_bin_get_by_name:
3661 * @name: the element name to search for
3663 * Gets the element with the given name from a bin. This
3664 * function recurses into child bins.
3666 * Returns NULL if no element with the given name is found in the bin.
3668 * MT safe. Caller owns returned reference.
3670 * Returns: (transfer full): the #GstElement with the given name, or NULL
3673 gst_bin_get_by_name (GstBin * bin, const gchar * name)
3675 GstIterator *children;
3678 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
3680 GST_CAT_INFO (GST_CAT_PARENTAGE, "[%s]: looking up child element %s",
3681 GST_ELEMENT_NAME (bin), name);
3683 children = gst_bin_iterate_recurse (bin);
3684 result = gst_iterator_find_custom (children,
3685 (GCompareFunc) compare_name, (gpointer) name);
3686 gst_iterator_free (children);
3688 return GST_ELEMENT_CAST (result);
3692 * gst_bin_get_by_name_recurse_up:
3694 * @name: the element name to search for
3696 * Gets the element with the given name from this bin. If the
3697 * element is not found, a recursion is performed on the parent bin.
3700 * - no element with the given name is found in the bin
3702 * MT safe. Caller owns returned reference.
3704 * Returns: (transfer full): the #GstElement with the given name, or NULL
3707 gst_bin_get_by_name_recurse_up (GstBin * bin, const gchar * name)
3711 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
3712 g_return_val_if_fail (name != NULL, NULL);
3714 result = gst_bin_get_by_name (bin, name);
3719 parent = gst_object_get_parent (GST_OBJECT_CAST (bin));
3721 if (GST_IS_BIN (parent)) {
3722 result = gst_bin_get_by_name_recurse_up (GST_BIN_CAST (parent), name);
3724 gst_object_unref (parent);
3732 compare_interface (GstElement * element, gpointer interface)
3734 GType interface_type = (GType) interface;
3737 if (G_TYPE_CHECK_INSTANCE_TYPE (element, interface_type)) {
3740 /* we did not find the element, need to release the ref
3741 * added by the iterator */
3742 gst_object_unref (element);
3749 * gst_bin_get_by_interface:
3751 * @iface: the #GType of an interface
3753 * Looks for an element inside the bin that implements the given
3754 * interface. If such an element is found, it returns the element.
3755 * You can cast this element to the given interface afterwards. If you want
3756 * all elements that implement the interface, use
3757 * gst_bin_iterate_all_by_interface(). This function recurses into child bins.
3759 * MT safe. Caller owns returned reference.
3761 * Returns: (transfer full): A #GstElement inside the bin implementing the interface
3764 gst_bin_get_by_interface (GstBin * bin, GType iface)
3766 GstIterator *children;
3769 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
3770 g_return_val_if_fail (G_TYPE_IS_INTERFACE (iface), NULL);
3772 children = gst_bin_iterate_recurse (bin);
3773 result = gst_iterator_find_custom (children, (GCompareFunc) compare_interface,
3775 gst_iterator_free (children);
3777 return GST_ELEMENT_CAST (result);
3781 * gst_bin_iterate_all_by_interface:
3783 * @iface: the #GType of an interface
3785 * Looks for all elements inside the bin that implements the given
3786 * interface. You can safely cast all returned elements to the given interface.
3787 * The function recurses inside child bins. The iterator will yield a series
3788 * of #GstElement that should be unreffed after use.
3790 * Each element yielded by the iterator will have its refcount increased, so
3793 * MT safe. Caller owns returned value.
3795 * Returns: (transfer full): a #GstIterator of #GstElement for all elements
3796 * in the bin implementing the given interface, or NULL
3799 gst_bin_iterate_all_by_interface (GstBin * bin, GType iface)
3801 GstIterator *children;
3802 GstIterator *result;
3804 g_return_val_if_fail (GST_IS_BIN (bin), NULL);
3805 g_return_val_if_fail (G_TYPE_IS_INTERFACE (iface), NULL);
3807 children = gst_bin_iterate_recurse (bin);
3808 result = gst_iterator_filter (children, (GCompareFunc) compare_interface,