bin: reorganize _remove_func to avoid races
[platform/upstream/gstreamer.git] / gst / gstbin.c
1 /* GStreamer
2  *
3  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
4  *                    2004 Wim Taymans <wim.taymans@gmail.com>
5  *
6  * gstbin.c: GstBin container object and support code
7  *
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.
12  *
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.
17  *
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.
22  *
23  * MT safe.
24  */
25
26 /**
27  * SECTION:gstbin
28  * @short_description: Base class and element that can contain other elements
29  *
30  * #GstBin is an element that can contain other #GstElement, allowing them to be
31  * managed as a group.
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.
35  *
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.
39  *
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().
42  *
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
46  * current bin.
47  *
48  * An iterator of elements in a bin can be retrieved with
49  * gst_bin_iterate_elements(). Various other iterators exist to retrieve the
50  * elements in a bin.
51  *
52  * gst_object_unref() is used to drop your reference to the bin.
53  *
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.
57  *
58  * <refsect2><title>Notes</title>
59  * <para>
60  * A #GstBin internally intercepts every #GstMessage posted by its children and
61  * implements the following default behaviour for each of them:
62  * <variablelist>
63  *   <varlistentry>
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>
68  *   </varlistentry>
69  *   <varlistentry>
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>
74  *   </varlistentry>
75  *   <varlistentry>
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>
79  *   </varlistentry>
80  *   <varlistentry>
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.
89  *     </para></listitem>
90  *   </varlistentry>
91  *   <varlistentry>
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
97  *     the bin parent.
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
101  *     distribution.
102  *     </para></listitem>
103  *   </varlistentry>
104  *   <varlistentry>
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.
113  *     </para></listitem>
114  *   </varlistentry>
115  *   <varlistentry>
116  *     <term>OTHERS</term>
117  *     <listitem><para> posted upwards.</para></listitem>
118  *   </varlistentry>
119  * </variablelist>
120  *
121  *
122  * A #GstBin implements the following default behaviour for answering to a
123  * #GstQuery:
124  * <variablelist>
125  *   <varlistentry>
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.
133  *     </para></listitem>
134  *   </varlistentry>
135  *   <varlistentry>
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,
139  *     the query fails.
140  *     </para></listitem>
141  *   </varlistentry>
142  *   <varlistentry>
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>
147  *   </varlistentry>
148  * </variablelist>
149  *
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.
153  *
154  * </para>
155  * </refsect2>
156  *
157  * Last reviewed on 2012-03-28 (0.11.3)
158  */
159
160 #include "gst_private.h"
161
162 #include "gstevent.h"
163 #include "gstbin.h"
164 #include "gstinfo.h"
165 #include "gsterror.h"
166
167 #include "gstutils.h"
168 #include "gstchildproxy.h"
169
170 GST_DEBUG_CATEGORY_STATIC (bin_debug);
171 #define GST_CAT_DEFAULT bin_debug
172
173 /* a bin is toplevel if it has no parent or when it is configured to behave like
174  * a toplevel bin */
175 #define BIN_IS_TOPLEVEL(bin) ((GST_OBJECT_PARENT (bin) == NULL) || bin->priv->asynchandling)
176
177 #define GST_BIN_GET_PRIVATE(obj)  \
178    (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_BIN, GstBinPrivate))
179
180 struct _GstBinPrivate
181 {
182   gboolean asynchandling;
183   /* if we get an ASYNC_DONE message from ourselves, this means that the
184    * subclass will simulate ASYNC behaviour without having ASYNC children. When
185    * such an ASYNC_DONE message is posted while we are doing a state change, we
186    * have to process the message after finishing the state change even when no
187    * child returned GST_STATE_CHANGE_ASYNC. */
188   gboolean pending_async_done;
189
190   guint32 structure_cookie;
191
192 #if 0
193   /* cached index */
194   GstIndex *index;
195 #endif
196
197   /* forward messages from our children */
198   gboolean message_forward;
199
200   gboolean posted_eos;
201 };
202
203 typedef struct
204 {
205   GstBin *bin;
206   guint32 cookie;
207   GstState pending;
208 } BinContinueData;
209
210 static void gst_bin_dispose (GObject * object);
211
212 static void gst_bin_set_property (GObject * object, guint prop_id,
213     const GValue * value, GParamSpec * pspec);
214 static void gst_bin_get_property (GObject * object, guint prop_id,
215     GValue * value, GParamSpec * pspec);
216
217 static GstStateChangeReturn gst_bin_change_state_func (GstElement * element,
218     GstStateChange transition);
219 static void gst_bin_state_changed (GstElement * element, GstState oldstate,
220     GstState newstate, GstState pending);
221 static GstStateChangeReturn gst_bin_get_state_func (GstElement * element,
222     GstState * state, GstState * pending, GstClockTime timeout);
223 static void bin_handle_async_done (GstBin * bin, GstStateChangeReturn ret,
224     gboolean flag_pending, gboolean reset_time);
225 static void bin_handle_async_start (GstBin * bin);
226 static void bin_push_state_continue (BinContinueData * data);
227 static void bin_do_eos (GstBin * bin);
228
229 static gboolean gst_bin_add_func (GstBin * bin, GstElement * element);
230 static gboolean gst_bin_remove_func (GstBin * bin, GstElement * element);
231
232 #if 0
233 static void gst_bin_set_index_func (GstElement * element, GstIndex * index);
234 static GstIndex *gst_bin_get_index_func (GstElement * element);
235 #endif
236
237 static GstClock *gst_bin_provide_clock_func (GstElement * element);
238 static gboolean gst_bin_set_clock_func (GstElement * element, GstClock * clock);
239
240 static void gst_bin_handle_message_func (GstBin * bin, GstMessage * message);
241 static gboolean gst_bin_send_event (GstElement * element, GstEvent * event);
242 static GstBusSyncReply bin_bus_handler (GstBus * bus,
243     GstMessage * message, GstBin * bin);
244 static gboolean gst_bin_query (GstElement * element, GstQuery * query);
245
246 static gboolean gst_bin_do_latency_func (GstBin * bin);
247
248 static void bin_remove_messages (GstBin * bin, GstObject * src,
249     GstMessageType types);
250 static void gst_bin_continue_func (BinContinueData * data);
251 static gint bin_element_is_sink (GstElement * child, GstBin * bin);
252 static gint bin_element_is_src (GstElement * child, GstBin * bin);
253
254 static GstIterator *gst_bin_sort_iterator_new (GstBin * bin);
255
256 /* Bin signals and properties */
257 enum
258 {
259   ELEMENT_ADDED,
260   ELEMENT_REMOVED,
261   DO_LATENCY,
262   LAST_SIGNAL
263 };
264
265 #define DEFAULT_ASYNC_HANDLING  FALSE
266 #define DEFAULT_MESSAGE_FORWARD FALSE
267
268 enum
269 {
270   PROP_0,
271   PROP_ASYNC_HANDLING,
272   PROP_MESSAGE_FORWARD,
273   PROP_LAST
274 };
275
276 static void gst_bin_child_proxy_init (gpointer g_iface, gpointer iface_data);
277
278 static guint gst_bin_signals[LAST_SIGNAL] = { 0 };
279
280 #define _do_init \
281 { \
282   static const GInterfaceInfo iface_info = { \
283     gst_bin_child_proxy_init, \
284     NULL, \
285     NULL}; \
286   \
287   g_type_add_interface_static (g_define_type_id, GST_TYPE_CHILD_PROXY, &iface_info); \
288   \
289   GST_DEBUG_CATEGORY_INIT (bin_debug, "bin", GST_DEBUG_BOLD, \
290       "debugging info for the 'bin' container element"); \
291   \
292 }
293
294 #define gst_bin_parent_class parent_class
295 G_DEFINE_TYPE_WITH_CODE (GstBin, gst_bin, GST_TYPE_ELEMENT, _do_init);
296
297 static GObject *
298 gst_bin_child_proxy_get_child_by_index (GstChildProxy * child_proxy,
299     guint index)
300 {
301   GstObject *res;
302   GstBin *bin;
303
304   bin = GST_BIN_CAST (child_proxy);
305
306   GST_OBJECT_LOCK (bin);
307   if ((res = g_list_nth_data (bin->children, index)))
308     gst_object_ref (res);
309   GST_OBJECT_UNLOCK (bin);
310
311   return (GObject *) res;
312 }
313
314 static guint
315 gst_bin_child_proxy_get_children_count (GstChildProxy * child_proxy)
316 {
317   guint num;
318   GstBin *bin;
319
320   bin = GST_BIN_CAST (child_proxy);
321
322   GST_OBJECT_LOCK (bin);
323   num = bin->numchildren;
324   GST_OBJECT_UNLOCK (bin);
325
326   return num;
327 }
328
329 static void
330 gst_bin_child_proxy_init (gpointer g_iface, gpointer iface_data)
331 {
332   GstChildProxyInterface *iface = g_iface;
333
334   iface->get_children_count = gst_bin_child_proxy_get_children_count;
335   iface->get_child_by_index = gst_bin_child_proxy_get_child_by_index;
336 }
337
338 static gboolean
339 _gst_boolean_accumulator (GSignalInvocationHint * ihint,
340     GValue * return_accu, const GValue * handler_return, gpointer dummy)
341 {
342   gboolean myboolean;
343
344   myboolean = g_value_get_boolean (handler_return);
345   if (!(ihint->run_type & G_SIGNAL_RUN_CLEANUP))
346     g_value_set_boolean (return_accu, myboolean);
347
348   GST_DEBUG ("invocation %d, %d", ihint->run_type, myboolean);
349
350   /* stop emission */
351   return FALSE;
352 }
353
354 static void
355 gst_bin_class_init (GstBinClass * klass)
356 {
357   GObjectClass *gobject_class;
358   GstElementClass *gstelement_class;
359   GError *err;
360
361   gobject_class = (GObjectClass *) klass;
362   gstelement_class = (GstElementClass *) klass;
363
364   g_type_class_add_private (klass, sizeof (GstBinPrivate));
365
366   gobject_class->set_property = gst_bin_set_property;
367   gobject_class->get_property = gst_bin_get_property;
368
369   /**
370    * GstBin:async-handling
371    *
372    * If set to #TRUE, the bin will handle asynchronous state changes.
373    * This should be used only if the bin subclass is modifying the state
374    * of its children on its own.
375    *
376    * Since: 0.10.13
377    */
378   g_object_class_install_property (gobject_class, PROP_ASYNC_HANDLING,
379       g_param_spec_boolean ("async-handling", "Async Handling",
380           "The bin will handle Asynchronous state changes",
381           DEFAULT_ASYNC_HANDLING, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
382
383   /**
384    * GstBin::element-added:
385    * @bin: the #GstBin
386    * @element: the #GstElement that was added to the bin
387    *
388    * Will be emitted after the element was added to the bin.
389    */
390   gst_bin_signals[ELEMENT_ADDED] =
391       g_signal_new ("element-added", G_TYPE_FROM_CLASS (klass),
392       G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GstBinClass, element_added), NULL,
393       NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_ELEMENT);
394   /**
395    * GstBin::element-removed:
396    * @bin: the #GstBin
397    * @element: the #GstElement that was removed from the bin
398    *
399    * Will be emitted after the element was removed from the bin.
400    */
401   gst_bin_signals[ELEMENT_REMOVED] =
402       g_signal_new ("element-removed", G_TYPE_FROM_CLASS (klass),
403       G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GstBinClass, element_removed), NULL,
404       NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_ELEMENT);
405   /**
406    * GstBin::do-latency:
407    * @bin: the #GstBin
408    *
409    * Will be emitted when the bin needs to perform latency calculations. This
410    * signal is only emited for toplevel bins or when async-handling is
411    * enabled.
412    *
413    * Only one signal handler is invoked. If no signals are connected, the
414    * default handler is invoked, which will query and distribute the lowest
415    * possible latency to all sinks.
416    *
417    * Connect to this signal if the default latency calculations are not
418    * sufficient, like when you need different latencies for different sinks in
419    * the same pipeline.
420    *
421    * Since: 0.10.22
422    */
423   gst_bin_signals[DO_LATENCY] =
424       g_signal_new ("do-latency", G_TYPE_FROM_CLASS (klass),
425       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstBinClass, do_latency),
426       _gst_boolean_accumulator, NULL, g_cclosure_marshal_generic,
427       G_TYPE_BOOLEAN, 0, G_TYPE_NONE);
428
429   /**
430    * GstBin:message-forward
431    *
432    * Forward all children messages, even those that would normally be filtered by
433    * the bin. This can be interesting when one wants to be notified of the EOS
434    * state of individual elements, for example.
435    *
436    * The messages are converted to an ELEMENT message with the bin as the
437    * source. The structure of the message is named 'GstBinForwarded' and contains
438    * a field named 'message' of type GST_TYPE_MESSAGE that contains the original
439    * forwarded message.
440    *
441    * Since: 0.10.31
442    */
443   g_object_class_install_property (gobject_class, PROP_MESSAGE_FORWARD,
444       g_param_spec_boolean ("message-forward", "Message Forward",
445           "Forwards all children messages",
446           DEFAULT_MESSAGE_FORWARD, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
447
448   gobject_class->dispose = gst_bin_dispose;
449
450   gst_element_class_set_metadata (gstelement_class, "Generic bin",
451       "Generic/Bin",
452       "Simple container object",
453       "Erik Walthinsen <omega@cse.ogi.edu>,"
454       "Wim Taymans <wim.taymans@gmail.com>");
455
456   gstelement_class->change_state =
457       GST_DEBUG_FUNCPTR (gst_bin_change_state_func);
458   gstelement_class->state_changed = GST_DEBUG_FUNCPTR (gst_bin_state_changed);
459   gstelement_class->get_state = GST_DEBUG_FUNCPTR (gst_bin_get_state_func);
460 #if 0
461   gstelement_class->get_index = GST_DEBUG_FUNCPTR (gst_bin_get_index_func);
462   gstelement_class->set_index = GST_DEBUG_FUNCPTR (gst_bin_set_index_func);
463 #endif
464   gstelement_class->provide_clock =
465       GST_DEBUG_FUNCPTR (gst_bin_provide_clock_func);
466   gstelement_class->set_clock = GST_DEBUG_FUNCPTR (gst_bin_set_clock_func);
467
468   gstelement_class->send_event = GST_DEBUG_FUNCPTR (gst_bin_send_event);
469   gstelement_class->query = GST_DEBUG_FUNCPTR (gst_bin_query);
470
471   klass->add_element = GST_DEBUG_FUNCPTR (gst_bin_add_func);
472   klass->remove_element = GST_DEBUG_FUNCPTR (gst_bin_remove_func);
473   klass->handle_message = GST_DEBUG_FUNCPTR (gst_bin_handle_message_func);
474
475   klass->do_latency = GST_DEBUG_FUNCPTR (gst_bin_do_latency_func);
476
477   GST_DEBUG ("creating bin thread pool");
478   err = NULL;
479   klass->pool =
480       g_thread_pool_new ((GFunc) gst_bin_continue_func, NULL, -1, FALSE, &err);
481   if (err != NULL) {
482     g_critical ("could alloc threadpool %s", err->message);
483   }
484 }
485
486 static void
487 gst_bin_init (GstBin * bin)
488 {
489   GstBus *bus;
490
491   bin->numchildren = 0;
492   bin->children = NULL;
493   bin->children_cookie = 0;
494   bin->messages = NULL;
495   bin->provided_clock = NULL;
496   bin->clock_dirty = FALSE;
497
498   /* Set up a bus for listening to child elements */
499   bus = g_object_new (GST_TYPE_BUS, "enable-async", FALSE, NULL);
500   bin->child_bus = bus;
501   GST_DEBUG_OBJECT (bin, "using bus %" GST_PTR_FORMAT " to listen to children",
502       bus);
503   gst_bus_set_sync_handler (bus, (GstBusSyncHandler) bin_bus_handler, bin);
504
505   bin->priv = GST_BIN_GET_PRIVATE (bin);
506   bin->priv->asynchandling = DEFAULT_ASYNC_HANDLING;
507   bin->priv->structure_cookie = 0;
508   bin->priv->message_forward = DEFAULT_MESSAGE_FORWARD;
509 }
510
511 static void
512 gst_bin_dispose (GObject * object)
513 {
514   GstBin *bin = GST_BIN_CAST (object);
515   GstBus **child_bus_p = &bin->child_bus;
516   GstClock **provided_clock_p = &bin->provided_clock;
517   GstElement **clock_provider_p = &bin->clock_provider;
518
519   GST_CAT_DEBUG_OBJECT (GST_CAT_REFCOUNTING, object, "dispose");
520
521   GST_OBJECT_LOCK (object);
522   gst_object_replace ((GstObject **) child_bus_p, NULL);
523   gst_object_replace ((GstObject **) provided_clock_p, NULL);
524   gst_object_replace ((GstObject **) clock_provider_p, NULL);
525   bin_remove_messages (bin, NULL, GST_MESSAGE_ANY);
526   GST_OBJECT_UNLOCK (object);
527
528   while (bin->children) {
529     gst_bin_remove (bin, GST_ELEMENT_CAST (bin->children->data));
530   }
531   if (G_UNLIKELY (bin->children != NULL)) {
532     g_critical ("could not remove elements from bin '%s'",
533         GST_STR_NULL (GST_OBJECT_NAME (object)));
534   }
535
536   G_OBJECT_CLASS (parent_class)->dispose (object);
537 }
538
539 /**
540  * gst_bin_new:
541  * @name: the name of the new bin
542  *
543  * Creates a new bin with the given name.
544  *
545  * Returns: (transfer floating): a new #GstBin
546  */
547 GstElement *
548 gst_bin_new (const gchar * name)
549 {
550   return gst_element_factory_make ("bin", name);
551 }
552
553 static void
554 gst_bin_set_property (GObject * object, guint prop_id,
555     const GValue * value, GParamSpec * pspec)
556 {
557   GstBin *gstbin;
558
559   gstbin = GST_BIN_CAST (object);
560
561   switch (prop_id) {
562     case PROP_ASYNC_HANDLING:
563       GST_OBJECT_LOCK (gstbin);
564       gstbin->priv->asynchandling = g_value_get_boolean (value);
565       GST_OBJECT_UNLOCK (gstbin);
566       break;
567     case PROP_MESSAGE_FORWARD:
568       GST_OBJECT_LOCK (gstbin);
569       gstbin->priv->message_forward = g_value_get_boolean (value);
570       GST_OBJECT_UNLOCK (gstbin);
571       break;
572     default:
573       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
574       break;
575   }
576 }
577
578 static void
579 gst_bin_get_property (GObject * object, guint prop_id,
580     GValue * value, GParamSpec * pspec)
581 {
582   GstBin *gstbin;
583
584   gstbin = GST_BIN_CAST (object);
585
586   switch (prop_id) {
587     case PROP_ASYNC_HANDLING:
588       GST_OBJECT_LOCK (gstbin);
589       g_value_set_boolean (value, gstbin->priv->asynchandling);
590       GST_OBJECT_UNLOCK (gstbin);
591       break;
592     case PROP_MESSAGE_FORWARD:
593       GST_OBJECT_LOCK (gstbin);
594       g_value_set_boolean (value, gstbin->priv->message_forward);
595       GST_OBJECT_UNLOCK (gstbin);
596       break;
597     default:
598       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
599       break;
600   }
601 }
602
603 #if 0
604 /* return the cached index */
605 static GstIndex *
606 gst_bin_get_index_func (GstElement * element)
607 {
608   GstBin *bin;
609   GstIndex *result;
610
611   bin = GST_BIN_CAST (element);
612
613   GST_OBJECT_LOCK (bin);
614   if ((result = bin->priv->index))
615     gst_object_ref (result);
616   GST_OBJECT_UNLOCK (bin);
617
618   return result;
619 }
620
621 /* set the index on all elements in this bin
622  *
623  * MT safe
624  */
625 static void
626 gst_bin_set_index_func (GstElement * element, GstIndex * index)
627 {
628   GstBin *bin;
629   gboolean done;
630   GstIterator *it;
631   GstIndex *old;
632   GValue data = { 0, };
633
634   bin = GST_BIN_CAST (element);
635
636   GST_OBJECT_LOCK (bin);
637   old = bin->priv->index;
638   if (G_UNLIKELY (old == index))
639     goto was_set;
640   if (index)
641     gst_object_ref (index);
642   bin->priv->index = index;
643   GST_OBJECT_UNLOCK (bin);
644
645   if (old)
646     gst_object_unref (old);
647
648   it = gst_bin_iterate_elements (bin);
649
650   /* set the index on all elements in the bin */
651   done = FALSE;
652   while (!done) {
653     switch (gst_iterator_next (it, &data)) {
654       case GST_ITERATOR_OK:
655       {
656         GstElement *child = g_value_get_object (&data);
657
658         GST_DEBUG_OBJECT (bin, "setting index on '%s'",
659             GST_ELEMENT_NAME (child));
660         gst_element_set_index (child, index);
661
662         g_value_reset (&data);
663         break;
664       }
665       case GST_ITERATOR_RESYNC:
666         GST_DEBUG_OBJECT (bin, "iterator doing resync");
667         gst_iterator_resync (it);
668         break;
669       default:
670       case GST_ITERATOR_DONE:
671         GST_DEBUG_OBJECT (bin, "iterator done");
672         done = TRUE;
673         break;
674     }
675   }
676   g_value_unset (&data);
677   gst_iterator_free (it);
678   return;
679
680 was_set:
681   {
682     GST_DEBUG_OBJECT (bin, "index was already set");
683     GST_OBJECT_UNLOCK (bin);
684     return;
685   }
686 }
687 #endif
688
689 /* set the clock on all elements in this bin
690  *
691  * MT safe
692  */
693 static gboolean
694 gst_bin_set_clock_func (GstElement * element, GstClock * clock)
695 {
696   GstBin *bin;
697   gboolean done;
698   GstIterator *it;
699   gboolean res = TRUE;
700   GValue data = { 0, };
701
702   bin = GST_BIN_CAST (element);
703
704   it = gst_bin_iterate_elements (bin);
705
706   done = FALSE;
707   while (!done) {
708     switch (gst_iterator_next (it, &data)) {
709       case GST_ITERATOR_OK:
710       {
711         GstElement *child = g_value_get_object (&data);
712
713         res &= gst_element_set_clock (child, clock);
714
715         g_value_reset (&data);
716         break;
717       }
718       case GST_ITERATOR_RESYNC:
719         GST_DEBUG_OBJECT (bin, "iterator doing resync");
720         gst_iterator_resync (it);
721         res = TRUE;
722         break;
723       default:
724       case GST_ITERATOR_DONE:
725         GST_DEBUG_OBJECT (bin, "iterator done");
726         done = TRUE;
727         break;
728     }
729   }
730   g_value_unset (&data);
731   gst_iterator_free (it);
732
733   if (res)
734     res = GST_ELEMENT_CLASS (parent_class)->set_clock (element, clock);
735
736   return res;
737 }
738
739 /* get the clock for this bin by asking all of the children in this bin
740  *
741  * The ref of the returned clock in increased so unref after usage.
742  *
743  * We loop the elements in state order and pick the last clock we can
744  * get. This makes sure we get a clock from the source.
745  *
746  * MT safe
747  */
748 static GstClock *
749 gst_bin_provide_clock_func (GstElement * element)
750 {
751   GstClock *result = NULL;
752   GstElement *provider = NULL;
753   GstBin *bin;
754   GstIterator *it;
755   gboolean done;
756   GValue val = { 0, };
757   GstClock **provided_clock_p;
758   GstElement **clock_provider_p;
759
760   bin = GST_BIN_CAST (element);
761
762   GST_OBJECT_LOCK (bin);
763   if (!bin->clock_dirty)
764     goto not_dirty;
765
766   GST_DEBUG_OBJECT (bin, "finding new clock");
767
768   it = gst_bin_sort_iterator_new (bin);
769   GST_OBJECT_UNLOCK (bin);
770
771   done = FALSE;
772   while (!done) {
773     switch (gst_iterator_next (it, &val)) {
774       case GST_ITERATOR_OK:
775       {
776         GstElement *child = g_value_get_object (&val);
777         GstClock *clock;
778
779         clock = gst_element_provide_clock (child);
780         if (clock) {
781           GST_DEBUG_OBJECT (bin, "found candidate clock %p by element %s",
782               clock, GST_ELEMENT_NAME (child));
783           if (result) {
784             gst_object_unref (result);
785             gst_object_unref (provider);
786           }
787           result = clock;
788           provider = gst_object_ref (child);
789         }
790
791         g_value_reset (&val);
792         break;
793       }
794       case GST_ITERATOR_RESYNC:
795         gst_iterator_resync (it);
796         break;
797       default:
798       case GST_ITERATOR_DONE:
799         done = TRUE;
800         break;
801     }
802   }
803   g_value_unset (&val);
804   gst_iterator_free (it);
805
806   GST_OBJECT_LOCK (bin);
807   if (!bin->clock_dirty) {
808     if (provider)
809       gst_object_unref (provider);
810     if (result)
811       gst_object_unref (result);
812     result = NULL;
813
814     goto not_dirty;
815   }
816
817   provided_clock_p = &bin->provided_clock;
818   clock_provider_p = &bin->clock_provider;
819   gst_object_replace ((GstObject **) provided_clock_p, (GstObject *) result);
820   gst_object_replace ((GstObject **) clock_provider_p, (GstObject *) provider);
821   bin->clock_dirty = FALSE;
822   GST_DEBUG_OBJECT (bin,
823       "provided new clock %" GST_PTR_FORMAT " by provider %" GST_PTR_FORMAT,
824       result, provider);
825   /* Provider is not being returned to caller, just the result */
826   if (provider)
827     gst_object_unref (provider);
828   GST_OBJECT_UNLOCK (bin);
829
830   return result;
831
832 not_dirty:
833   {
834     if ((result = bin->provided_clock))
835       gst_object_ref (result);
836     GST_DEBUG_OBJECT (bin, "returning old clock %p", result);
837     GST_OBJECT_UNLOCK (bin);
838
839     return result;
840   }
841 }
842
843 /*
844  * functions for manipulating cached messages
845  */
846 typedef struct
847 {
848   GstObject *src;
849   GstMessageType types;
850 } MessageFind;
851
852 /* check if a message is of given src and type */
853 static gint
854 message_check (GstMessage * message, MessageFind * target)
855 {
856   gboolean eq = TRUE;
857
858   if (target->src)
859     eq &= GST_MESSAGE_SRC (message) == target->src;
860   if (target->types)
861     eq &= (GST_MESSAGE_TYPE (message) & target->types) != 0;
862   GST_LOG ("looking at message %p: %d", message, eq);
863
864   return (eq ? 0 : 1);
865 }
866
867 static GList *
868 find_message (GstBin * bin, GstObject * src, GstMessageType types)
869 {
870   GList *result;
871   MessageFind find;
872
873   find.src = src;
874   find.types = types;
875
876   result = g_list_find_custom (bin->messages, &find,
877       (GCompareFunc) message_check);
878
879   if (result) {
880     GST_DEBUG_OBJECT (bin, "we found a message %p from %s matching types %08x",
881         result->data, GST_OBJECT_NAME (GST_MESSAGE_CAST (result->data)->src),
882         types);
883   } else {
884     GST_DEBUG_OBJECT (bin, "no message found matching types %08x", types);
885 #ifndef GST_DISABLE_GST_DEBUG
886     {
887       guint i;
888
889       for (i = 0; i < 32; i++)
890         if (types & (1 << i))
891           GST_DEBUG_OBJECT (bin, "  %s", gst_message_type_get_name (1 << i));
892     }
893 #endif
894   }
895
896   return result;
897 }
898
899 /* with LOCK, returns TRUE if message had a valid SRC, takes ownership of
900  * the message.
901  *
902  * A message that is cached and has the same SRC and type is replaced
903  * by the given message.
904  */
905 static gboolean
906 bin_replace_message (GstBin * bin, GstMessage * message, GstMessageType types)
907 {
908   GList *previous;
909   GstObject *src;
910   gboolean res = TRUE;
911
912   if ((src = GST_MESSAGE_SRC (message))) {
913     /* first find the previous message posted by this element */
914     if ((previous = find_message (bin, src, types))) {
915       GstMessage *previous_msg;
916
917       /* if we found a previous message, replace it */
918       previous_msg = previous->data;
919       previous->data = message;
920
921       GST_DEBUG_OBJECT (bin, "replace old message %s from %s with %s message",
922           GST_MESSAGE_TYPE_NAME (previous_msg), GST_ELEMENT_NAME (src),
923           GST_MESSAGE_TYPE_NAME (message));
924
925       gst_message_unref (previous_msg);
926     } else {
927       /* keep new message */
928       bin->messages = g_list_prepend (bin->messages, message);
929
930       GST_DEBUG_OBJECT (bin, "got new message %p, %s from %s",
931           message, GST_MESSAGE_TYPE_NAME (message), GST_ELEMENT_NAME (src));
932     }
933   } else {
934     GST_DEBUG_OBJECT (bin, "got message %s from (NULL), not processing",
935         GST_MESSAGE_TYPE_NAME (message));
936     res = FALSE;
937     gst_message_unref (message);
938   }
939   return res;
940 }
941
942 /* with LOCK. Remove all messages of given types */
943 static void
944 bin_remove_messages (GstBin * bin, GstObject * src, GstMessageType types)
945 {
946   MessageFind find;
947   GList *walk, *next;
948
949   find.src = src;
950   find.types = types;
951
952   for (walk = bin->messages; walk; walk = next) {
953     GstMessage *message = (GstMessage *) walk->data;
954
955     next = g_list_next (walk);
956
957     if (message_check (message, &find) == 0) {
958       GST_DEBUG_OBJECT (GST_MESSAGE_SRC (message),
959           "deleting message %p of types 0x%08x", message, types);
960       bin->messages = g_list_delete_link (bin->messages, walk);
961       gst_message_unref (message);
962     } else {
963       GST_DEBUG_OBJECT (GST_MESSAGE_SRC (message),
964           "not deleting message %p of type 0x%08x", message,
965           GST_MESSAGE_TYPE (message));
966     }
967   }
968 }
969
970
971 /* Check if the bin is EOS. We do this by scanning all sinks and
972  * checking if they posted an EOS message.
973  *
974  * call with bin LOCK */
975 static gboolean
976 is_eos (GstBin * bin, guint32 * seqnum)
977 {
978   gboolean result;
979   gint n_eos = 0;
980   GList *walk, *msgs;
981
982   result = TRUE;
983   for (walk = bin->children; walk; walk = g_list_next (walk)) {
984     GstElement *element;
985
986     element = GST_ELEMENT_CAST (walk->data);
987     if (bin_element_is_sink (element, bin) == 0) {
988       /* check if element posted EOS */
989       if ((msgs =
990               find_message (bin, GST_OBJECT_CAST (element), GST_MESSAGE_EOS))) {
991         GST_DEBUG ("sink '%s' posted EOS", GST_ELEMENT_NAME (element));
992         *seqnum = gst_message_get_seqnum (GST_MESSAGE_CAST (msgs->data));
993         n_eos++;
994       } else {
995         GST_DEBUG ("sink '%s' did not post EOS yet",
996             GST_ELEMENT_NAME (element));
997         result = FALSE;
998         break;
999       }
1000     }
1001   }
1002   /* FIXME: Some tests (e.g. elements/capsfilter) use
1003    * pipelines with a dangling sinkpad but no sink element.
1004    * These tests assume that no EOS message is ever
1005    * posted on the bus so let's keep that behaviour.
1006    * In valid pipelines this doesn't make a difference.
1007    */
1008   return result && n_eos > 0;
1009 }
1010
1011 static void
1012 unlink_pads (const GValue * item, gpointer user_data)
1013 {
1014   GstPad *pad;
1015   GstPad *peer;
1016
1017   pad = g_value_get_object (item);
1018
1019   if ((peer = gst_pad_get_peer (pad))) {
1020     if (gst_pad_get_direction (pad) == GST_PAD_SRC)
1021       gst_pad_unlink (pad, peer);
1022     else
1023       gst_pad_unlink (peer, pad);
1024     gst_object_unref (peer);
1025   }
1026 }
1027
1028 /* vmethod that adds an element to a bin
1029  *
1030  * MT safe
1031  */
1032 static gboolean
1033 gst_bin_add_func (GstBin * bin, GstElement * element)
1034 {
1035   gchar *elem_name;
1036   GstIterator *it;
1037   gboolean is_sink, is_source, provides_clock, requires_clock;
1038   GstMessage *clock_message = NULL, *async_message = NULL;
1039   GstStateChangeReturn ret;
1040
1041   GST_DEBUG_OBJECT (bin, "element :%s", GST_ELEMENT_NAME (element));
1042
1043   /* we obviously can't add ourself to ourself */
1044   if (G_UNLIKELY (GST_ELEMENT_CAST (element) == GST_ELEMENT_CAST (bin)))
1045     goto adding_itself;
1046
1047   /* get the element name to make sure it is unique in this bin. */
1048   GST_OBJECT_LOCK (element);
1049   elem_name = g_strdup (GST_ELEMENT_NAME (element));
1050   is_sink = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_SINK);
1051   is_source = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_SOURCE);
1052   provides_clock =
1053       GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
1054   requires_clock =
1055       GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
1056   GST_OBJECT_UNLOCK (element);
1057
1058   GST_OBJECT_LOCK (bin);
1059
1060   /* then check to see if the element's name is already taken in the bin,
1061    * we can safely take the lock here. This check is probably bogus because
1062    * you can safely change the element name after this check and before setting
1063    * the object parent. The window is very small though... */
1064   if (G_UNLIKELY (!gst_object_check_uniqueness (bin->children, elem_name)))
1065     goto duplicate_name;
1066
1067   /* set the element's parent and add the element to the bin's list of children */
1068   if (G_UNLIKELY (!gst_object_set_parent (GST_OBJECT_CAST (element),
1069               GST_OBJECT_CAST (bin))))
1070     goto had_parent;
1071
1072   /* if we add a sink we become a sink */
1073   if (is_sink) {
1074     GST_CAT_DEBUG_OBJECT (GST_CAT_PARENTAGE, bin, "element \"%s\" was sink",
1075         elem_name);
1076     GST_OBJECT_FLAG_SET (bin, GST_ELEMENT_FLAG_SINK);
1077   }
1078   if (is_source) {
1079     GST_CAT_DEBUG_OBJECT (GST_CAT_PARENTAGE, bin, "element \"%s\" was source",
1080         elem_name);
1081     GST_OBJECT_FLAG_SET (bin, GST_ELEMENT_FLAG_SOURCE);
1082   }
1083   if (provides_clock) {
1084     GST_DEBUG_OBJECT (bin, "element \"%s\" can provide a clock", elem_name);
1085     clock_message =
1086         gst_message_new_clock_provide (GST_OBJECT_CAST (element), NULL, TRUE);
1087     GST_OBJECT_FLAG_SET (bin, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
1088   }
1089   if (requires_clock) {
1090     GST_DEBUG_OBJECT (bin, "element \"%s\" requires a clock", elem_name);
1091     GST_OBJECT_FLAG_SET (bin, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
1092   }
1093
1094   bin->children = g_list_prepend (bin->children, element);
1095   bin->numchildren++;
1096   bin->children_cookie++;
1097   bin->priv->structure_cookie++;
1098
1099   /* distribute the bus */
1100   gst_element_set_bus (element, bin->child_bus);
1101
1102   /* propagate the current base_time, start_time and clock */
1103   gst_element_set_base_time (element, GST_ELEMENT_CAST (bin)->base_time);
1104   gst_element_set_start_time (element, GST_ELEMENT_START_TIME (bin));
1105   /* it's possible that the element did not accept the clock but
1106    * that is not important right now. When the pipeline goes to PLAYING,
1107    * a new clock will be selected */
1108   gst_element_set_clock (element, GST_ELEMENT_CLOCK (bin));
1109
1110 #if 0
1111   /* set the cached index on the children */
1112   if (bin->priv->index)
1113     gst_element_set_index (element, bin->priv->index);
1114 #endif
1115
1116   ret = GST_STATE_RETURN (bin);
1117   /* no need to update the state if we are in error */
1118   if (ret == GST_STATE_CHANGE_FAILURE)
1119     goto no_state_recalc;
1120
1121   /* update the bin state, the new element could have been an ASYNC or
1122    * NO_PREROLL element */
1123   ret = GST_STATE_RETURN (element);
1124   GST_DEBUG_OBJECT (bin, "added %s element",
1125       gst_element_state_change_return_get_name (ret));
1126
1127   switch (ret) {
1128     case GST_STATE_CHANGE_ASYNC:
1129     {
1130       /* create message to track this aync element when it posts an async-done
1131        * message */
1132       async_message = gst_message_new_async_start (GST_OBJECT_CAST (element));
1133       break;
1134     }
1135     case GST_STATE_CHANGE_NO_PREROLL:
1136       /* ignore all async elements we might have and commit our state */
1137       bin_handle_async_done (bin, ret, FALSE, FALSE);
1138       break;
1139     case GST_STATE_CHANGE_FAILURE:
1140       break;
1141     default:
1142       break;
1143   }
1144
1145 no_state_recalc:
1146   GST_OBJECT_UNLOCK (bin);
1147
1148   /* post the messages on the bus of the element so that the bin can handle
1149    * them */
1150   if (clock_message)
1151     gst_element_post_message (GST_ELEMENT_CAST (element), clock_message);
1152
1153   if (async_message)
1154     gst_element_post_message (GST_ELEMENT_CAST (element), async_message);
1155
1156   /* unlink all linked pads */
1157   it = gst_element_iterate_pads (element);
1158   gst_iterator_foreach (it, (GstIteratorForeachFunction) unlink_pads, NULL);
1159   gst_iterator_free (it);
1160
1161   GST_CAT_DEBUG_OBJECT (GST_CAT_PARENTAGE, bin, "added element \"%s\"",
1162       elem_name);
1163
1164   g_signal_emit (bin, gst_bin_signals[ELEMENT_ADDED], 0, element);
1165   gst_child_proxy_child_added ((GObject *) bin, (GObject *) element, elem_name);
1166
1167   g_free (elem_name);
1168
1169   return TRUE;
1170
1171   /* ERROR handling here */
1172 adding_itself:
1173   {
1174     GST_OBJECT_LOCK (bin);
1175     g_warning ("Cannot add bin '%s' to itself", GST_ELEMENT_NAME (bin));
1176     GST_OBJECT_UNLOCK (bin);
1177     return FALSE;
1178   }
1179 duplicate_name:
1180   {
1181     g_warning ("Name '%s' is not unique in bin '%s', not adding",
1182         elem_name, GST_ELEMENT_NAME (bin));
1183     GST_OBJECT_UNLOCK (bin);
1184     g_free (elem_name);
1185     return FALSE;
1186   }
1187 had_parent:
1188   {
1189     g_warning ("Element '%s' already has parent", elem_name);
1190     GST_OBJECT_UNLOCK (bin);
1191     g_free (elem_name);
1192     return FALSE;
1193   }
1194 }
1195
1196 /**
1197  * gst_bin_add:
1198  * @bin: a #GstBin
1199  * @element: (transfer full): the #GstElement to add
1200  *
1201  * Adds the given element to the bin.  Sets the element's parent, and thus
1202  * takes ownership of the element. An element can only be added to one bin.
1203  *
1204  * If the element's pads are linked to other pads, the pads will be unlinked
1205  * before the element is added to the bin.
1206  *
1207  * <note>
1208  * When you add an element to an already-running pipeline, you will have to
1209  * take care to set the state of the newly-added element to the desired
1210  * state (usually PLAYING or PAUSED, same you set the pipeline to originally)
1211  * with gst_element_set_state(), or use gst_element_sync_state_with_parent().
1212  * The bin or pipeline will not take care of this for you.
1213  * </note>
1214  *
1215  * MT safe.
1216  *
1217  * Returns: TRUE if the element could be added, FALSE if
1218  * the bin does not want to accept the element.
1219  */
1220 gboolean
1221 gst_bin_add (GstBin * bin, GstElement * element)
1222 {
1223   GstBinClass *bclass;
1224   gboolean result;
1225
1226   g_return_val_if_fail (GST_IS_BIN (bin), FALSE);
1227   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1228
1229   bclass = GST_BIN_GET_CLASS (bin);
1230
1231   if (G_UNLIKELY (bclass->add_element == NULL))
1232     goto no_function;
1233
1234   GST_CAT_DEBUG (GST_CAT_PARENTAGE, "adding element %s to bin %s",
1235       GST_STR_NULL (GST_ELEMENT_NAME (element)),
1236       GST_STR_NULL (GST_ELEMENT_NAME (bin)));
1237
1238   result = bclass->add_element (bin, element);
1239
1240   return result;
1241
1242   /* ERROR handling */
1243 no_function:
1244   {
1245     g_warning ("adding elements to bin '%s' is not supported",
1246         GST_ELEMENT_NAME (bin));
1247     return FALSE;
1248   }
1249 }
1250
1251 /* remove an element from the bin
1252  *
1253  * MT safe
1254  */
1255 static gboolean
1256 gst_bin_remove_func (GstBin * bin, GstElement * element)
1257 {
1258   gchar *elem_name;
1259   GstIterator *it;
1260   gboolean is_sink, is_source, provides_clock, requires_clock;
1261   gboolean othersink, othersource, otherprovider, otherrequirer, found;
1262   GstMessage *clock_message = NULL;
1263   GstClock **provided_clock_p;
1264   GstElement **clock_provider_p;
1265   GList *walk, *next;
1266   gboolean other_async, this_async, have_no_preroll;
1267   GstStateChangeReturn ret;
1268
1269   GST_DEBUG_OBJECT (bin, "element :%s", GST_ELEMENT_NAME (element));
1270
1271   GST_OBJECT_LOCK (bin);
1272
1273   GST_OBJECT_LOCK (element);
1274   elem_name = g_strdup (GST_ELEMENT_NAME (element));
1275
1276   if (GST_OBJECT_PARENT (element) != GST_OBJECT_CAST (bin))
1277     goto not_in_bin;
1278
1279   /* remove the parent ref */
1280   GST_OBJECT_PARENT (element) = NULL;
1281
1282   /* grab element name so we can print it */
1283   is_sink = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_SINK);
1284   is_source = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_SOURCE);
1285   provides_clock =
1286       GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
1287   requires_clock =
1288       GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
1289   GST_OBJECT_UNLOCK (element);
1290
1291   found = FALSE;
1292   othersink = FALSE;
1293   othersource = FALSE;
1294   otherprovider = FALSE;
1295   otherrequirer = FALSE;
1296   have_no_preroll = FALSE;
1297   /* iterate the elements, we collect which ones are async and no_preroll. We
1298    * also remove the element when we find it. */
1299   for (walk = bin->children; walk; walk = next) {
1300     GstElement *child = GST_ELEMENT_CAST (walk->data);
1301
1302     next = g_list_next (walk);
1303
1304     if (child == element) {
1305       found = TRUE;
1306       /* remove the element */
1307       bin->children = g_list_delete_link (bin->children, walk);
1308     } else {
1309       gboolean child_sink, child_source, child_provider, child_requirer;
1310
1311       GST_OBJECT_LOCK (child);
1312       child_sink = GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_FLAG_SINK);
1313       child_source = GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_FLAG_SOURCE);
1314       child_provider =
1315           GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
1316       child_requirer =
1317           GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
1318       /* when we remove a sink, check if there are other sinks. */
1319       if (is_sink && !othersink && child_sink)
1320         othersink = TRUE;
1321       if (is_source && !othersource && child_source)
1322         othersource = TRUE;
1323       if (provides_clock && !otherprovider && child_provider)
1324         otherprovider = TRUE;
1325       if (requires_clock && !otherrequirer && child_requirer)
1326         otherrequirer = TRUE;
1327       /* check if we have NO_PREROLL children */
1328       if (GST_STATE_RETURN (child) == GST_STATE_CHANGE_NO_PREROLL)
1329         have_no_preroll = TRUE;
1330       GST_OBJECT_UNLOCK (child);
1331     }
1332   }
1333
1334   /* the element must have been in the bin's list of children */
1335   if (G_UNLIKELY (!found))
1336     goto not_in_bin;
1337
1338   /* we now removed the element from the list of elements, increment the cookie
1339    * so that others can detect a change in the children list. */
1340   bin->numchildren--;
1341   bin->children_cookie++;
1342   bin->priv->structure_cookie++;
1343
1344   if (is_sink && !othersink) {
1345     /* we're not a sink anymore */
1346     GST_DEBUG_OBJECT (bin, "we removed the last sink");
1347     GST_OBJECT_FLAG_UNSET (bin, GST_ELEMENT_FLAG_SINK);
1348   }
1349   if (is_source && !othersource) {
1350     /* we're not a source anymore */
1351     GST_DEBUG_OBJECT (bin, "we removed the last source");
1352     GST_OBJECT_FLAG_UNSET (bin, GST_ELEMENT_FLAG_SOURCE);
1353   }
1354   if (provides_clock && !otherprovider) {
1355     /* we're not a clock provider anymore */
1356     GST_DEBUG_OBJECT (bin, "we removed the last clock provider");
1357     GST_OBJECT_FLAG_UNSET (bin, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
1358   }
1359   if (requires_clock && !otherrequirer) {
1360     /* we're not a clock requirer anymore */
1361     GST_DEBUG_OBJECT (bin, "we removed the last clock requirer");
1362     GST_OBJECT_FLAG_UNSET (bin, GST_ELEMENT_FLAG_REQUIRE_CLOCK);
1363   }
1364
1365   /* if the clock provider for this element is removed, we lost
1366    * the clock as well, we need to inform the parent of this
1367    * so that it can select a new clock */
1368   if (bin->clock_provider == element) {
1369     GST_DEBUG_OBJECT (bin, "element \"%s\" provided the clock", elem_name);
1370     bin->clock_dirty = TRUE;
1371     clock_message =
1372         gst_message_new_clock_lost (GST_OBJECT_CAST (bin), bin->provided_clock);
1373     provided_clock_p = &bin->provided_clock;
1374     clock_provider_p = &bin->clock_provider;
1375     gst_object_replace ((GstObject **) provided_clock_p, NULL);
1376     gst_object_replace ((GstObject **) clock_provider_p, NULL);
1377   }
1378
1379   /* remove messages for the element, if there was a pending ASYNC_START
1380    * message we must see if removing the element caused the bin to lose its
1381    * async state. */
1382   this_async = FALSE;
1383   other_async = FALSE;
1384   for (walk = bin->messages; walk; walk = next) {
1385     GstMessage *message = (GstMessage *) walk->data;
1386     GstElement *src = GST_ELEMENT_CAST (GST_MESSAGE_SRC (message));
1387     gboolean remove;
1388
1389     next = g_list_next (walk);
1390     remove = FALSE;
1391
1392     switch (GST_MESSAGE_TYPE (message)) {
1393       case GST_MESSAGE_ASYNC_START:
1394         if (src == element)
1395           this_async = TRUE;
1396         else
1397           other_async = TRUE;
1398
1399         GST_DEBUG_OBJECT (src, "looking at message %p", message);
1400         break;
1401       case GST_MESSAGE_STRUCTURE_CHANGE:
1402       {
1403         GstElement *owner;
1404
1405         GST_DEBUG_OBJECT (src, "looking at structure change message %p",
1406             message);
1407         /* it's unlikely that this message is still in the list of messages
1408          * because this would mean that a link/unlink is busy in another thread
1409          * while we remove the element. We still have to remove the message
1410          * because we might not receive the done message anymore when the element
1411          * is removed from the bin. */
1412         gst_message_parse_structure_change (message, NULL, &owner, NULL);
1413         if (owner == element)
1414           remove = TRUE;
1415         break;
1416       }
1417       default:
1418         break;
1419     }
1420     if (src == element)
1421       remove = TRUE;
1422
1423     if (remove) {
1424       /* delete all message types */
1425       GST_DEBUG_OBJECT (src, "deleting message %p of element \"%s\"",
1426           message, elem_name);
1427       bin->messages = g_list_delete_link (bin->messages, walk);
1428       gst_message_unref (message);
1429     }
1430   }
1431
1432   /* get last return */
1433   ret = GST_STATE_RETURN (bin);
1434
1435   /* no need to update the state if we are in error */
1436   if (ret == GST_STATE_CHANGE_FAILURE)
1437     goto no_state_recalc;
1438
1439   if (!other_async && this_async) {
1440     /* all other elements were not async and we removed the async one,
1441      * handle the async-done case because we are not async anymore now. */
1442     GST_DEBUG_OBJECT (bin,
1443         "we removed the last async element, have no_preroll %d",
1444         have_no_preroll);
1445
1446     /* the current state return of the bin depends on if there are no_preroll
1447      * elements in the pipeline or not */
1448     if (have_no_preroll)
1449       ret = GST_STATE_CHANGE_NO_PREROLL;
1450     else
1451       ret = GST_STATE_CHANGE_SUCCESS;
1452
1453     bin_handle_async_done (bin, ret, FALSE, FALSE);
1454   } else {
1455     GST_DEBUG_OBJECT (bin,
1456         "recalc state preroll: %d, other async: %d, this async %d",
1457         have_no_preroll, other_async, this_async);
1458
1459     if (have_no_preroll) {
1460       ret = GST_STATE_CHANGE_NO_PREROLL;
1461     } else if (other_async) {
1462       /* there are other async elements and we were not doing an async state
1463        * change, change our pending state and go async */
1464       if (GST_STATE_PENDING (bin) == GST_STATE_VOID_PENDING) {
1465         GST_STATE_NEXT (bin) = GST_STATE (bin);
1466         GST_STATE_PENDING (bin) = GST_STATE (bin);
1467       }
1468       ret = GST_STATE_CHANGE_ASYNC;
1469     }
1470     GST_STATE_RETURN (bin) = ret;
1471   }
1472 no_state_recalc:
1473   /* clear bus */
1474   gst_element_set_bus (element, NULL);
1475   /* Clear the clock we provided to the element */
1476   gst_element_set_clock (element, NULL);
1477   GST_OBJECT_UNLOCK (bin);
1478
1479   if (clock_message)
1480     gst_element_post_message (GST_ELEMENT_CAST (bin), clock_message);
1481
1482   /* unlink all linked pads */
1483   it = gst_element_iterate_pads (element);
1484   gst_iterator_foreach (it, (GstIteratorForeachFunction) unlink_pads, NULL);
1485   gst_iterator_free (it);
1486
1487   GST_CAT_INFO_OBJECT (GST_CAT_PARENTAGE, bin, "removed child \"%s\"",
1488       elem_name);
1489
1490   g_signal_emit (bin, gst_bin_signals[ELEMENT_REMOVED], 0, element);
1491   gst_child_proxy_child_removed ((GObject *) bin, (GObject *) element,
1492       elem_name);
1493
1494   g_free (elem_name);
1495   /* element is really out of our control now */
1496   gst_object_unref (element);
1497
1498   return TRUE;
1499
1500   /* ERROR handling */
1501 not_in_bin:
1502   {
1503     g_warning ("Element '%s' is not in bin '%s'", elem_name,
1504         GST_ELEMENT_NAME (bin));
1505     GST_OBJECT_UNLOCK (element);
1506     GST_OBJECT_UNLOCK (bin);
1507     g_free (elem_name);
1508     return FALSE;
1509   }
1510 }
1511
1512 /**
1513  * gst_bin_remove:
1514  * @bin: a #GstBin
1515  * @element: (transfer none): the #GstElement to remove
1516  *
1517  * Removes the element from the bin, unparenting it as well.
1518  * Unparenting the element means that the element will be dereferenced,
1519  * so if the bin holds the only reference to the element, the element
1520  * will be freed in the process of removing it from the bin.  If you
1521  * want the element to still exist after removing, you need to call
1522  * gst_object_ref() before removing it from the bin.
1523  *
1524  * If the element's pads are linked to other pads, the pads will be unlinked
1525  * before the element is removed from the bin.
1526  *
1527  * MT safe.
1528  *
1529  * Returns: TRUE if the element could be removed, FALSE if
1530  * the bin does not want to remove the element.
1531  */
1532 gboolean
1533 gst_bin_remove (GstBin * bin, GstElement * element)
1534 {
1535   GstBinClass *bclass;
1536   gboolean result;
1537
1538   g_return_val_if_fail (GST_IS_BIN (bin), FALSE);
1539   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1540
1541   bclass = GST_BIN_GET_CLASS (bin);
1542
1543   if (G_UNLIKELY (bclass->remove_element == NULL))
1544     goto no_function;
1545
1546   GST_CAT_DEBUG (GST_CAT_PARENTAGE, "removing element %s from bin %s",
1547       GST_ELEMENT_NAME (element), GST_ELEMENT_NAME (bin));
1548
1549   result = bclass->remove_element (bin, element);
1550
1551   return result;
1552
1553   /* ERROR handling */
1554 no_function:
1555   {
1556     g_warning ("removing elements from bin '%s' is not supported",
1557         GST_ELEMENT_NAME (bin));
1558     return FALSE;
1559   }
1560 }
1561
1562 /**
1563  * gst_bin_iterate_elements:
1564  * @bin: a #GstBin
1565  *
1566  * Gets an iterator for the elements in this bin.
1567  *
1568  * Each element yielded by the iterator will have its refcount increased, so
1569  * unref after use.
1570  *
1571  * MT safe.  Caller owns returned value.
1572  *
1573  * Returns: (transfer full): a #GstIterator of #GstElement, or NULL
1574  */
1575 GstIterator *
1576 gst_bin_iterate_elements (GstBin * bin)
1577 {
1578   GstIterator *result;
1579
1580   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
1581
1582   GST_OBJECT_LOCK (bin);
1583   result = gst_iterator_new_list (GST_TYPE_ELEMENT,
1584       GST_OBJECT_GET_LOCK (bin),
1585       &bin->children_cookie, &bin->children, (GObject *) bin, NULL);
1586   GST_OBJECT_UNLOCK (bin);
1587
1588   return result;
1589 }
1590
1591 static GstIteratorItem
1592 iterate_child_recurse (GstIterator * it, const GValue * item)
1593 {
1594   GstElement *child = g_value_get_object (item);
1595
1596   if (GST_IS_BIN (child)) {
1597     GstIterator *other = gst_bin_iterate_recurse (GST_BIN_CAST (child));
1598
1599     gst_iterator_push (it, other);
1600   }
1601   return GST_ITERATOR_ITEM_PASS;
1602 }
1603
1604 /**
1605  * gst_bin_iterate_recurse:
1606  * @bin: a #GstBin
1607  *
1608  * Gets an iterator for the elements in this bin.
1609  * This iterator recurses into GstBin children.
1610  *
1611  * Each element yielded by the iterator will have its refcount increased, so
1612  * unref after use.
1613  *
1614  * MT safe.  Caller owns returned value.
1615  *
1616  * Returns: (transfer full): a #GstIterator of #GstElement, or NULL
1617  */
1618 GstIterator *
1619 gst_bin_iterate_recurse (GstBin * bin)
1620 {
1621   GstIterator *result;
1622
1623   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
1624
1625   GST_OBJECT_LOCK (bin);
1626   result = gst_iterator_new_list (GST_TYPE_ELEMENT,
1627       GST_OBJECT_GET_LOCK (bin),
1628       &bin->children_cookie,
1629       &bin->children,
1630       (GObject *) bin, (GstIteratorItemFunction) iterate_child_recurse);
1631   GST_OBJECT_UNLOCK (bin);
1632
1633   return result;
1634 }
1635
1636 /* returns 0 when TRUE because this is a GCompareFunc */
1637 /* MT safe */
1638 static gint
1639 bin_element_is_sink (GstElement * child, GstBin * bin)
1640 {
1641   gboolean is_sink;
1642
1643   /* we lock the child here for the remainder of the function to
1644    * get its name and flag safely. */
1645   GST_OBJECT_LOCK (child);
1646   is_sink = GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_FLAG_SINK);
1647
1648   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
1649       "child %s %s sink", GST_OBJECT_NAME (child), is_sink ? "is" : "is not");
1650
1651   GST_OBJECT_UNLOCK (child);
1652   return is_sink ? 0 : 1;
1653 }
1654
1655 static gint
1656 sink_iterator_filter (const GValue * vchild, GValue * vbin)
1657 {
1658   GstBin *bin = g_value_get_object (vbin);
1659   GstElement *child = g_value_get_object (vchild);
1660
1661   return (bin_element_is_sink (child, bin));
1662 }
1663
1664 /**
1665  * gst_bin_iterate_sinks:
1666  * @bin: a #GstBin
1667  *
1668  * Gets an iterator for all elements in the bin that have the
1669  * #GST_ELEMENT_FLAG_SINK flag set.
1670  *
1671  * Each element yielded by the iterator will have its refcount increased, so
1672  * unref after use.
1673  *
1674  * MT safe.  Caller owns returned value.
1675  *
1676  * Returns: (transfer full): a #GstIterator of #GstElement, or NULL
1677  */
1678 GstIterator *
1679 gst_bin_iterate_sinks (GstBin * bin)
1680 {
1681   GstIterator *children;
1682   GstIterator *result;
1683   GValue vbin = { 0, };
1684
1685   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
1686
1687   g_value_init (&vbin, GST_TYPE_BIN);
1688   g_value_set_object (&vbin, bin);
1689
1690   children = gst_bin_iterate_elements (bin);
1691   result = gst_iterator_filter (children,
1692       (GCompareFunc) sink_iterator_filter, &vbin);
1693
1694   g_value_unset (&vbin);
1695
1696   return result;
1697 }
1698
1699 /* returns 0 when TRUE because this is a GCompareFunc */
1700 /* MT safe */
1701 static gint
1702 bin_element_is_src (GstElement * child, GstBin * bin)
1703 {
1704   gboolean is_src;
1705
1706   /* we lock the child here for the remainder of the function to
1707    * get its name and other info safely. */
1708   GST_OBJECT_LOCK (child);
1709   is_src = GST_OBJECT_FLAG_IS_SET (child, GST_ELEMENT_FLAG_SOURCE);
1710
1711   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
1712       "child %s %s src", GST_OBJECT_NAME (child), is_src ? "is" : "is not");
1713
1714   GST_OBJECT_UNLOCK (child);
1715   return is_src ? 0 : 1;
1716 }
1717
1718 static gint
1719 src_iterator_filter (const GValue * vchild, GValue * vbin)
1720 {
1721   GstBin *bin = g_value_get_object (vbin);
1722   GstElement *child = g_value_get_object (vchild);
1723
1724   return (bin_element_is_src (child, bin));
1725 }
1726
1727 /**
1728  * gst_bin_iterate_sources:
1729  * @bin: a #GstBin
1730  *
1731  * Gets an iterator for all elements in the bin that have the
1732  * #GST_ELEMENT_FLAG_SOURCE flag set.
1733  *
1734  * Each element yielded by the iterator will have its refcount increased, so
1735  * unref after use.
1736  *
1737  * MT safe.  Caller owns returned value.
1738  *
1739  * Returns: (transfer full): a #GstIterator of #GstElement, or NULL
1740  */
1741 GstIterator *
1742 gst_bin_iterate_sources (GstBin * bin)
1743 {
1744   GstIterator *children;
1745   GstIterator *result;
1746   GValue vbin = { 0, };
1747
1748   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
1749
1750   g_value_init (&vbin, GST_TYPE_BIN);
1751   g_value_set_object (&vbin, bin);
1752
1753   children = gst_bin_iterate_elements (bin);
1754   result = gst_iterator_filter (children,
1755       (GCompareFunc) src_iterator_filter, &vbin);
1756
1757   g_value_unset (&vbin);
1758
1759   return result;
1760 }
1761
1762 /*
1763  * MT safe
1764  */
1765 static GstStateChangeReturn
1766 gst_bin_get_state_func (GstElement * element, GstState * state,
1767     GstState * pending, GstClockTime timeout)
1768 {
1769   GstStateChangeReturn ret;
1770
1771   GST_CAT_INFO_OBJECT (GST_CAT_STATES, element, "getting state");
1772
1773   ret =
1774       GST_ELEMENT_CLASS (parent_class)->get_state (element, state, pending,
1775       timeout);
1776
1777   return ret;
1778 }
1779
1780 /***********************************************
1781  * Topologically sorted iterator
1782  * see http://en.wikipedia.org/wiki/Topological_sorting
1783  *
1784  * For each element in the graph, an entry is kept in a HashTable
1785  * with its number of srcpad connections (degree).
1786  * We then change state of all elements without dependencies
1787  * (degree 0) and decrement the degree of all elements connected
1788  * on the sinkpads. When an element reaches degree 0, its state is
1789  * changed next.
1790  * When all elements are handled the algorithm stops.
1791  */
1792 typedef struct _GstBinSortIterator
1793 {
1794   GstIterator it;
1795   GQueue queue;                 /* elements queued for state change */
1796   GstBin *bin;                  /* bin we iterate */
1797   gint mode;                    /* adding or removing dependency */
1798   GstElement *best;             /* next element with least dependencies */
1799   gint best_deg;                /* best degree */
1800   GHashTable *hash;             /* hashtable with element dependencies */
1801   gboolean dirty;               /* we detected structure change */
1802 } GstBinSortIterator;
1803
1804 static void
1805 gst_bin_sort_iterator_copy (const GstBinSortIterator * it,
1806     GstBinSortIterator * copy)
1807 {
1808   GHashTableIter iter;
1809   gpointer key, value;
1810
1811   copy->queue = it->queue;
1812   g_queue_foreach (&copy->queue, (GFunc) gst_object_ref, NULL);
1813
1814   copy->bin = gst_object_ref (it->bin);
1815   if (it->best)
1816     copy->best = gst_object_ref (it->best);
1817
1818   copy->hash = g_hash_table_new (NULL, NULL);
1819   g_hash_table_iter_init (&iter, it->hash);
1820   while (g_hash_table_iter_next (&iter, &key, &value))
1821     g_hash_table_insert (copy->hash, key, value);
1822 }
1823
1824 /* we add and subtract 1 to make sure we don't confuse NULL and 0 */
1825 #define HASH_SET_DEGREE(bit, elem, deg) \
1826     g_hash_table_replace (bit->hash, elem, GINT_TO_POINTER(deg+1))
1827 #define HASH_GET_DEGREE(bit, elem) \
1828     (GPOINTER_TO_INT(g_hash_table_lookup (bit->hash, elem))-1)
1829
1830 /* add element to queue of next elements in the iterator.
1831  * We push at the tail to give higher priority elements a
1832  * chance first */
1833 static void
1834 add_to_queue (GstBinSortIterator * bit, GstElement * element)
1835 {
1836   GST_DEBUG_OBJECT (bit->bin, "adding '%s' to queue",
1837       GST_ELEMENT_NAME (element));
1838   gst_object_ref (element);
1839   g_queue_push_tail (&bit->queue, element);
1840   HASH_SET_DEGREE (bit, element, -1);
1841 }
1842
1843 static void
1844 remove_from_queue (GstBinSortIterator * bit, GstElement * element)
1845 {
1846   GList *find;
1847
1848   if ((find = g_queue_find (&bit->queue, element))) {
1849     GST_DEBUG_OBJECT (bit->bin, "removing '%s' from queue",
1850         GST_ELEMENT_NAME (element));
1851
1852     g_queue_delete_link (&bit->queue, find);
1853     gst_object_unref (element);
1854   } else {
1855     GST_DEBUG_OBJECT (bit->bin, "unable to remove '%s' from queue",
1856         GST_ELEMENT_NAME (element));
1857   }
1858 }
1859
1860 /* clear the queue, unref all objects as we took a ref when
1861  * we added them to the queue */
1862 static void
1863 clear_queue (GQueue * queue)
1864 {
1865   gpointer p;
1866
1867   while ((p = g_queue_pop_head (queue)))
1868     gst_object_unref (p);
1869 }
1870
1871 /* set all degrees to 0. Elements marked as a sink are
1872  * added to the queue immediately. Since we only look at the SINK flag of the
1873  * element, it is possible that we add non-sinks to the queue. These will be
1874  * removed from the queue again when we can prove that it provides data for some
1875  * other element. */
1876 static void
1877 reset_degree (GstElement * element, GstBinSortIterator * bit)
1878 {
1879   gboolean is_sink;
1880
1881   /* sinks are added right away */
1882   GST_OBJECT_LOCK (element);
1883   is_sink = GST_OBJECT_FLAG_IS_SET (element, GST_ELEMENT_FLAG_SINK);
1884   GST_OBJECT_UNLOCK (element);
1885
1886   if (is_sink) {
1887     add_to_queue (bit, element);
1888   } else {
1889     /* others are marked with 0 and handled when sinks are done */
1890     HASH_SET_DEGREE (bit, element, 0);
1891   }
1892 }
1893
1894 /* adjust the degree of all elements connected to the given
1895  * element. If a degree of an element drops to 0, it is
1896  * added to the queue of elements to schedule next.
1897  *
1898  * We have to make sure not to cross the bin boundary this element
1899  * belongs to.
1900  */
1901 static void
1902 update_degree (GstElement * element, GstBinSortIterator * bit)
1903 {
1904   gboolean linked = FALSE;
1905
1906   GST_OBJECT_LOCK (element);
1907   /* don't touch degree if element has no sinkpads */
1908   if (element->numsinkpads != 0) {
1909     /* loop over all sinkpads, decrement degree for all connected
1910      * elements in this bin */
1911     GList *pads;
1912
1913     for (pads = element->sinkpads; pads; pads = g_list_next (pads)) {
1914       GstPad *pad, *peer;
1915
1916       pad = GST_PAD_CAST (pads->data);
1917
1918       /* we're iterating over the sinkpads, check if it's busy in a link/unlink */
1919       if (G_UNLIKELY (find_message (bit->bin, GST_OBJECT_CAST (pad),
1920                   GST_MESSAGE_STRUCTURE_CHANGE))) {
1921         /* mark the iterator as dirty because we won't be updating the degree
1922          * of the peer parent now. This would result in the 'loop detected'
1923          * later on because the peer parent element could become the best next
1924          * element with a degree > 0. We will simply continue our state
1925          * changes and we'll eventually resync when the unlink completed and
1926          * the iterator cookie is updated. */
1927         bit->dirty = TRUE;
1928         continue;
1929       }
1930
1931       if ((peer = gst_pad_get_peer (pad))) {
1932         GstElement *peer_element;
1933
1934         if ((peer_element = gst_pad_get_parent_element (peer))) {
1935           GST_OBJECT_LOCK (peer_element);
1936           /* check that we don't go outside of this bin */
1937           if (GST_OBJECT_CAST (peer_element)->parent ==
1938               GST_OBJECT_CAST (bit->bin)) {
1939             gint old_deg, new_deg;
1940
1941             old_deg = HASH_GET_DEGREE (bit, peer_element);
1942
1943             /* check to see if we added an element as sink that was not really a
1944              * sink because it was connected to some other element. */
1945             if (old_deg == -1) {
1946               remove_from_queue (bit, peer_element);
1947               old_deg = 0;
1948             }
1949             new_deg = old_deg + bit->mode;
1950
1951             GST_DEBUG_OBJECT (bit->bin,
1952                 "change element %s, degree %d->%d, linked to %s",
1953                 GST_ELEMENT_NAME (peer_element), old_deg, new_deg,
1954                 GST_ELEMENT_NAME (element));
1955
1956             /* update degree, it is possible that an element was in 0 and
1957              * reaches -1 here. This would mean that the element had no sinkpads
1958              * but became linked while the state change was happening. We will
1959              * resync on this with the structure change message. */
1960             if (new_deg == 0) {
1961               /* degree hit 0, add to queue */
1962               add_to_queue (bit, peer_element);
1963             } else {
1964               HASH_SET_DEGREE (bit, peer_element, new_deg);
1965             }
1966             linked = TRUE;
1967           }
1968           GST_OBJECT_UNLOCK (peer_element);
1969           gst_object_unref (peer_element);
1970         }
1971         gst_object_unref (peer);
1972       }
1973     }
1974   }
1975   if (!linked) {
1976     GST_DEBUG_OBJECT (bit->bin, "element %s not linked on any sinkpads",
1977         GST_ELEMENT_NAME (element));
1978   }
1979   GST_OBJECT_UNLOCK (element);
1980 }
1981
1982 /* find the next best element not handled yet. This is the one
1983  * with the lowest non-negative degree */
1984 static void
1985 find_element (GstElement * element, GstBinSortIterator * bit)
1986 {
1987   gint degree;
1988
1989   /* element is already handled */
1990   if ((degree = HASH_GET_DEGREE (bit, element)) < 0)
1991     return;
1992
1993   /* first element or element with smaller degree */
1994   if (bit->best == NULL || bit->best_deg > degree) {
1995     bit->best = element;
1996     bit->best_deg = degree;
1997   }
1998 }
1999
2000 /* get next element in iterator. the returned element has the
2001  * refcount increased */
2002 static GstIteratorResult
2003 gst_bin_sort_iterator_next (GstBinSortIterator * bit, GValue * result)
2004 {
2005   GstElement *best;
2006   GstBin *bin = bit->bin;
2007
2008   /* empty queue, we have to find a next best element */
2009   if (g_queue_is_empty (&bit->queue)) {
2010     bit->best = NULL;
2011     bit->best_deg = G_MAXINT;
2012     g_list_foreach (bin->children, (GFunc) find_element, bit);
2013     if ((best = bit->best)) {
2014       /* when we detected an unlink, don't warn because our degrees might be
2015        * screwed up. We will resync later */
2016       if (bit->best_deg != 0 && !bit->dirty) {
2017         /* we don't fail on this one yet */
2018         GST_WARNING_OBJECT (bin, "loop dected in graph");
2019         g_warning ("loop detected in the graph of bin '%s'!!",
2020             GST_ELEMENT_NAME (bin));
2021       }
2022       /* best unhandled element, schedule as next element */
2023       GST_DEBUG_OBJECT (bin, "queue empty, next best: %s",
2024           GST_ELEMENT_NAME (best));
2025       HASH_SET_DEGREE (bit, best, -1);
2026       g_value_set_object (result, best);
2027     } else {
2028       GST_DEBUG_OBJECT (bin, "queue empty, elements exhausted");
2029       /* no more unhandled elements, we are done */
2030       return GST_ITERATOR_DONE;
2031     }
2032   } else {
2033     /* everything added to the queue got reffed */
2034     best = g_queue_pop_head (&bit->queue);
2035     g_value_set_object (result, best);
2036     gst_object_unref (best);
2037   }
2038
2039   GST_DEBUG_OBJECT (bin, "queue head gives %s", GST_ELEMENT_NAME (best));
2040   /* update degrees of linked elements */
2041   update_degree (best, bit);
2042
2043   return GST_ITERATOR_OK;
2044 }
2045
2046 /* clear queues, recalculate the degrees and restart. */
2047 static void
2048 gst_bin_sort_iterator_resync (GstBinSortIterator * bit)
2049 {
2050   GstBin *bin = bit->bin;
2051
2052   GST_DEBUG_OBJECT (bin, "resync");
2053   bit->dirty = FALSE;
2054   clear_queue (&bit->queue);
2055   /* reset degrees */
2056   g_list_foreach (bin->children, (GFunc) reset_degree, bit);
2057   /* calc degrees, incrementing */
2058   bit->mode = 1;
2059   g_list_foreach (bin->children, (GFunc) update_degree, bit);
2060   /* for the rest of the function we decrement the degrees */
2061   bit->mode = -1;
2062 }
2063
2064 /* clear queues, unref bin and free iterator. */
2065 static void
2066 gst_bin_sort_iterator_free (GstBinSortIterator * bit)
2067 {
2068   GstBin *bin = bit->bin;
2069
2070   GST_DEBUG_OBJECT (bin, "free");
2071   clear_queue (&bit->queue);
2072   g_hash_table_destroy (bit->hash);
2073   gst_object_unref (bin);
2074 }
2075
2076 /* should be called with the bin LOCK held */
2077 static GstIterator *
2078 gst_bin_sort_iterator_new (GstBin * bin)
2079 {
2080   GstBinSortIterator *result;
2081
2082   /* we don't need an ItemFunction because we ref the items in the _next
2083    * method already */
2084   result = (GstBinSortIterator *)
2085       gst_iterator_new (sizeof (GstBinSortIterator),
2086       GST_TYPE_ELEMENT,
2087       GST_OBJECT_GET_LOCK (bin),
2088       &bin->priv->structure_cookie,
2089       (GstIteratorCopyFunction) gst_bin_sort_iterator_copy,
2090       (GstIteratorNextFunction) gst_bin_sort_iterator_next,
2091       (GstIteratorItemFunction) NULL,
2092       (GstIteratorResyncFunction) gst_bin_sort_iterator_resync,
2093       (GstIteratorFreeFunction) gst_bin_sort_iterator_free);
2094   g_queue_init (&result->queue);
2095   result->hash = g_hash_table_new (NULL, NULL);
2096   gst_object_ref (bin);
2097   result->bin = bin;
2098   gst_bin_sort_iterator_resync (result);
2099
2100   return (GstIterator *) result;
2101 }
2102
2103 /**
2104  * gst_bin_iterate_sorted:
2105  * @bin: a #GstBin
2106  *
2107  * Gets an iterator for the elements in this bin in topologically
2108  * sorted order. This means that the elements are returned from
2109  * the most downstream elements (sinks) to the sources.
2110  *
2111  * This function is used internally to perform the state changes
2112  * of the bin elements and for clock selection.
2113  *
2114  * Each element yielded by the iterator will have its refcount increased, so
2115  * unref after use.
2116  *
2117  * MT safe.  Caller owns returned value.
2118  *
2119  * Returns: (transfer full): a #GstIterator of #GstElement, or NULL
2120  */
2121 GstIterator *
2122 gst_bin_iterate_sorted (GstBin * bin)
2123 {
2124   GstIterator *result;
2125
2126   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
2127
2128   GST_OBJECT_LOCK (bin);
2129   result = gst_bin_sort_iterator_new (bin);
2130   GST_OBJECT_UNLOCK (bin);
2131
2132   return result;
2133 }
2134
2135 static GstStateChangeReturn
2136 gst_bin_element_set_state (GstBin * bin, GstElement * element,
2137     GstClockTime base_time, GstClockTime start_time, GstState current,
2138     GstState next)
2139 {
2140   GstStateChangeReturn ret;
2141   GstState child_current, child_pending;
2142   gboolean locked;
2143   GList *found;
2144
2145   GST_STATE_LOCK (element);
2146
2147   GST_OBJECT_LOCK (element);
2148   /* set base_time and start time on child */
2149   GST_ELEMENT_START_TIME (element) = start_time;
2150   element->base_time = base_time;
2151   /* peel off the locked flag */
2152   locked = GST_ELEMENT_IS_LOCKED_STATE (element);
2153   /* Get the previous set_state result to preserve NO_PREROLL and ASYNC */
2154   ret = GST_STATE_RETURN (element);
2155   child_current = GST_STATE (element);
2156   child_pending = GST_STATE_PENDING (element);
2157   GST_OBJECT_UNLOCK (element);
2158
2159   /* skip locked elements */
2160   if (G_UNLIKELY (locked))
2161     goto locked;
2162
2163   /* if the element was no preroll, just start changing the state regardless
2164    * if it had async elements (in the case of a bin) because they won't preroll
2165    * anyway. */
2166   if (G_UNLIKELY (ret == GST_STATE_CHANGE_NO_PREROLL)) {
2167     GST_DEBUG_OBJECT (element, "element is NO_PREROLL, ignore async elements");
2168     goto no_preroll;
2169   }
2170
2171   GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2172       "current %s pending %s, desired next %s",
2173       gst_element_state_get_name (child_current),
2174       gst_element_state_get_name (child_pending),
2175       gst_element_state_get_name (next));
2176
2177   /* Try not to change the state of elements that are already in the state we're
2178    * going to */
2179   if (child_current == next && child_pending == GST_STATE_VOID_PENDING) {
2180     /* child is already at the requested state, return previous return. Note that
2181      * if the child has a pending state to next, we will still call the
2182      * set_state function */
2183     goto unneeded;
2184   } else if (next > current) {
2185     /* upward state change */
2186     if (child_pending == GST_STATE_VOID_PENDING) {
2187       /* .. and the child is not busy doing anything */
2188       if (child_current > next) {
2189         /* .. and is already past the requested state, assume it got there
2190          * without error */
2191         ret = GST_STATE_CHANGE_SUCCESS;
2192         goto unneeded;
2193       }
2194     } else if (child_pending > child_current) {
2195       /* .. and the child is busy going upwards */
2196       if (child_current >= next) {
2197         /* .. and is already past the requested state, assume it got there
2198          * without error */
2199         ret = GST_STATE_CHANGE_SUCCESS;
2200         goto unneeded;
2201       }
2202     } else {
2203       /* .. and the child is busy going downwards */
2204       if (child_current > next) {
2205         /* .. and is already past the requested state, assume it got there
2206          * without error */
2207         ret = GST_STATE_CHANGE_SUCCESS;
2208         goto unneeded;
2209       }
2210     }
2211   } else if (next < current) {
2212     /* downward state change */
2213     if (child_pending == GST_STATE_VOID_PENDING) {
2214       /* .. and the child is not busy doing anything */
2215       if (child_current < next) {
2216         /* .. and is already past the requested state, assume it got there
2217          * without error */
2218         ret = GST_STATE_CHANGE_SUCCESS;
2219         goto unneeded;
2220       }
2221     } else if (child_pending < child_current) {
2222       /* .. and the child is busy going downwards */
2223       if (child_current <= next) {
2224         /* .. and is already past the requested state, assume it got there
2225          * without error */
2226         ret = GST_STATE_CHANGE_SUCCESS;
2227         goto unneeded;
2228       }
2229     } else {
2230       /* .. and the child is busy going upwards */
2231       if (child_current < next) {
2232         /* .. and is already past the requested state, assume it got there
2233          * without error */
2234         ret = GST_STATE_CHANGE_SUCCESS;
2235         goto unneeded;
2236       }
2237     }
2238   }
2239
2240   GST_OBJECT_LOCK (bin);
2241   /* the element was busy with an upwards async state change, we must wait for
2242    * an ASYNC_DONE message before we attemp to change the state. */
2243   if ((found =
2244           find_message (bin, GST_OBJECT_CAST (element),
2245               GST_MESSAGE_ASYNC_START))) {
2246 #ifndef GST_DISABLE_GST_DEBUG
2247     GstMessage *message = GST_MESSAGE_CAST (found->data);
2248
2249     GST_DEBUG_OBJECT (element, "element message %p, %s async busy",
2250         message, GST_ELEMENT_NAME (GST_MESSAGE_SRC (message)));
2251 #endif
2252     /* only wait for upward state changes */
2253     if (next > current) {
2254       /* We found an async element check if we can force its state to change or
2255        * if we have to wait for it to preroll. */
2256       goto was_busy;
2257     }
2258   }
2259   GST_OBJECT_UNLOCK (bin);
2260
2261 no_preroll:
2262   GST_DEBUG_OBJECT (bin,
2263       "setting element %s to %s, base_time %" GST_TIME_FORMAT,
2264       GST_ELEMENT_NAME (element), gst_element_state_get_name (next),
2265       GST_TIME_ARGS (base_time));
2266
2267   /* change state */
2268   ret = gst_element_set_state (element, next);
2269
2270   GST_STATE_UNLOCK (element);
2271
2272   return ret;
2273
2274 locked:
2275   {
2276     GST_DEBUG_OBJECT (element,
2277         "element is locked, return previous return %s",
2278         gst_element_state_change_return_get_name (ret));
2279     GST_STATE_UNLOCK (element);
2280     return ret;
2281   }
2282 unneeded:
2283   {
2284     GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2285         "skipping transition from %s to  %s",
2286         gst_element_state_get_name (child_current),
2287         gst_element_state_get_name (next));
2288     GST_STATE_UNLOCK (element);
2289     return ret;
2290   }
2291 was_busy:
2292   {
2293     GST_DEBUG_OBJECT (element, "element was busy, delaying state change");
2294     GST_OBJECT_UNLOCK (bin);
2295     GST_STATE_UNLOCK (element);
2296     return GST_STATE_CHANGE_ASYNC;
2297   }
2298 }
2299
2300 /* gst_iterator_fold functions for pads_activate
2301  * Stop the iterator if activating one pad failed. */
2302 static gboolean
2303 activate_pads (const GValue * vpad, GValue * ret, gboolean * active)
2304 {
2305   GstPad *pad = g_value_get_object (vpad);
2306   gboolean cont = TRUE;
2307
2308   if (!(cont = gst_pad_set_active (pad, *active)))
2309     g_value_set_boolean (ret, FALSE);
2310
2311   return cont;
2312 }
2313
2314 /* returns false on error or early cutout of the fold, true if all
2315  * pads in @iter were (de)activated successfully. */
2316 static gboolean
2317 iterator_activate_fold_with_resync (GstIterator * iter, gpointer user_data)
2318 {
2319   GstIteratorResult ires;
2320   GValue ret = { 0 };
2321
2322   /* no need to unset this later, it's just a boolean */
2323   g_value_init (&ret, G_TYPE_BOOLEAN);
2324   g_value_set_boolean (&ret, TRUE);
2325
2326   while (1) {
2327     ires = gst_iterator_fold (iter, (GstIteratorFoldFunction) activate_pads,
2328         &ret, user_data);
2329     switch (ires) {
2330       case GST_ITERATOR_RESYNC:
2331         /* need to reset the result again */
2332         g_value_set_boolean (&ret, TRUE);
2333         gst_iterator_resync (iter);
2334         break;
2335       case GST_ITERATOR_DONE:
2336         /* all pads iterated, return collected value */
2337         goto done;
2338       default:
2339         /* iterator returned _ERROR or premature end with _OK,
2340          * mark an error and exit */
2341         g_value_set_boolean (&ret, FALSE);
2342         goto done;
2343     }
2344   }
2345 done:
2346   /* return collected value */
2347   return g_value_get_boolean (&ret);
2348 }
2349
2350 /* is called with STATE_LOCK
2351  */
2352 static gboolean
2353 gst_bin_src_pads_activate (GstBin * bin, gboolean active)
2354 {
2355   GstIterator *iter;
2356   gboolean fold_ok;
2357
2358   GST_DEBUG_OBJECT (bin, "src_pads_activate with active %d", active);
2359
2360   iter = gst_element_iterate_src_pads ((GstElement *) bin);
2361   fold_ok = iterator_activate_fold_with_resync (iter, &active);
2362   gst_iterator_free (iter);
2363   if (G_UNLIKELY (!fold_ok))
2364     goto failed;
2365
2366   GST_DEBUG_OBJECT (bin, "pads_activate successful");
2367
2368   return TRUE;
2369
2370   /* ERRORS */
2371 failed:
2372   {
2373     GST_DEBUG_OBJECT (bin, "source pads_activate failed");
2374     return FALSE;
2375   }
2376 }
2377
2378 /**
2379  * gst_bin_recalculate_latency:
2380  * @bin: a #GstBin
2381  *
2382  * Query @bin for the current latency using and reconfigures this latency to all the
2383  * elements with a LATENCY event.
2384  *
2385  * This method is typically called on the pipeline when a #GST_MESSAGE_LATENCY
2386  * is posted on the bus.
2387  *
2388  * This function simply emits the 'do-latency' signal so any custom latency
2389  * calculations will be performed.
2390  *
2391  * Returns: %TRUE if the latency could be queried and reconfigured.
2392  *
2393  * Since: 0.10.22.
2394  */
2395 gboolean
2396 gst_bin_recalculate_latency (GstBin * bin)
2397 {
2398   gboolean res;
2399
2400   g_signal_emit (bin, gst_bin_signals[DO_LATENCY], 0, &res);
2401   GST_DEBUG_OBJECT (bin, "latency returned %d", res);
2402
2403   return res;
2404 }
2405
2406 static gboolean
2407 gst_bin_do_latency_func (GstBin * bin)
2408 {
2409   GstQuery *query;
2410   GstElement *element;
2411   GstClockTime min_latency, max_latency;
2412   gboolean res;
2413
2414   g_return_val_if_fail (GST_IS_BIN (bin), FALSE);
2415
2416   element = GST_ELEMENT_CAST (bin);
2417
2418   GST_DEBUG_OBJECT (element, "querying latency");
2419
2420   query = gst_query_new_latency ();
2421   if ((res = gst_element_query (element, query))) {
2422     gboolean live;
2423
2424     gst_query_parse_latency (query, &live, &min_latency, &max_latency);
2425
2426     GST_DEBUG_OBJECT (element,
2427         "got min latency %" GST_TIME_FORMAT ", max latency %"
2428         GST_TIME_FORMAT ", live %d", GST_TIME_ARGS (min_latency),
2429         GST_TIME_ARGS (max_latency), live);
2430
2431     if (max_latency < min_latency) {
2432       /* this is an impossible situation, some parts of the pipeline might not
2433        * work correctly. We post a warning for now. */
2434       GST_ELEMENT_WARNING (element, CORE, CLOCK, (NULL),
2435           ("Impossible to configure latency: max %" GST_TIME_FORMAT " < min %"
2436               GST_TIME_FORMAT ". Add queues or other buffering elements.",
2437               GST_TIME_ARGS (max_latency), GST_TIME_ARGS (min_latency)));
2438     }
2439
2440     /* configure latency on elements */
2441     res = gst_element_send_event (element, gst_event_new_latency (min_latency));
2442     if (res) {
2443       GST_INFO_OBJECT (element, "configured latency of %" GST_TIME_FORMAT,
2444           GST_TIME_ARGS (min_latency));
2445     } else {
2446       GST_WARNING_OBJECT (element,
2447           "did not really configure latency of %" GST_TIME_FORMAT,
2448           GST_TIME_ARGS (min_latency));
2449     }
2450   } else {
2451     /* this is not a real problem, we just don't configure any latency. */
2452     GST_WARNING_OBJECT (element, "failed to query latency");
2453   }
2454   gst_query_unref (query);
2455
2456   return res;
2457 }
2458
2459 static void
2460 gst_bin_state_changed (GstElement * element, GstState oldstate,
2461     GstState newstate, GstState pending)
2462 {
2463   GstElementClass *pklass = (GstElementClass *) parent_class;
2464
2465   if (newstate == GST_STATE_PLAYING && pending == GST_STATE_VOID_PENDING)
2466     bin_do_eos (GST_BIN_CAST (element));
2467
2468   if (pklass->state_changed)
2469     pklass->state_changed (element, oldstate, newstate, pending);
2470 }
2471
2472 static GstStateChangeReturn
2473 gst_bin_change_state_func (GstElement * element, GstStateChange transition)
2474 {
2475   GstBin *bin;
2476   GstStateChangeReturn ret;
2477   GstState current, next;
2478   gboolean have_async;
2479   gboolean have_no_preroll;
2480   GstClockTime base_time, start_time;
2481   GstIterator *it;
2482   gboolean done;
2483   GValue data = { 0, };
2484
2485   /* we don't need to take the STATE_LOCK, it is already taken */
2486   current = (GstState) GST_STATE_TRANSITION_CURRENT (transition);
2487   next = (GstState) GST_STATE_TRANSITION_NEXT (transition);
2488
2489   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2490       "changing state of children from %s to %s",
2491       gst_element_state_get_name (current), gst_element_state_get_name (next));
2492
2493   bin = GST_BIN_CAST (element);
2494
2495   switch (next) {
2496     case GST_STATE_PLAYING:
2497     {
2498       gboolean toplevel;
2499
2500       GST_OBJECT_LOCK (bin);
2501       toplevel = BIN_IS_TOPLEVEL (bin);
2502       GST_OBJECT_UNLOCK (bin);
2503
2504       if (toplevel)
2505         gst_bin_recalculate_latency (bin);
2506       break;
2507     }
2508     case GST_STATE_PAUSED:
2509       /* Clear EOS list on next PAUSED */
2510       GST_OBJECT_LOCK (bin);
2511       GST_DEBUG_OBJECT (element, "clearing EOS elements");
2512       bin_remove_messages (bin, NULL, GST_MESSAGE_EOS);
2513       bin->priv->posted_eos = FALSE;
2514       GST_OBJECT_UNLOCK (bin);
2515       if (current == GST_STATE_READY)
2516         if (!(gst_bin_src_pads_activate (bin, TRUE)))
2517           goto activate_failure;
2518       break;
2519     case GST_STATE_READY:
2520       /* Clear message list on next READY */
2521       GST_OBJECT_LOCK (bin);
2522       GST_DEBUG_OBJECT (element, "clearing all cached messages");
2523       bin_remove_messages (bin, NULL, GST_MESSAGE_ANY);
2524       GST_OBJECT_UNLOCK (bin);
2525       if (current == GST_STATE_PAUSED)
2526         if (!(gst_bin_src_pads_activate (bin, FALSE)))
2527           goto activate_failure;
2528       break;
2529     case GST_STATE_NULL:
2530       if (current == GST_STATE_READY)
2531         if (!(gst_bin_src_pads_activate (bin, FALSE)))
2532           goto activate_failure;
2533       break;
2534     default:
2535       break;
2536   }
2537
2538   /* this flag is used to make the async state changes return immediately. We
2539    * don't want them to interfere with this state change */
2540   GST_OBJECT_LOCK (bin);
2541   bin->polling = TRUE;
2542   GST_OBJECT_UNLOCK (bin);
2543
2544   /* iterate in state change order */
2545   it = gst_bin_iterate_sorted (bin);
2546
2547   /* mark if we've seen an ASYNC element in the bin when we did a state change.
2548    * Note how we don't reset this value when a resync happens, the reason being
2549    * that the async element posted ASYNC_START and we want to post ASYNC_DONE
2550    * even after a resync when the async element is gone */
2551   have_async = FALSE;
2552
2553 restart:
2554   /* take base_time */
2555   base_time = gst_element_get_base_time (element);
2556   start_time = gst_element_get_start_time (element);
2557
2558   have_no_preroll = FALSE;
2559
2560   done = FALSE;
2561   while (!done) {
2562     switch (gst_iterator_next (it, &data)) {
2563       case GST_ITERATOR_OK:
2564       {
2565         GstElement *child;
2566
2567         child = g_value_get_object (&data);
2568
2569         /* set state and base_time now */
2570         ret = gst_bin_element_set_state (bin, child, base_time, start_time,
2571             current, next);
2572
2573         switch (ret) {
2574           case GST_STATE_CHANGE_SUCCESS:
2575             GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2576                 "child '%s' changed state to %d(%s) successfully",
2577                 GST_ELEMENT_NAME (child), next,
2578                 gst_element_state_get_name (next));
2579             break;
2580           case GST_STATE_CHANGE_ASYNC:
2581           {
2582             GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2583                 "child '%s' is changing state asynchronously to %s",
2584                 GST_ELEMENT_NAME (child), gst_element_state_get_name (next));
2585             have_async = TRUE;
2586             break;
2587           }
2588           case GST_STATE_CHANGE_FAILURE:{
2589             GstObject *parent;
2590
2591             GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2592                 "child '%s' failed to go to state %d(%s)",
2593                 GST_ELEMENT_NAME (child),
2594                 next, gst_element_state_get_name (next));
2595
2596             /* Only fail if the child is still inside
2597              * this bin. It might've been removed already
2598              * because of the error by the bin subclass
2599              * to ignore the error.  */
2600             parent = gst_object_get_parent (GST_OBJECT_CAST (child));
2601             if (parent == GST_OBJECT_CAST (element)) {
2602               /* element is still in bin, really error now */
2603               gst_object_unref (parent);
2604               goto done;
2605             }
2606             /* child removed from bin, let the resync code redo the state
2607              * change */
2608             GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2609                 "child '%s' was removed from the bin",
2610                 GST_ELEMENT_NAME (child));
2611
2612             if (parent)
2613               gst_object_unref (parent);
2614
2615             break;
2616           }
2617           case GST_STATE_CHANGE_NO_PREROLL:
2618             GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2619                 "child '%s' changed state to %d(%s) successfully without preroll",
2620                 GST_ELEMENT_NAME (child), next,
2621                 gst_element_state_get_name (next));
2622             have_no_preroll = TRUE;
2623             break;
2624           default:
2625             g_assert_not_reached ();
2626             break;
2627         }
2628         g_value_reset (&data);
2629         break;
2630       }
2631       case GST_ITERATOR_RESYNC:
2632         GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "iterator doing resync");
2633         gst_iterator_resync (it);
2634         goto restart;
2635       default:
2636       case GST_ITERATOR_DONE:
2637         GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "iterator done");
2638         done = TRUE;
2639         break;
2640     }
2641   }
2642
2643   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
2644   if (G_UNLIKELY (ret == GST_STATE_CHANGE_FAILURE))
2645     goto done;
2646
2647   if (have_no_preroll) {
2648     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
2649         "we have NO_PREROLL elements %s -> NO_PREROLL",
2650         gst_element_state_change_return_get_name (ret));
2651     ret = GST_STATE_CHANGE_NO_PREROLL;
2652   } else if (have_async) {
2653     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
2654         "we have ASYNC elements %s -> ASYNC",
2655         gst_element_state_change_return_get_name (ret));
2656     ret = GST_STATE_CHANGE_ASYNC;
2657   }
2658
2659 done:
2660   g_value_unset (&data);
2661   gst_iterator_free (it);
2662
2663   GST_OBJECT_LOCK (bin);
2664   bin->polling = FALSE;
2665   /* it's possible that we did not get ASYNC from the children while the bin is
2666    * simulating ASYNC behaviour by posting an ASYNC_DONE message on the bus with
2667    * itself as the source. In that case we still want to check if the state
2668    * change completed. */
2669   if (ret != GST_STATE_CHANGE_ASYNC && !bin->priv->pending_async_done) {
2670     /* no element returned ASYNC and there are no pending async_done messages,
2671      * we can just complete. */
2672     GST_DEBUG_OBJECT (bin, "no async elements");
2673     goto state_end;
2674   }
2675   /* when we get here an ASYNC element was found */
2676   if (GST_STATE_TARGET (bin) <= GST_STATE_READY) {
2677     /* we ignore ASYNC state changes when we go to READY or NULL */
2678     GST_DEBUG_OBJECT (bin, "target state %s <= READY",
2679         gst_element_state_get_name (GST_STATE_TARGET (bin)));
2680     goto state_end;
2681   }
2682
2683   GST_DEBUG_OBJECT (bin, "check async elements");
2684   /* check if all elements managed to commit their state already */
2685   if (!find_message (bin, NULL, GST_MESSAGE_ASYNC_START)) {
2686     /* nothing found, remove all old ASYNC_DONE messages. This can happen when
2687      * all the elements commited their state while we were doing the state
2688      * change. We will still return ASYNC for consistency but we commit the
2689      * state already so that a _get_state() will return immediately. */
2690     bin_remove_messages (bin, NULL, GST_MESSAGE_ASYNC_DONE);
2691
2692     GST_DEBUG_OBJECT (bin, "async elements commited");
2693     bin_handle_async_done (bin, GST_STATE_CHANGE_SUCCESS, FALSE, FALSE);
2694   }
2695
2696 state_end:
2697   bin->priv->pending_async_done = FALSE;
2698   GST_OBJECT_UNLOCK (bin);
2699
2700   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2701       "done changing bin's state from %s to %s, now in %s, ret %s",
2702       gst_element_state_get_name (current),
2703       gst_element_state_get_name (next),
2704       gst_element_state_get_name (GST_STATE (element)),
2705       gst_element_state_change_return_get_name (ret));
2706
2707   return ret;
2708
2709   /* ERRORS */
2710 activate_failure:
2711   {
2712     GST_CAT_WARNING_OBJECT (GST_CAT_STATES, element,
2713         "failure (de)activating src pads");
2714     return GST_STATE_CHANGE_FAILURE;
2715   }
2716 }
2717
2718 /*
2719  * This function is a utility event handler for seek events.
2720  * It will send the event to all sinks or sources depending on the
2721  * event-direction.
2722  *
2723  * Applications are free to override this behaviour and
2724  * implement their own seek handler, but this will work for
2725  * pretty much all cases in practice.
2726  */
2727 static gboolean
2728 gst_bin_send_event (GstElement * element, GstEvent * event)
2729 {
2730   GstBin *bin = GST_BIN_CAST (element);
2731   GstIterator *iter;
2732   gboolean res = TRUE;
2733   gboolean done = FALSE;
2734   GValue data = { 0, };
2735
2736   if (GST_EVENT_IS_DOWNSTREAM (event)) {
2737     iter = gst_bin_iterate_sources (bin);
2738     GST_DEBUG_OBJECT (bin, "Sending %s event to src children",
2739         GST_EVENT_TYPE_NAME (event));
2740   } else {
2741     iter = gst_bin_iterate_sinks (bin);
2742     GST_DEBUG_OBJECT (bin, "Sending %s event to sink children",
2743         GST_EVENT_TYPE_NAME (event));
2744   }
2745
2746   while (!done) {
2747     switch (gst_iterator_next (iter, &data)) {
2748       case GST_ITERATOR_OK:
2749       {
2750         GstElement *child = g_value_get_object (&data);;
2751
2752         gst_event_ref (event);
2753         res &= gst_element_send_event (child, event);
2754         GST_LOG_OBJECT (child, "After handling %s event: %d",
2755             GST_EVENT_TYPE_NAME (event), res);
2756         break;
2757       }
2758       case GST_ITERATOR_RESYNC:
2759         gst_iterator_resync (iter);
2760         res = TRUE;
2761         break;
2762       case GST_ITERATOR_DONE:
2763         done = TRUE;
2764         break;
2765       case GST_ITERATOR_ERROR:
2766         g_assert_not_reached ();
2767         break;
2768     }
2769   }
2770   g_value_unset (&data);
2771   gst_iterator_free (iter);
2772   gst_event_unref (event);
2773
2774   return res;
2775 }
2776
2777 /* this is the function called by the threadpool. When async elements commit
2778  * their state, this function will attempt to bring the bin to the next state.
2779  */
2780 static void
2781 gst_bin_continue_func (BinContinueData * data)
2782 {
2783   GstBin *bin;
2784   GstState current, next, pending;
2785   GstStateChange transition;
2786
2787   bin = data->bin;
2788   pending = data->pending;
2789
2790   GST_DEBUG_OBJECT (bin, "waiting for state lock");
2791   GST_STATE_LOCK (bin);
2792
2793   GST_DEBUG_OBJECT (bin, "doing state continue");
2794   GST_OBJECT_LOCK (bin);
2795
2796   /* if a new state change happened after this thread was scheduled, we return
2797    * immediately. */
2798   if (data->cookie != GST_ELEMENT_CAST (bin)->state_cookie)
2799     goto interrupted;
2800
2801   current = GST_STATE (bin);
2802   next = GST_STATE_GET_NEXT (current, pending);
2803   transition = (GstStateChange) GST_STATE_TRANSITION (current, next);
2804
2805   GST_STATE_NEXT (bin) = next;
2806   GST_STATE_PENDING (bin) = pending;
2807   /* mark busy */
2808   GST_STATE_RETURN (bin) = GST_STATE_CHANGE_ASYNC;
2809   GST_OBJECT_UNLOCK (bin);
2810
2811   GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
2812       "continue state change %s to %s, final %s",
2813       gst_element_state_get_name (current),
2814       gst_element_state_get_name (next), gst_element_state_get_name (pending));
2815
2816   gst_element_change_state (GST_ELEMENT_CAST (bin), transition);
2817
2818   GST_STATE_UNLOCK (bin);
2819   GST_DEBUG_OBJECT (bin, "state continue done");
2820
2821   gst_object_unref (bin);
2822   g_slice_free (BinContinueData, data);
2823   return;
2824
2825 interrupted:
2826   {
2827     GST_OBJECT_UNLOCK (bin);
2828     GST_STATE_UNLOCK (bin);
2829     GST_DEBUG_OBJECT (bin, "state continue aborted due to intervening change");
2830     gst_object_unref (bin);
2831     g_slice_free (BinContinueData, data);
2832     return;
2833   }
2834 }
2835
2836 static GstBusSyncReply
2837 bin_bus_handler (GstBus * bus, GstMessage * message, GstBin * bin)
2838 {
2839   GstBinClass *bclass;
2840
2841   bclass = GST_BIN_GET_CLASS (bin);
2842   if (bclass->handle_message)
2843     bclass->handle_message (bin, message);
2844   else
2845     gst_message_unref (message);
2846
2847   return GST_BUS_DROP;
2848 }
2849
2850 static void
2851 bin_push_state_continue (BinContinueData * data)
2852 {
2853   GstBinClass *klass;
2854   GstBin *bin;
2855
2856   /* ref was taken */
2857   bin = data->bin;
2858   klass = GST_BIN_GET_CLASS (bin);
2859
2860   GST_DEBUG_OBJECT (bin, "pushing continue on thread pool");
2861   g_thread_pool_push (klass->pool, data, NULL);
2862 }
2863
2864 /* an element started an async state change, if we were not busy with a state
2865  * change, we perform a lost state.
2866  * This function is called with the OBJECT lock.
2867  */
2868 static void
2869 bin_handle_async_start (GstBin * bin)
2870 {
2871   GstState old_state, new_state;
2872   gboolean toplevel;
2873   GstMessage *amessage = NULL;
2874
2875   if (GST_STATE_RETURN (bin) == GST_STATE_CHANGE_FAILURE)
2876     goto had_error;
2877
2878   /* get our toplevel state */
2879   toplevel = BIN_IS_TOPLEVEL (bin);
2880
2881   /* prepare an ASYNC_START message, we always post the start message even if we
2882    * are busy with a state change or when we are NO_PREROLL. */
2883   if (!toplevel)
2884     /* non toplevel bin, prepare async-start for the parent */
2885     amessage = gst_message_new_async_start (GST_OBJECT_CAST (bin));
2886
2887   if (bin->polling || GST_STATE_PENDING (bin) != GST_STATE_VOID_PENDING)
2888     goto was_busy;
2889
2890   /* async starts are ignored when we are NO_PREROLL */
2891   if (GST_STATE_RETURN (bin) == GST_STATE_CHANGE_NO_PREROLL)
2892     goto was_no_preroll;
2893
2894   old_state = GST_STATE (bin);
2895
2896   /* when we PLAYING we go back to PAUSED, when preroll happens, we go back to
2897    * PLAYING after optionally redistributing the base_time. */
2898   if (old_state > GST_STATE_PAUSED)
2899     new_state = GST_STATE_PAUSED;
2900   else
2901     new_state = old_state;
2902
2903   GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin,
2904       "lost state of %s, new %s", gst_element_state_get_name (old_state),
2905       gst_element_state_get_name (new_state));
2906
2907   GST_STATE (bin) = new_state;
2908   GST_STATE_NEXT (bin) = new_state;
2909   GST_STATE_PENDING (bin) = new_state;
2910   GST_STATE_RETURN (bin) = GST_STATE_CHANGE_ASYNC;
2911   GST_OBJECT_UNLOCK (bin);
2912
2913   /* post message */
2914   _priv_gst_element_state_changed (GST_ELEMENT_CAST (bin), new_state, new_state,
2915       new_state);
2916
2917 post_start:
2918   if (amessage) {
2919     /* post our ASYNC_START. */
2920     GST_DEBUG_OBJECT (bin, "posting ASYNC_START to parent");
2921     gst_element_post_message (GST_ELEMENT_CAST (bin), amessage);
2922   }
2923   GST_OBJECT_LOCK (bin);
2924
2925   return;
2926
2927 had_error:
2928   {
2929     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "we had an error");
2930     return;
2931   }
2932 was_busy:
2933   {
2934     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "state change busy");
2935     GST_OBJECT_UNLOCK (bin);
2936     goto post_start;
2937   }
2938 was_no_preroll:
2939   {
2940     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "ignoring, we are NO_PREROLL");
2941     GST_OBJECT_UNLOCK (bin);
2942     goto post_start;
2943   }
2944 }
2945
2946 /* this function is called when there are no more async elements in the bin. We
2947  * post a state changed message and an ASYNC_DONE message.
2948  * This function is called with the OBJECT lock.
2949  */
2950 static void
2951 bin_handle_async_done (GstBin * bin, GstStateChangeReturn ret,
2952     gboolean flag_pending, gboolean reset_time)
2953 {
2954   GstState current, pending, target;
2955   GstStateChangeReturn old_ret;
2956   GstState old_state, old_next;
2957   gboolean toplevel, state_changed = FALSE;
2958   GstMessage *amessage = NULL;
2959   BinContinueData *cont = NULL;
2960
2961   if (GST_STATE_RETURN (bin) == GST_STATE_CHANGE_FAILURE)
2962     goto had_error;
2963
2964   pending = GST_STATE_PENDING (bin);
2965
2966   if (bin->polling)
2967     goto was_busy;
2968
2969   /* check if there is something to commit */
2970   if (pending == GST_STATE_VOID_PENDING)
2971     goto nothing_pending;
2972
2973   old_ret = GST_STATE_RETURN (bin);
2974   GST_STATE_RETURN (bin) = ret;
2975
2976   /* move to the next target state */
2977   target = GST_STATE_TARGET (bin);
2978   pending = GST_STATE_PENDING (bin) = target;
2979
2980   amessage = gst_message_new_async_done (GST_OBJECT_CAST (bin), reset_time);
2981
2982   old_state = GST_STATE (bin);
2983   /* this is the state we should go to next */
2984   old_next = GST_STATE_NEXT (bin);
2985
2986   if (old_next != GST_STATE_PLAYING) {
2987     GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
2988         "committing state from %s to %s, old pending %s",
2989         gst_element_state_get_name (old_state),
2990         gst_element_state_get_name (old_next),
2991         gst_element_state_get_name (pending));
2992
2993     /* update current state */
2994     current = GST_STATE (bin) = old_next;
2995   } else {
2996     GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
2997         "setting state from %s to %s, pending %s",
2998         gst_element_state_get_name (old_state),
2999         gst_element_state_get_name (old_state),
3000         gst_element_state_get_name (pending));
3001     current = old_state;
3002   }
3003
3004   /* get our toplevel state */
3005   toplevel = BIN_IS_TOPLEVEL (bin);
3006
3007   /* see if we reached the final state. If we are not toplevel, we also have to
3008    * stop here, the parent will continue our state. */
3009   if ((pending == current) || !toplevel) {
3010     GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
3011         "completed state change, pending VOID");
3012
3013     /* mark VOID pending */
3014     pending = GST_STATE_VOID_PENDING;
3015     GST_STATE_PENDING (bin) = pending;
3016     GST_STATE_NEXT (bin) = GST_STATE_VOID_PENDING;
3017   } else {
3018     GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin,
3019         "continue state change, pending %s",
3020         gst_element_state_get_name (pending));
3021
3022     cont = g_slice_new (BinContinueData);
3023
3024     /* ref to the bin */
3025     cont->bin = gst_object_ref (bin);
3026     /* cookie to detect concurrent state change */
3027     cont->cookie = GST_ELEMENT_CAST (bin)->state_cookie;
3028     /* pending target state */
3029     cont->pending = pending;
3030     /* mark busy */
3031     GST_STATE_RETURN (bin) = GST_STATE_CHANGE_ASYNC;
3032     GST_STATE_NEXT (bin) = GST_STATE_GET_NEXT (old_state, pending);
3033   }
3034
3035   if (old_next != GST_STATE_PLAYING) {
3036     if (old_state != old_next || old_ret == GST_STATE_CHANGE_ASYNC) {
3037       state_changed = TRUE;
3038     }
3039   }
3040   GST_OBJECT_UNLOCK (bin);
3041
3042   if (state_changed) {
3043     _priv_gst_element_state_changed (GST_ELEMENT_CAST (bin), old_state,
3044         old_next, pending);
3045   }
3046   if (amessage) {
3047     /* post our combined ASYNC_DONE when all is ASYNC_DONE. */
3048     GST_DEBUG_OBJECT (bin, "posting ASYNC_DONE to parent");
3049     gst_element_post_message (GST_ELEMENT_CAST (bin), amessage);
3050   }
3051
3052   GST_OBJECT_LOCK (bin);
3053   if (cont) {
3054     /* toplevel, start continue state */
3055     GST_DEBUG_OBJECT (bin, "all async-done, starting state continue");
3056     bin_push_state_continue (cont);
3057   } else {
3058     GST_DEBUG_OBJECT (bin, "state change complete");
3059     GST_STATE_BROADCAST (bin);
3060   }
3061   return;
3062
3063 had_error:
3064   {
3065     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "we had an error");
3066     return;
3067   }
3068 was_busy:
3069   {
3070     GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, bin, "state change busy");
3071     /* if we were busy with a state change and we are requested to flag a
3072      * pending async done, we do so here */
3073     if (flag_pending)
3074       bin->priv->pending_async_done = TRUE;
3075     return;
3076   }
3077 nothing_pending:
3078   {
3079     GST_CAT_INFO_OBJECT (GST_CAT_STATES, bin, "nothing pending");
3080     return;
3081   }
3082 }
3083
3084 static void
3085 bin_do_eos (GstBin * bin)
3086 {
3087   guint32 seqnum = 0;
3088   gboolean eos;
3089
3090   GST_OBJECT_LOCK (bin);
3091   /* If all sinks are EOS, we're in PLAYING and no state change is pending
3092    * we forward the EOS message to the parent bin or application
3093    */
3094   eos = GST_STATE (bin) == GST_STATE_PLAYING
3095       && GST_STATE_PENDING (bin) == GST_STATE_VOID_PENDING
3096       && is_eos (bin, &seqnum);
3097   GST_OBJECT_UNLOCK (bin);
3098
3099   if (eos
3100       && g_atomic_int_compare_and_exchange (&bin->priv->posted_eos, FALSE,
3101           TRUE)) {
3102     GstMessage *tmessage;
3103
3104     /* Clear out any further messages, and reset posted_eos so we can
3105        detect any new EOS that happens (eg, after a seek). Since all
3106        sinks have now posted an EOS, there will be no further EOS events
3107        seen unless there is a new logical EOS */
3108     GST_OBJECT_LOCK (bin);
3109     bin_remove_messages (bin, NULL, GST_MESSAGE_EOS);
3110     bin->priv->posted_eos = FALSE;
3111     GST_OBJECT_UNLOCK (bin);
3112
3113     tmessage = gst_message_new_eos (GST_OBJECT_CAST (bin));
3114     gst_message_set_seqnum (tmessage, seqnum);
3115     GST_DEBUG_OBJECT (bin,
3116         "all sinks posted EOS, posting seqnum #%" G_GUINT32_FORMAT, seqnum);
3117     gst_element_post_message (GST_ELEMENT_CAST (bin), tmessage);
3118   }
3119 }
3120
3121 /* must be called with the object lock. This function releases the lock to post
3122  * the message. */
3123 static void
3124 bin_do_message_forward (GstBin * bin, GstMessage * message)
3125 {
3126   if (bin->priv->message_forward) {
3127     GstMessage *forwarded;
3128
3129     GST_DEBUG_OBJECT (bin, "pass %s message upward",
3130         GST_MESSAGE_TYPE_NAME (message));
3131     GST_OBJECT_UNLOCK (bin);
3132
3133     /* we need to convert these messages to element messages so that our parent
3134      * bin can easily ignore them and so that the application can easily
3135      * distinguish between the internally forwarded and the real messages. */
3136     forwarded = gst_message_new_element (GST_OBJECT_CAST (bin),
3137         gst_structure_new ("GstBinForwarded",
3138             "message", GST_TYPE_MESSAGE, message, NULL));
3139
3140     gst_element_post_message (GST_ELEMENT_CAST (bin), forwarded);
3141
3142     GST_OBJECT_LOCK (bin);
3143   }
3144 }
3145
3146 /* handle child messages:
3147  *
3148  * This method is called synchronously when a child posts a message on
3149  * the internal bus.
3150  *
3151  * GST_MESSAGE_EOS: This message is only posted by sinks
3152  *     in the PLAYING state. If all sinks posted the EOS message, post
3153  *     one upwards.
3154  *
3155  * GST_MESSAGE_STATE_DIRTY: Deprecated
3156  *
3157  * GST_MESSAGE_SEGMENT_START: just collect, never forward upwards. If an
3158  *     element posts segment_start twice, only the last message is kept.
3159  *
3160  * GST_MESSAGE_SEGMENT_DONE: replace SEGMENT_START message from same poster
3161  *     with the segment_done message. If there are no more segment_start
3162  *     messages, post segment_done message upwards.
3163  *
3164  * GST_MESSAGE_DURATION: remove all previously cached duration messages.
3165  *     Whenever someone performs a duration query on the bin, we store the
3166  *     result so we can answer it quicker the next time. Any element that
3167  *     changes its duration marks our cached values invalid.
3168  *     This message is also posted upwards. This is currently disabled
3169  *     because too many elements don't post DURATION messages when the
3170  *     duration changes.
3171  *
3172  * GST_MESSAGE_CLOCK_LOST: This message is posted by an element when it
3173  *     can no longer provide a clock. The default bin behaviour is to
3174  *     check if the lost clock was the one provided by the bin. If so and
3175  *     we are currently in the PLAYING state, we forward the message to
3176  *     our parent.
3177  *     This message is also generated when we remove a clock provider from
3178  *     a bin. If this message is received by the application, it should
3179  *     PAUSE the pipeline and set it back to PLAYING to force a new clock
3180  *     and a new base_time distribution.
3181  *
3182  * GST_MESSAGE_CLOCK_PROVIDE: This message is generated when an element
3183  *     can provide a clock. This mostly happens when we add a new clock
3184  *     provider to the bin. The default behaviour of the bin is to mark the
3185  *     currently selected clock as dirty, which will perform a clock
3186  *     recalculation the next time we are asked to provide a clock.
3187  *     This message is never sent to the application but is forwarded to
3188  *     the parent.
3189  *
3190  * GST_MESSAGE_ASYNC_START: Create an internal ELEMENT message that stores
3191  *     the state of the element and the fact that the element will need a
3192  *     new base_time. This message is not forwarded to the application.
3193  *
3194  * GST_MESSAGE_ASYNC_DONE: Find the internal ELEMENT message we kept for the
3195  *     element when it posted ASYNC_START. If all elements are done, post a
3196  *     ASYNC_DONE message to the parent.
3197  *
3198  * OTHER: post upwards.
3199  */
3200 static void
3201 gst_bin_handle_message_func (GstBin * bin, GstMessage * message)
3202 {
3203   GstObject *src;
3204   GstMessageType type;
3205   GstMessage *tmessage;
3206   guint32 seqnum;
3207
3208   src = GST_MESSAGE_SRC (message);
3209   type = GST_MESSAGE_TYPE (message);
3210
3211   GST_DEBUG_OBJECT (bin, "[msg %p] handling child %s message of type %s",
3212       message, src ? GST_ELEMENT_NAME (src) : "(NULL)",
3213       GST_MESSAGE_TYPE_NAME (message));
3214
3215   switch (type) {
3216     case GST_MESSAGE_ERROR:
3217     {
3218       GST_OBJECT_LOCK (bin);
3219       /* flag error */
3220       GST_DEBUG_OBJECT (bin, "got ERROR message, unlocking state change");
3221       GST_STATE_RETURN (bin) = GST_STATE_CHANGE_FAILURE;
3222       GST_STATE_BROADCAST (bin);
3223       GST_OBJECT_UNLOCK (bin);
3224
3225       goto forward;
3226     }
3227     case GST_MESSAGE_EOS:
3228     {
3229
3230       /* collect all eos messages from the children */
3231       GST_OBJECT_LOCK (bin);
3232       bin_do_message_forward (bin, message);
3233       /* ref message for future use  */
3234       bin_replace_message (bin, message, GST_MESSAGE_EOS);
3235       GST_OBJECT_UNLOCK (bin);
3236
3237       bin_do_eos (bin);
3238       break;
3239     }
3240     case GST_MESSAGE_STATE_DIRTY:
3241     {
3242       GST_WARNING_OBJECT (bin, "received deprecated STATE_DIRTY message");
3243
3244       /* free message */
3245       gst_message_unref (message);
3246       break;
3247     }
3248     case GST_MESSAGE_SEGMENT_START:{
3249       gboolean post = FALSE;
3250       GstFormat format;
3251       gint64 position;
3252
3253       gst_message_parse_segment_start (message, &format, &position);
3254       seqnum = gst_message_get_seqnum (message);
3255
3256       GST_OBJECT_LOCK (bin);
3257       bin_do_message_forward (bin, message);
3258       /* if this is the first segment-start, post to parent but not to the
3259        * application */
3260       if (!find_message (bin, NULL, GST_MESSAGE_SEGMENT_START) &&
3261           (GST_OBJECT_PARENT (bin) != NULL)) {
3262         post = TRUE;
3263       }
3264       /* replace any previous segment_start message from this source
3265        * with the new segment start message */
3266       bin_replace_message (bin, message, GST_MESSAGE_SEGMENT_START);
3267       GST_OBJECT_UNLOCK (bin);
3268       if (post) {
3269         tmessage = gst_message_new_segment_start (GST_OBJECT_CAST (bin),
3270             format, position);
3271         gst_message_set_seqnum (tmessage, seqnum);
3272
3273         /* post segment start with initial format and position. */
3274         GST_DEBUG_OBJECT (bin, "posting SEGMENT_START (%u) bus message: %p",
3275             seqnum, message);
3276         gst_element_post_message (GST_ELEMENT_CAST (bin), tmessage);
3277       }
3278       break;
3279     }
3280     case GST_MESSAGE_SEGMENT_DONE:
3281     {
3282       gboolean post = FALSE;
3283       GstFormat format;
3284       gint64 position;
3285
3286       gst_message_parse_segment_done (message, &format, &position);
3287       seqnum = gst_message_get_seqnum (message);
3288
3289       GST_OBJECT_LOCK (bin);
3290       bin_do_message_forward (bin, message);
3291       bin_replace_message (bin, message, GST_MESSAGE_SEGMENT_START);
3292       /* if there are no more segment_start messages, everybody posted
3293        * a segment_done and we can post one on the bus. */
3294
3295       /* we don't care who still has a pending segment start */
3296       if (!find_message (bin, NULL, GST_MESSAGE_SEGMENT_START)) {
3297         /* nothing found */
3298         post = TRUE;
3299         /* remove all old segment_done messages */
3300         bin_remove_messages (bin, NULL, GST_MESSAGE_SEGMENT_DONE);
3301       }
3302       GST_OBJECT_UNLOCK (bin);
3303       if (post) {
3304         tmessage = gst_message_new_segment_done (GST_OBJECT_CAST (bin),
3305             format, position);
3306         gst_message_set_seqnum (tmessage, seqnum);
3307
3308         /* post segment done with latest format and position. */
3309         GST_DEBUG_OBJECT (bin, "posting SEGMENT_DONE (%u) bus message: %p",
3310             seqnum, message);
3311         gst_element_post_message (GST_ELEMENT_CAST (bin), tmessage);
3312       }
3313       break;
3314     }
3315     case GST_MESSAGE_DURATION:
3316     {
3317       /* remove all cached duration messages, next time somebody asks
3318        * for duration, we will recalculate. */
3319       GST_OBJECT_LOCK (bin);
3320       bin_remove_messages (bin, NULL, GST_MESSAGE_DURATION);
3321       GST_OBJECT_UNLOCK (bin);
3322       goto forward;
3323     }
3324     case GST_MESSAGE_CLOCK_LOST:
3325     {
3326       GstClock **provided_clock_p;
3327       GstElement **clock_provider_p;
3328       gboolean playing, provided, forward;
3329       GstClock *clock;
3330
3331       gst_message_parse_clock_lost (message, &clock);
3332
3333       GST_OBJECT_LOCK (bin);
3334       bin->clock_dirty = TRUE;
3335       /* if we lost the clock that we provided, post to parent but
3336        * only if we are PLAYING. */
3337       provided = (clock == bin->provided_clock);
3338       playing = (GST_STATE (bin) == GST_STATE_PLAYING);
3339       forward = playing & provided;
3340       if (provided) {
3341         GST_DEBUG_OBJECT (bin,
3342             "Lost clock %" GST_PTR_FORMAT " provided by %" GST_PTR_FORMAT,
3343             bin->provided_clock, bin->clock_provider);
3344         provided_clock_p = &bin->provided_clock;
3345         clock_provider_p = &bin->clock_provider;
3346         gst_object_replace ((GstObject **) provided_clock_p, NULL);
3347         gst_object_replace ((GstObject **) clock_provider_p, NULL);
3348       }
3349       GST_DEBUG_OBJECT (bin, "provided %d, playing %d, forward %d",
3350           provided, playing, forward);
3351       GST_OBJECT_UNLOCK (bin);
3352
3353       if (forward)
3354         goto forward;
3355
3356       /* free message */
3357       gst_message_unref (message);
3358       break;
3359     }
3360     case GST_MESSAGE_CLOCK_PROVIDE:
3361     {
3362       gboolean forward;
3363
3364       GST_OBJECT_LOCK (bin);
3365       bin->clock_dirty = TRUE;
3366       /* a new clock is available, post to parent but not
3367        * to the application */
3368       forward = GST_OBJECT_PARENT (bin) != NULL;
3369       GST_OBJECT_UNLOCK (bin);
3370
3371       if (forward)
3372         goto forward;
3373
3374       /* free message */
3375       gst_message_unref (message);
3376       break;
3377     }
3378     case GST_MESSAGE_ASYNC_START:
3379     {
3380       GstState target;
3381
3382       GST_DEBUG_OBJECT (bin, "ASYNC_START message %p, %s", message,
3383           src ? GST_OBJECT_NAME (src) : "(NULL)");
3384
3385       GST_OBJECT_LOCK (bin);
3386       bin_do_message_forward (bin, message);
3387
3388       /* we ignore the message if we are going to <= READY */
3389       if ((target = GST_STATE_TARGET (bin)) <= GST_STATE_READY)
3390         goto ignore_start_message;
3391
3392       /* takes ownership of the message */
3393       bin_replace_message (bin, message, GST_MESSAGE_ASYNC_START);
3394
3395       bin_handle_async_start (bin);
3396       GST_OBJECT_UNLOCK (bin);
3397       break;
3398
3399     ignore_start_message:
3400       {
3401         GST_DEBUG_OBJECT (bin, "ignoring message, target %s",
3402             gst_element_state_get_name (target));
3403         GST_OBJECT_UNLOCK (bin);
3404         gst_message_unref (message);
3405         break;
3406       }
3407     }
3408     case GST_MESSAGE_ASYNC_DONE:
3409     {
3410       gboolean reset_time;
3411       GstState target;
3412
3413       GST_DEBUG_OBJECT (bin, "ASYNC_DONE message %p, %s", message,
3414           src ? GST_OBJECT_NAME (src) : "(NULL)");
3415
3416       gst_message_parse_async_done (message, &reset_time);
3417
3418       GST_OBJECT_LOCK (bin);
3419       bin_do_message_forward (bin, message);
3420
3421       /* ignore messages if we are shutting down */
3422       if ((target = GST_STATE_TARGET (bin)) <= GST_STATE_READY)
3423         goto ignore_done_message;
3424
3425       bin_replace_message (bin, message, GST_MESSAGE_ASYNC_START);
3426       /* if there are no more ASYNC_START messages, everybody posted
3427        * a ASYNC_DONE and we can post one on the bus. When checking, we
3428        * don't care who still has a pending ASYNC_START */
3429       if (!find_message (bin, NULL, GST_MESSAGE_ASYNC_START)) {
3430         /* nothing found, remove all old ASYNC_DONE messages */
3431         bin_remove_messages (bin, NULL, GST_MESSAGE_ASYNC_DONE);
3432
3433         GST_DEBUG_OBJECT (bin, "async elements commited");
3434         /* when we get an async done message when a state change was busy, we
3435          * need to set the pending_done flag so that at the end of the state
3436          * change we can see if we need to verify pending async elements, hence
3437          * the TRUE argument here. */
3438         bin_handle_async_done (bin, GST_STATE_CHANGE_SUCCESS, TRUE, reset_time);
3439       } else {
3440         GST_DEBUG_OBJECT (bin, "there are more async elements pending");
3441       }
3442       GST_OBJECT_UNLOCK (bin);
3443       break;
3444
3445     ignore_done_message:
3446       {
3447         GST_DEBUG_OBJECT (bin, "ignoring message, target %s",
3448             gst_element_state_get_name (target));
3449         GST_OBJECT_UNLOCK (bin);
3450         gst_message_unref (message);
3451         break;
3452       }
3453     }
3454     case GST_MESSAGE_STRUCTURE_CHANGE:
3455     {
3456       gboolean busy;
3457
3458       gst_message_parse_structure_change (message, NULL, NULL, &busy);
3459
3460       GST_OBJECT_LOCK (bin);
3461       if (busy) {
3462         /* while the pad is busy, avoid following it when doing state changes.
3463          * Don't update the cookie yet, we will do that after the structure
3464          * change finished and we are ready to inspect the new updated
3465          * structure. */
3466         bin_replace_message (bin, message, GST_MESSAGE_STRUCTURE_CHANGE);
3467         message = NULL;
3468       } else {
3469         /* a pad link/unlink ended, signal the state change iterator that we
3470          * need to resync by updating the structure_cookie. */
3471         bin_remove_messages (bin, GST_MESSAGE_SRC (message),
3472             GST_MESSAGE_STRUCTURE_CHANGE);
3473         bin->priv->structure_cookie++;
3474       }
3475       GST_OBJECT_UNLOCK (bin);
3476
3477       if (message)
3478         gst_message_unref (message);
3479
3480       break;
3481     }
3482     default:
3483       goto forward;
3484   }
3485   return;
3486
3487 forward:
3488   {
3489     /* Send all other messages upward */
3490     GST_DEBUG_OBJECT (bin, "posting message upward");
3491     gst_element_post_message (GST_ELEMENT_CAST (bin), message);
3492     return;
3493   }
3494 }
3495
3496 /* generic struct passed to all query fold methods */
3497 typedef struct
3498 {
3499   GstQuery *query;
3500   gint64 min;
3501   gint64 max;
3502   gboolean live;
3503 } QueryFold;
3504
3505 typedef void (*QueryInitFunction) (GstBin * bin, QueryFold * fold);
3506 typedef void (*QueryDoneFunction) (GstBin * bin, QueryFold * fold);
3507
3508 /* for duration/position we collect all durations/positions and take
3509  * the MAX of all valid results */
3510 static void
3511 bin_query_min_max_init (GstBin * bin, QueryFold * fold)
3512 {
3513   fold->min = 0;
3514   fold->max = -1;
3515   fold->live = FALSE;
3516 }
3517
3518 static gboolean
3519 bin_query_duration_fold (const GValue * vitem, GValue * ret, QueryFold * fold)
3520 {
3521   GstElement *item = g_value_get_object (vitem);
3522
3523   if (gst_element_query (item, fold->query)) {
3524     gint64 duration;
3525
3526     g_value_set_boolean (ret, TRUE);
3527
3528     gst_query_parse_duration (fold->query, NULL, &duration);
3529
3530     GST_DEBUG_OBJECT (item, "got duration %" G_GINT64_FORMAT, duration);
3531
3532     if (duration > fold->max)
3533       fold->max = duration;
3534   }
3535
3536   return TRUE;
3537 }
3538
3539 static void
3540 bin_query_duration_done (GstBin * bin, QueryFold * fold)
3541 {
3542   GstFormat format;
3543
3544   gst_query_parse_duration (fold->query, &format, NULL);
3545   /* store max in query result */
3546   gst_query_set_duration (fold->query, format, fold->max);
3547
3548   GST_DEBUG_OBJECT (bin, "max duration %" G_GINT64_FORMAT, fold->max);
3549
3550   /* and cache now */
3551   GST_OBJECT_LOCK (bin);
3552   bin->messages = g_list_prepend (bin->messages,
3553       gst_message_new_duration (GST_OBJECT_CAST (bin), format, fold->max));
3554   GST_OBJECT_UNLOCK (bin);
3555 }
3556
3557 static gboolean
3558 bin_query_position_fold (const GValue * vitem, GValue * ret, QueryFold * fold)
3559 {
3560   GstElement *item = g_value_get_object (vitem);
3561
3562   if (gst_element_query (item, fold->query)) {
3563     gint64 position;
3564
3565     g_value_set_boolean (ret, TRUE);
3566
3567     gst_query_parse_position (fold->query, NULL, &position);
3568
3569     GST_DEBUG_OBJECT (item, "got position %" G_GINT64_FORMAT, position);
3570
3571     if (position > fold->max)
3572       fold->max = position;
3573   }
3574
3575   return TRUE;
3576 }
3577
3578 static void
3579 bin_query_position_done (GstBin * bin, QueryFold * fold)
3580 {
3581   GstFormat format;
3582
3583   gst_query_parse_position (fold->query, &format, NULL);
3584   /* store max in query result */
3585   gst_query_set_position (fold->query, format, fold->max);
3586
3587   GST_DEBUG_OBJECT (bin, "max position %" G_GINT64_FORMAT, fold->max);
3588 }
3589
3590 static gboolean
3591 bin_query_latency_fold (const GValue * vitem, GValue * ret, QueryFold * fold)
3592 {
3593   GstElement *item = g_value_get_object (vitem);
3594
3595   if (gst_element_query (item, fold->query)) {
3596     GstClockTime min, max;
3597     gboolean live;
3598
3599     gst_query_parse_latency (fold->query, &live, &min, &max);
3600
3601     GST_DEBUG_OBJECT (item,
3602         "got latency min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT
3603         ", live %d", GST_TIME_ARGS (min), GST_TIME_ARGS (max), live);
3604
3605     /* for the combined latency we collect the MAX of all min latencies and
3606      * the MIN of all max latencies */
3607     if (live) {
3608       if (min > fold->min)
3609         fold->min = min;
3610       if (fold->max == -1)
3611         fold->max = max;
3612       else if (max < fold->max)
3613         fold->max = max;
3614       if (fold->live == FALSE)
3615         fold->live = live;
3616     }
3617   } else {
3618     g_value_set_boolean (ret, FALSE);
3619     GST_DEBUG_OBJECT (item, "failed query");
3620   }
3621
3622   return TRUE;
3623 }
3624
3625 static void
3626 bin_query_latency_done (GstBin * bin, QueryFold * fold)
3627 {
3628   /* store max in query result */
3629   gst_query_set_latency (fold->query, fold->live, fold->min, fold->max);
3630
3631   GST_DEBUG_OBJECT (bin,
3632       "latency min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT
3633       ", live %d", GST_TIME_ARGS (fold->min), GST_TIME_ARGS (fold->max),
3634       fold->live);
3635 }
3636
3637 /* generic fold, return first valid result */
3638 static gboolean
3639 bin_query_generic_fold (const GValue * vitem, GValue * ret, QueryFold * fold)
3640 {
3641   GstElement *item = g_value_get_object (vitem);
3642   gboolean res;
3643
3644   if ((res = gst_element_query (item, fold->query))) {
3645     g_value_set_boolean (ret, TRUE);
3646     GST_DEBUG_OBJECT (item, "answered query %p", fold->query);
3647   }
3648
3649   /* and stop as soon as we have a valid result */
3650   return !res;
3651 }
3652
3653 static gboolean
3654 gst_bin_query (GstElement * element, GstQuery * query)
3655 {
3656   GstBin *bin = GST_BIN_CAST (element);
3657   GstIterator *iter;
3658   gboolean res = FALSE;
3659   GstIteratorFoldFunction fold_func;
3660   QueryInitFunction fold_init = NULL;
3661   QueryDoneFunction fold_done = NULL;
3662   QueryFold fold_data;
3663   GValue ret = { 0 };
3664
3665   switch (GST_QUERY_TYPE (query)) {
3666     case GST_QUERY_DURATION:
3667     {
3668       GList *cached;
3669       GstFormat qformat;
3670
3671       gst_query_parse_duration (query, &qformat, NULL);
3672
3673       /* find cached duration query */
3674       GST_OBJECT_LOCK (bin);
3675       for (cached = bin->messages; cached; cached = g_list_next (cached)) {
3676         GstMessage *message = (GstMessage *) cached->data;
3677
3678         if (GST_MESSAGE_TYPE (message) == GST_MESSAGE_DURATION &&
3679             GST_MESSAGE_SRC (message) == GST_OBJECT_CAST (bin)) {
3680           GstFormat format;
3681           gint64 duration;
3682
3683           gst_message_parse_duration (message, &format, &duration);
3684
3685           /* if cached same format, copy duration in query result */
3686           if (format == qformat) {
3687             GST_DEBUG_OBJECT (bin, "return cached duration %" G_GINT64_FORMAT,
3688                 duration);
3689             GST_OBJECT_UNLOCK (bin);
3690
3691             gst_query_set_duration (query, qformat, duration);
3692             res = TRUE;
3693             goto exit;
3694           }
3695         }
3696       }
3697       GST_OBJECT_UNLOCK (bin);
3698       /* no cached value found, iterate and collect durations */
3699       fold_func = (GstIteratorFoldFunction) bin_query_duration_fold;
3700       fold_init = bin_query_min_max_init;
3701       fold_done = bin_query_duration_done;
3702       break;
3703     }
3704     case GST_QUERY_POSITION:
3705     {
3706       fold_func = (GstIteratorFoldFunction) bin_query_position_fold;
3707       fold_init = bin_query_min_max_init;
3708       fold_done = bin_query_position_done;
3709       break;
3710     }
3711     case GST_QUERY_LATENCY:
3712     {
3713       fold_func = (GstIteratorFoldFunction) bin_query_latency_fold;
3714       fold_init = bin_query_min_max_init;
3715       fold_done = bin_query_latency_done;
3716       res = TRUE;
3717       break;
3718     }
3719     default:
3720       fold_func = (GstIteratorFoldFunction) bin_query_generic_fold;
3721       break;
3722   }
3723
3724   fold_data.query = query;
3725
3726   /* set the result of the query to FALSE initially */
3727   g_value_init (&ret, G_TYPE_BOOLEAN);
3728   g_value_set_boolean (&ret, res);
3729
3730   iter = gst_bin_iterate_sinks (bin);
3731   GST_DEBUG_OBJECT (bin, "Sending query %p (type %s) to sink children",
3732       query, GST_QUERY_TYPE_NAME (query));
3733
3734   if (fold_init)
3735     fold_init (bin, &fold_data);
3736
3737   while (TRUE) {
3738     GstIteratorResult ires;
3739
3740     ires = gst_iterator_fold (iter, fold_func, &ret, &fold_data);
3741
3742     switch (ires) {
3743       case GST_ITERATOR_RESYNC:
3744         gst_iterator_resync (iter);
3745         if (fold_init)
3746           fold_init (bin, &fold_data);
3747         g_value_set_boolean (&ret, res);
3748         break;
3749       case GST_ITERATOR_OK:
3750       case GST_ITERATOR_DONE:
3751         res = g_value_get_boolean (&ret);
3752         if (fold_done != NULL && res)
3753           fold_done (bin, &fold_data);
3754         goto done;
3755       default:
3756         res = FALSE;
3757         goto done;
3758     }
3759   }
3760 done:
3761   gst_iterator_free (iter);
3762
3763 exit:
3764   GST_DEBUG_OBJECT (bin, "query %p result %d", query, res);
3765
3766   return res;
3767 }
3768
3769 static gint
3770 compare_name (const GValue * velement, const gchar * name)
3771 {
3772   gint eq;
3773   GstElement *element = g_value_get_object (velement);
3774
3775   GST_OBJECT_LOCK (element);
3776   eq = strcmp (GST_ELEMENT_NAME (element), name);
3777   GST_OBJECT_UNLOCK (element);
3778
3779   return eq;
3780 }
3781
3782 /**
3783  * gst_bin_get_by_name:
3784  * @bin: a #GstBin
3785  * @name: the element name to search for
3786  *
3787  * Gets the element with the given name from a bin. This
3788  * function recurses into child bins.
3789  *
3790  * Returns NULL if no element with the given name is found in the bin.
3791  *
3792  * MT safe.  Caller owns returned reference.
3793  *
3794  * Returns: (transfer full): the #GstElement with the given name, or NULL
3795  */
3796 GstElement *
3797 gst_bin_get_by_name (GstBin * bin, const gchar * name)
3798 {
3799   GstIterator *children;
3800   GValue result = { 0, };
3801   GstElement *element;
3802   gboolean found;
3803
3804   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
3805
3806   GST_CAT_INFO (GST_CAT_PARENTAGE, "[%s]: looking up child element %s",
3807       GST_ELEMENT_NAME (bin), name);
3808
3809   children = gst_bin_iterate_recurse (bin);
3810   found = gst_iterator_find_custom (children,
3811       (GCompareFunc) compare_name, &result, (gpointer) name);
3812   gst_iterator_free (children);
3813
3814   if (found) {
3815     element = g_value_dup_object (&result);
3816     g_value_unset (&result);
3817   } else {
3818     element = NULL;
3819   }
3820
3821   return element;
3822 }
3823
3824 /**
3825  * gst_bin_get_by_name_recurse_up:
3826  * @bin: a #GstBin
3827  * @name: the element name to search for
3828  *
3829  * Gets the element with the given name from this bin. If the
3830  * element is not found, a recursion is performed on the parent bin.
3831  *
3832  * Returns NULL if:
3833  * - no element with the given name is found in the bin
3834  *
3835  * MT safe.  Caller owns returned reference.
3836  *
3837  * Returns: (transfer full): the #GstElement with the given name, or NULL
3838  */
3839 GstElement *
3840 gst_bin_get_by_name_recurse_up (GstBin * bin, const gchar * name)
3841 {
3842   GstElement *result;
3843
3844   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
3845   g_return_val_if_fail (name != NULL, NULL);
3846
3847   result = gst_bin_get_by_name (bin, name);
3848
3849   if (!result) {
3850     GstObject *parent;
3851
3852     parent = gst_object_get_parent (GST_OBJECT_CAST (bin));
3853     if (parent) {
3854       if (GST_IS_BIN (parent)) {
3855         result = gst_bin_get_by_name_recurse_up (GST_BIN_CAST (parent), name);
3856       }
3857       gst_object_unref (parent);
3858     }
3859   }
3860
3861   return result;
3862 }
3863
3864 static gint
3865 compare_interface (const GValue * velement, GValue * interface)
3866 {
3867   GstElement *element = g_value_get_object (velement);
3868   GType interface_type = (GType) g_value_get_pointer (interface);
3869   gint ret;
3870
3871   if (G_TYPE_CHECK_INSTANCE_TYPE (element, interface_type)) {
3872     ret = 0;
3873   } else {
3874     ret = 1;
3875   }
3876   return ret;
3877 }
3878
3879 /**
3880  * gst_bin_get_by_interface:
3881  * @bin: a #GstBin
3882  * @iface: the #GType of an interface
3883  *
3884  * Looks for an element inside the bin that implements the given
3885  * interface. If such an element is found, it returns the element.
3886  * You can cast this element to the given interface afterwards.  If you want
3887  * all elements that implement the interface, use
3888  * gst_bin_iterate_all_by_interface(). This function recurses into child bins.
3889  *
3890  * MT safe.  Caller owns returned reference.
3891  *
3892  * Returns: (transfer full): A #GstElement inside the bin implementing the interface
3893  */
3894 GstElement *
3895 gst_bin_get_by_interface (GstBin * bin, GType iface)
3896 {
3897   GstIterator *children;
3898   GValue result = { 0, };
3899   GstElement *element;
3900   gboolean found;
3901   GValue viface = { 0, };
3902
3903   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
3904   g_return_val_if_fail (G_TYPE_IS_INTERFACE (iface), NULL);
3905
3906   g_value_init (&viface, G_TYPE_POINTER);
3907   g_value_set_pointer (&viface, (gpointer) iface);
3908
3909   children = gst_bin_iterate_recurse (bin);
3910   found = gst_iterator_find_custom (children, (GCompareFunc) compare_interface,
3911       &result, &viface);
3912   gst_iterator_free (children);
3913
3914   if (found) {
3915     element = g_value_dup_object (&result);
3916     g_value_unset (&result);
3917   } else {
3918     element = NULL;
3919   }
3920   g_value_unset (&viface);
3921
3922   return element;
3923 }
3924
3925 /**
3926  * gst_bin_iterate_all_by_interface:
3927  * @bin: a #GstBin
3928  * @iface: the #GType of an interface
3929  *
3930  * Looks for all elements inside the bin that implements the given
3931  * interface. You can safely cast all returned elements to the given interface.
3932  * The function recurses inside child bins. The iterator will yield a series
3933  * of #GstElement that should be unreffed after use.
3934  *
3935  * Each element yielded by the iterator will have its refcount increased, so
3936  * unref after use.
3937  *
3938  * MT safe.  Caller owns returned value.
3939  *
3940  * Returns: (transfer full): a #GstIterator of #GstElement for all elements
3941  *          in the bin implementing the given interface, or NULL
3942  */
3943 GstIterator *
3944 gst_bin_iterate_all_by_interface (GstBin * bin, GType iface)
3945 {
3946   GstIterator *children;
3947   GstIterator *result;
3948   GValue viface = { 0, };
3949
3950   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
3951   g_return_val_if_fail (G_TYPE_IS_INTERFACE (iface), NULL);
3952
3953   g_value_init (&viface, G_TYPE_POINTER);
3954   g_value_set_pointer (&viface, (gpointer) iface);
3955
3956   children = gst_bin_iterate_recurse (bin);
3957   result = gst_iterator_filter (children, (GCompareFunc) compare_interface,
3958       &viface);
3959
3960   g_value_unset (&viface);
3961
3962   return result;
3963 }