2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2004 Wim Taymans <wim@fluendo.com>
5 * gstelement.c: The base element, all elements derive from this
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
17 * You should have received a copy of the GNU Library General Public
18 * License along with this library; if not, write to the
19 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
20 * Boston, MA 02110-1301, USA.
25 * @short_description: Abstract base class for all pipeline elements
26 * @see_also: #GstElementFactory, #GstPad
28 * GstElement is the abstract base class needed to construct an element that
29 * can be used in a GStreamer pipeline. Please refer to the plugin writers
30 * guide for more information on creating #GstElement subclasses.
32 * The name of a #GstElement can be get with gst_element_get_name() and set with
33 * gst_element_set_name(). For speed, GST_ELEMENT_NAME() can be used in the
34 * core when using the appropriate locking. Do not use this in plug-ins or
35 * applications in order to retain ABI compatibility.
37 * Elements can have pads (of the type #GstPad). These pads link to pads on
38 * other elements. #GstBuffer flow between these linked pads.
39 * A #GstElement has a #GList of #GstPad structures for all their input (or sink)
40 * and output (or source) pads.
41 * Core and plug-in writers can add and remove pads with gst_element_add_pad()
42 * and gst_element_remove_pad().
44 * An existing pad of an element can be retrieved by name with
45 * gst_element_get_static_pad(). A new dynamic pad can be created using
46 * gst_element_request_pad() with a #GstPadTemplate or
47 * gst_element_get_request_pad() with the template name such as "src_\%u".
48 * An iterator of all pads can be retrieved with gst_element_iterate_pads().
50 * Elements can be linked through their pads.
51 * If the link is straightforward, use the gst_element_link()
52 * convenience function to link two elements, or gst_element_link_many()
53 * for more elements in a row.
54 * Use gst_element_link_filtered() to link two elements constrained by
55 * a specified set of #GstCaps.
56 * For finer control, use gst_element_link_pads() and
57 * gst_element_link_pads_filtered() to specify the pads to link on
58 * each element by name.
60 * Each element has a state (see #GstState). You can get and set the state
61 * of an element with gst_element_get_state() and gst_element_set_state().
62 * Setting a state triggers a #GstStateChange. To get a string representation
63 * of a #GstState, use gst_element_state_get_name().
65 * You can get and set a #GstClock on an element using gst_element_get_clock()
66 * and gst_element_set_clock().
67 * Some elements can provide a clock for the pipeline if
68 * the #GST_ELEMENT_FLAG_PROVIDE_CLOCK flag is set. With the
69 * gst_element_provide_clock() method one can retrieve the clock provided by
71 * Not all elements require a clock to operate correctly. If the
72 * #GST_ELEMENT_FLAG_REQUIRE_CLOCK() flag is set, a clock should be set on the
73 * element with gst_element_set_clock().
75 * Note that clock slection and distribution is normally handled by the
76 * toplevel #GstPipeline so the clock functions are only to be used in very
77 * specific situations.
79 * Last reviewed on 2012-03-28 (0.11.3)
82 #include "gst_private.h"
85 #include <gobject/gvaluecollector.h>
87 #include "gstelement.h"
88 #include "gstelementmetadata.h"
89 #include "gstenumtypes.h"
97 #include "gst-i18n-lib.h"
98 #include "glib-compat-private.h"
100 /* Element signals and args */
116 static void gst_element_class_init (GstElementClass * klass);
117 static void gst_element_init (GstElement * element);
118 static void gst_element_base_class_init (gpointer g_class);
119 static void gst_element_base_class_finalize (gpointer g_class);
121 static void gst_element_dispose (GObject * object);
122 static void gst_element_finalize (GObject * object);
124 static GstStateChangeReturn gst_element_change_state_func (GstElement * element,
125 GstStateChange transition);
126 static GstStateChangeReturn gst_element_get_state_func (GstElement * element,
127 GstState * state, GstState * pending, GstClockTime timeout);
128 static GstStateChangeReturn gst_element_set_state_func (GstElement * element,
130 static gboolean gst_element_set_clock_func (GstElement * element,
132 static void gst_element_set_bus_func (GstElement * element, GstBus * bus);
133 static gboolean gst_element_post_message_default (GstElement * element,
134 GstMessage * message);
137 static gboolean gst_element_default_send_event (GstElement * element,
139 static gboolean gst_element_default_query (GstElement * element,
142 static GstPadTemplate
143 * gst_element_class_get_request_pad_template (GstElementClass *
144 element_class, const gchar * name);
146 static GstObjectClass *parent_class = NULL;
147 static guint gst_element_signals[LAST_SIGNAL] = { 0 };
149 /* this is used in gstelementfactory.c:gst_element_register() */
150 GQuark __gst_elementclass_factory = 0;
153 gst_element_get_type (void)
155 static volatile gsize gst_element_type = 0;
157 if (g_once_init_enter (&gst_element_type)) {
159 static const GTypeInfo element_info = {
160 sizeof (GstElementClass),
161 gst_element_base_class_init,
162 gst_element_base_class_finalize,
163 (GClassInitFunc) gst_element_class_init,
168 (GInstanceInitFunc) gst_element_init,
172 _type = g_type_register_static (GST_TYPE_OBJECT, "GstElement",
173 &element_info, G_TYPE_FLAG_ABSTRACT);
175 __gst_elementclass_factory =
176 g_quark_from_static_string ("GST_ELEMENTCLASS_FACTORY");
177 g_once_init_leave (&gst_element_type, _type);
179 return gst_element_type;
183 gst_element_class_init (GstElementClass * klass)
185 GObjectClass *gobject_class;
187 gobject_class = (GObjectClass *) klass;
189 parent_class = g_type_class_peek_parent (klass);
192 * GstElement::pad-added:
193 * @gstelement: the object which received the signal
194 * @new_pad: the pad that has been added
196 * a new #GstPad has been added to the element. Note that this signal will
197 * usually be emitted from the context of the streaming thread. Also keep in
198 * mind that if you add new elements to the pipeline in the signal handler
199 * you will need to set them to the desired target state with
200 * gst_element_set_state() or gst_element_sync_state_with_parent().
202 gst_element_signals[PAD_ADDED] =
203 g_signal_new ("pad-added", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
204 G_STRUCT_OFFSET (GstElementClass, pad_added), NULL, NULL,
205 g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_PAD);
207 * GstElement::pad-removed:
208 * @gstelement: the object which received the signal
209 * @old_pad: the pad that has been removed
211 * a #GstPad has been removed from the element
213 gst_element_signals[PAD_REMOVED] =
214 g_signal_new ("pad-removed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
215 G_STRUCT_OFFSET (GstElementClass, pad_removed), NULL, NULL,
216 g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_PAD);
218 * GstElement::no-more-pads:
219 * @gstelement: the object which received the signal
221 * This signals that the element will not generate more dynamic pads.
222 * Note that this signal will usually be emitted from the context of
223 * the streaming thread.
225 gst_element_signals[NO_MORE_PADS] =
226 g_signal_new ("no-more-pads", G_TYPE_FROM_CLASS (klass),
227 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstElementClass, no_more_pads), NULL,
228 NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 0);
230 gobject_class->dispose = gst_element_dispose;
231 gobject_class->finalize = gst_element_finalize;
233 klass->change_state = GST_DEBUG_FUNCPTR (gst_element_change_state_func);
234 klass->set_state = GST_DEBUG_FUNCPTR (gst_element_set_state_func);
235 klass->get_state = GST_DEBUG_FUNCPTR (gst_element_get_state_func);
236 klass->set_clock = GST_DEBUG_FUNCPTR (gst_element_set_clock_func);
237 klass->set_bus = GST_DEBUG_FUNCPTR (gst_element_set_bus_func);
238 klass->query = GST_DEBUG_FUNCPTR (gst_element_default_query);
239 klass->send_event = GST_DEBUG_FUNCPTR (gst_element_default_send_event);
240 klass->numpadtemplates = 0;
241 klass->post_message = GST_DEBUG_FUNCPTR (gst_element_post_message_default);
243 klass->elementfactory = NULL;
247 gst_element_base_class_init (gpointer g_class)
249 GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
250 GList *node, *padtemplates;
252 /* Copy the element details here so elements can inherit the
253 * details from their base class and classes only need to set
254 * the details in class_init instead of base_init */
255 element_class->metadata =
256 element_class->metadata ? gst_structure_copy (element_class->metadata) :
257 gst_structure_new_empty ("metadata");
259 /* Copy the pad templates so elements inherit them
260 * from their base class but elements can add pad templates in class_init
261 * instead of base_init.
263 padtemplates = g_list_copy (element_class->padtemplates);
264 for (node = padtemplates; node != NULL; node = node->next) {
265 GstPadTemplate *tmpl = (GstPadTemplate *) node->data;
266 gst_object_ref (tmpl);
268 element_class->padtemplates = padtemplates;
270 /* set the factory, see gst_element_register() */
271 element_class->elementfactory =
272 g_type_get_qdata (G_TYPE_FROM_CLASS (element_class),
273 __gst_elementclass_factory);
274 GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "type %s : factory %p",
275 G_OBJECT_CLASS_NAME (element_class), element_class->elementfactory);
279 gst_element_base_class_finalize (gpointer g_class)
281 GstElementClass *klass = GST_ELEMENT_CLASS (g_class);
283 g_list_foreach (klass->padtemplates, (GFunc) gst_object_unref, NULL);
284 g_list_free (klass->padtemplates);
286 gst_structure_free (klass->metadata);
290 gst_element_init (GstElement * element)
292 GST_STATE (element) = GST_STATE_NULL;
293 GST_STATE_TARGET (element) = GST_STATE_NULL;
294 GST_STATE_NEXT (element) = GST_STATE_VOID_PENDING;
295 GST_STATE_PENDING (element) = GST_STATE_VOID_PENDING;
296 GST_STATE_RETURN (element) = GST_STATE_CHANGE_SUCCESS;
298 g_rec_mutex_init (&element->state_lock);
299 g_cond_init (&element->state_cond);
303 * gst_element_release_request_pad:
304 * @element: a #GstElement to release the request pad of.
305 * @pad: the #GstPad to release.
307 * Makes the element free the previously requested pad as obtained
308 * with gst_element_get_request_pad().
310 * This does not unref the pad. If the pad was created by using
311 * gst_element_get_request_pad(), gst_element_release_request_pad() needs to be
312 * followed by gst_object_unref() to free the @pad.
317 gst_element_release_request_pad (GstElement * element, GstPad * pad)
319 GstElementClass *oclass;
321 g_return_if_fail (GST_IS_ELEMENT (element));
322 g_return_if_fail (GST_IS_PAD (pad));
323 g_return_if_fail (GST_PAD_PAD_TEMPLATE (pad) == NULL ||
324 GST_PAD_TEMPLATE_PRESENCE (GST_PAD_PAD_TEMPLATE (pad)) ==
327 oclass = GST_ELEMENT_GET_CLASS (element);
329 /* if the element implements a custom release function we call that, else we
330 * simply remove the pad from the element */
331 if (oclass->release_pad)
332 oclass->release_pad (element, pad);
334 gst_element_remove_pad (element, pad);
338 * gst_element_provide_clock:
339 * @element: a #GstElement to query
341 * Get the clock provided by the given element.
342 * <note>An element is only required to provide a clock in the PAUSED
343 * state. Some elements can provide a clock in other states.</note>
345 * Returns: (transfer full): the GstClock provided by the element or %NULL
346 * if no clock could be provided. Unref after usage.
351 gst_element_provide_clock (GstElement * element)
353 GstClock *result = NULL;
354 GstElementClass *oclass;
356 g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
358 oclass = GST_ELEMENT_GET_CLASS (element);
360 if (oclass->provide_clock)
361 result = oclass->provide_clock (element);
367 gst_element_set_clock_func (GstElement * element, GstClock * clock)
371 GST_OBJECT_LOCK (element);
372 clock_p = &element->clock;
373 gst_object_replace ((GstObject **) clock_p, (GstObject *) clock);
374 GST_OBJECT_UNLOCK (element);
380 * gst_element_set_clock:
381 * @element: a #GstElement to set the clock for.
382 * @clock: the #GstClock to set for the element.
384 * Sets the clock for the element. This function increases the
385 * refcount on the clock. Any previously set clock on the object
388 * Returns: %TRUE if the element accepted the clock. An element can refuse a
389 * clock when it, for example, is not able to slave its internal clock to the
390 * @clock or when it requires a specific clock to operate.
395 gst_element_set_clock (GstElement * element, GstClock * clock)
397 GstElementClass *oclass;
398 gboolean res = FALSE;
400 g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
401 g_return_val_if_fail (clock == NULL || GST_IS_CLOCK (clock), FALSE);
403 oclass = GST_ELEMENT_GET_CLASS (element);
405 GST_CAT_DEBUG_OBJECT (GST_CAT_CLOCK, element, "setting clock %p", clock);
407 if (oclass->set_clock)
408 res = oclass->set_clock (element, clock);
414 * gst_element_get_clock:
415 * @element: a #GstElement to get the clock of.
417 * Gets the currently configured clock of the element. This is the clock as was
418 * last set with gst_element_set_clock().
420 * Returns: (transfer full): the #GstClock of the element. unref after usage.
425 gst_element_get_clock (GstElement * element)
429 g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
431 GST_OBJECT_LOCK (element);
432 if ((result = element->clock))
433 gst_object_ref (result);
434 GST_OBJECT_UNLOCK (element);
440 * gst_element_set_base_time:
441 * @element: a #GstElement.
442 * @time: the base time to set.
444 * Set the base time of an element. See gst_element_get_base_time().
449 gst_element_set_base_time (GstElement * element, GstClockTime time)
453 g_return_if_fail (GST_IS_ELEMENT (element));
455 GST_OBJECT_LOCK (element);
456 old = element->base_time;
457 element->base_time = time;
458 GST_OBJECT_UNLOCK (element);
460 GST_CAT_DEBUG_OBJECT (GST_CAT_CLOCK, element,
461 "set base_time=%" GST_TIME_FORMAT ", old %" GST_TIME_FORMAT,
462 GST_TIME_ARGS (time), GST_TIME_ARGS (old));
466 * gst_element_get_base_time:
467 * @element: a #GstElement.
469 * Returns the base time of the element. The base time is the
470 * absolute time of the clock when this element was last put to
471 * PLAYING. Subtracting the base time from the clock time gives
472 * the running time of the element.
474 * Returns: the base time of the element.
479 gst_element_get_base_time (GstElement * element)
483 g_return_val_if_fail (GST_IS_ELEMENT (element), GST_CLOCK_TIME_NONE);
485 GST_OBJECT_LOCK (element);
486 result = element->base_time;
487 GST_OBJECT_UNLOCK (element);
493 * gst_element_set_start_time:
494 * @element: a #GstElement.
495 * @time: the base time to set.
497 * Set the start time of an element. The start time of the element is the
498 * running time of the element when it last went to the PAUSED state. In READY
499 * or after a flushing seek, it is set to 0.
501 * Toplevel elements like #GstPipeline will manage the start_time and
502 * base_time on its children. Setting the start_time to #GST_CLOCK_TIME_NONE
503 * on such a toplevel element will disable the distribution of the base_time to
504 * the children and can be useful if the application manages the base_time
505 * itself, for example if you want to synchronize capture from multiple
506 * pipelines, and you can also ensure that the pipelines have the same clock.
511 gst_element_set_start_time (GstElement * element, GstClockTime time)
515 g_return_if_fail (GST_IS_ELEMENT (element));
517 GST_OBJECT_LOCK (element);
518 old = GST_ELEMENT_START_TIME (element);
519 GST_ELEMENT_START_TIME (element) = time;
520 GST_OBJECT_UNLOCK (element);
522 GST_CAT_DEBUG_OBJECT (GST_CAT_CLOCK, element,
523 "set start_time=%" GST_TIME_FORMAT ", old %" GST_TIME_FORMAT,
524 GST_TIME_ARGS (time), GST_TIME_ARGS (old));
528 * gst_element_get_start_time:
529 * @element: a #GstElement.
531 * Returns the start time of the element. The start time is the
532 * running time of the clock when this element was last put to PAUSED.
534 * Usually the start_time is managed by a toplevel element such as
539 * Returns: the start time of the element.
542 gst_element_get_start_time (GstElement * element)
546 g_return_val_if_fail (GST_IS_ELEMENT (element), GST_CLOCK_TIME_NONE);
548 GST_OBJECT_LOCK (element);
549 result = GST_ELEMENT_START_TIME (element);
550 GST_OBJECT_UNLOCK (element);
557 * gst_element_set_index:
558 * @element: a #GstElement.
559 * @index: (transfer none): a #GstIndex.
561 * Set @index on the element. The refcount of the index
562 * will be increased, any previously set index is unreffed.
567 gst_element_set_index (GstElement * element, GstIndex * index)
569 GstElementClass *oclass;
571 g_return_if_fail (GST_IS_ELEMENT (element));
572 g_return_if_fail (index == NULL || GST_IS_INDEX (index));
574 oclass = GST_ELEMENT_GET_CLASS (element);
576 if (oclass->set_index)
577 oclass->set_index (element, index);
581 * gst_element_get_index:
582 * @element: a #GstElement.
584 * Gets the index from the element.
586 * Returns: (transfer full): a #GstIndex or %NULL when no index was set on the
587 * element. unref after usage.
592 gst_element_get_index (GstElement * element)
594 GstElementClass *oclass;
595 GstIndex *result = NULL;
597 g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
599 oclass = GST_ELEMENT_GET_CLASS (element);
601 if (oclass->get_index)
602 result = oclass->get_index (element);
609 * gst_element_add_pad:
610 * @element: a #GstElement to add the pad to.
611 * @pad: (transfer full): the #GstPad to add to the element.
613 * Adds a pad (link point) to @element. @pad's parent will be set to @element;
614 * see gst_object_set_parent() for refcounting information.
616 * Pads are not automatically activated so elements should perform the needed
617 * steps to activate the pad in case this pad is added in the PAUSED or PLAYING
618 * state. See gst_pad_set_active() for more information about activating pads.
620 * The pad and the element should be unlocked when calling this function.
622 * This function will emit the #GstElement::pad-added signal on the element.
624 * Returns: %TRUE if the pad could be added. This function can fail when
625 * a pad with the same name already existed or the pad already had another
631 gst_element_add_pad (GstElement * element, GstPad * pad)
636 g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
637 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
639 /* locking pad to look at the name */
640 GST_OBJECT_LOCK (pad);
641 pad_name = g_strdup (GST_PAD_NAME (pad));
642 GST_CAT_INFO_OBJECT (GST_CAT_ELEMENT_PADS, element, "adding pad '%s'",
643 GST_STR_NULL (pad_name));
644 flushing = GST_PAD_IS_FLUSHING (pad);
645 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_NEED_PARENT);
646 GST_OBJECT_UNLOCK (pad);
648 /* then check to see if there's already a pad by that name here */
649 GST_OBJECT_LOCK (element);
650 if (G_UNLIKELY (!gst_object_check_uniqueness (element->pads, pad_name)))
653 /* try to set the pad's parent */
654 if (G_UNLIKELY (!gst_object_set_parent (GST_OBJECT_CAST (pad),
655 GST_OBJECT_CAST (element))))
658 /* check for flushing pads */
659 if (flushing && (GST_STATE (element) > GST_STATE_READY ||
660 GST_STATE_NEXT (element) == GST_STATE_PAUSED)) {
661 g_warning ("adding flushing pad '%s' to running element '%s', you need to "
662 "use gst_pad_set_active(pad,TRUE) before adding it.",
663 GST_STR_NULL (pad_name), GST_ELEMENT_NAME (element));
665 GST_OBJECT_LOCK (pad);
666 GST_PAD_UNSET_FLUSHING (pad);
667 GST_OBJECT_UNLOCK (pad);
672 /* add it to the list */
673 switch (gst_pad_get_direction (pad)) {
675 element->srcpads = g_list_append (element->srcpads, pad);
676 element->numsrcpads++;
679 element->sinkpads = g_list_append (element->sinkpads, pad);
680 element->numsinkpads++;
685 element->pads = g_list_append (element->pads, pad);
687 element->pads_cookie++;
688 GST_OBJECT_UNLOCK (element);
690 /* emit the PAD_ADDED signal */
691 g_signal_emit (element, gst_element_signals[PAD_ADDED], 0, pad);
698 g_critical ("Padname %s is not unique in element %s, not adding",
699 pad_name, GST_ELEMENT_NAME (element));
700 GST_OBJECT_UNLOCK (element);
707 ("Pad %s already has parent when trying to add to element %s",
708 pad_name, GST_ELEMENT_NAME (element));
709 GST_OBJECT_UNLOCK (element);
715 GST_OBJECT_LOCK (pad);
717 ("Trying to add pad %s to element %s, but it has no direction",
718 GST_OBJECT_NAME (pad), GST_ELEMENT_NAME (element));
719 GST_OBJECT_UNLOCK (pad);
720 GST_OBJECT_UNLOCK (element);
726 * gst_element_remove_pad:
727 * @element: a #GstElement to remove pad from.
728 * @pad: (transfer full): the #GstPad to remove from the element.
730 * Removes @pad from @element. @pad will be destroyed if it has not been
731 * referenced elsewhere using gst_object_unparent().
733 * This function is used by plugin developers and should not be used
734 * by applications. Pads that were dynamically requested from elements
735 * with gst_element_get_request_pad() should be released with the
736 * gst_element_release_request_pad() function instead.
738 * Pads are not automatically deactivated so elements should perform the needed
739 * steps to deactivate the pad in case this pad is removed in the PAUSED or
740 * PLAYING state. See gst_pad_set_active() for more information about
743 * The pad and the element should be unlocked when calling this function.
745 * This function will emit the #GstElement::pad-removed signal on the element.
747 * Returns: %TRUE if the pad could be removed. Can return %FALSE if the
748 * pad does not belong to the provided element.
753 gst_element_remove_pad (GstElement * element, GstPad * pad)
757 g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
758 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
760 /* locking pad to look at the name and parent */
761 GST_OBJECT_LOCK (pad);
762 GST_CAT_INFO_OBJECT (GST_CAT_ELEMENT_PADS, element, "removing pad '%s'",
763 GST_STR_NULL (GST_PAD_NAME (pad)));
765 if (G_UNLIKELY (GST_PAD_PARENT (pad) != element))
767 GST_OBJECT_UNLOCK (pad);
770 if ((peer = gst_pad_get_peer (pad))) {
771 /* window for MT unsafeness, someone else could unlink here
772 * and then we call unlink with wrong pads. The unlink
773 * function would catch this and safely return failed. */
774 if (GST_PAD_IS_SRC (pad))
775 gst_pad_unlink (pad, peer);
777 gst_pad_unlink (peer, pad);
779 gst_object_unref (peer);
782 GST_OBJECT_LOCK (element);
783 /* remove it from the list */
784 switch (gst_pad_get_direction (pad)) {
786 element->srcpads = g_list_remove (element->srcpads, pad);
787 element->numsrcpads--;
790 element->sinkpads = g_list_remove (element->sinkpads, pad);
791 element->numsinkpads--;
794 g_critical ("Removing pad without direction???");
797 element->pads = g_list_remove (element->pads, pad);
799 element->pads_cookie++;
800 GST_OBJECT_UNLOCK (element);
802 /* emit the PAD_REMOVED signal before unparenting and losing the last ref. */
803 g_signal_emit (element, gst_element_signals[PAD_REMOVED], 0, pad);
805 gst_object_unparent (GST_OBJECT_CAST (pad));
812 /* locking order is element > pad */
813 GST_OBJECT_UNLOCK (pad);
815 GST_OBJECT_LOCK (element);
816 GST_OBJECT_LOCK (pad);
817 g_critical ("Padname %s:%s does not belong to element %s when removing",
818 GST_DEBUG_PAD_NAME (pad), GST_ELEMENT_NAME (element));
819 GST_OBJECT_UNLOCK (pad);
820 GST_OBJECT_UNLOCK (element);
826 * gst_element_no_more_pads:
827 * @element: a #GstElement
829 * Use this function to signal that the element does not expect any more pads
830 * to show up in the current pipeline. This function should be called whenever
831 * pads have been added by the element itself. Elements with #GST_PAD_SOMETIMES
832 * pad templates use this in combination with autopluggers to figure out that
833 * the element is done initializing its pads.
835 * This function emits the #GstElement::no-more-pads signal.
840 gst_element_no_more_pads (GstElement * element)
842 g_return_if_fail (GST_IS_ELEMENT (element));
844 g_signal_emit (element, gst_element_signals[NO_MORE_PADS], 0);
848 pad_compare_name (GstPad * pad1, const gchar * name)
852 GST_OBJECT_LOCK (pad1);
853 result = strcmp (GST_PAD_NAME (pad1), name);
854 GST_OBJECT_UNLOCK (pad1);
860 * gst_element_get_static_pad:
861 * @element: a #GstElement to find a static pad of.
862 * @name: the name of the static #GstPad to retrieve.
864 * Retrieves a pad from @element by name. This version only retrieves
865 * already-existing (i.e. 'static') pads.
867 * Returns: (transfer full): the requested #GstPad if found, otherwise %NULL.
873 gst_element_get_static_pad (GstElement * element, const gchar * name)
876 GstPad *result = NULL;
878 g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
879 g_return_val_if_fail (name != NULL, NULL);
881 GST_OBJECT_LOCK (element);
883 g_list_find_custom (element->pads, name, (GCompareFunc) pad_compare_name);
885 result = GST_PAD_CAST (find->data);
886 gst_object_ref (result);
889 if (result == NULL) {
890 GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "no such pad '%s' in element \"%s\"",
891 name, GST_ELEMENT_NAME (element));
893 GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "found pad %s:%s",
894 GST_ELEMENT_NAME (element), name);
896 GST_OBJECT_UNLOCK (element);
902 _gst_element_request_pad (GstElement * element, GstPadTemplate * templ,
903 const gchar * name, const GstCaps * caps)
905 GstPad *newpad = NULL;
906 GstElementClass *oclass;
908 oclass = GST_ELEMENT_GET_CLASS (element);
910 #ifndef G_DISABLE_CHECKS
911 /* Some sanity checking here */
915 /* Is this the template name? */
916 if (strstr (name, "%") || !strchr (templ->name_template, '%')) {
917 g_return_val_if_fail (strcmp (name, templ->name_template) == 0, NULL);
919 const gchar *str, *data;
922 /* Otherwise check if it's a valid name for the name template */
923 str = strchr (templ->name_template, '%');
924 g_return_val_if_fail (str != NULL, NULL);
925 g_return_val_if_fail (strncmp (templ->name_template, name,
926 str - templ->name_template) == 0, NULL);
927 g_return_val_if_fail (strlen (name) > str - templ->name_template, NULL);
929 data = name + (str - templ->name_template);
931 /* Can either be %s or %d or %u, do sanity checking for %d */
932 if (*(str + 1) == 'd') {
936 tmp = g_ascii_strtoll (data, &endptr, 10);
937 g_return_val_if_fail (tmp >= G_MININT && tmp <= G_MAXINT
938 && *endptr == '\0', NULL);
939 } else if (*(str + 1) == 'u') {
943 tmp = g_ascii_strtoull (data, &endptr, 10);
944 g_return_val_if_fail (tmp <= G_MAXUINT && *endptr == '\0', NULL);
948 pad = gst_element_get_static_pad (element, name);
950 gst_object_unref (pad);
951 /* FIXME 0.11: Change this to g_return_val_if_fail() */
952 g_critical ("Element %s already has a pad named %s, the behaviour of "
953 " gst_element_get_request_pad() for existing pads is undefined!",
954 GST_ELEMENT_NAME (element), name);
959 if (oclass->request_new_pad)
960 newpad = (oclass->request_new_pad) (element, templ, name, caps);
963 gst_object_ref (newpad);
969 * gst_element_get_request_pad:
970 * @element: a #GstElement to find a request pad of.
971 * @name: the name of the request #GstPad to retrieve.
973 * Retrieves a pad from the element by name (e.g. "src_\%d"). This version only
974 * retrieves request pads. The pad should be released with
975 * gst_element_release_request_pad().
977 * This method is slow and will be deprecated in the future. New code should
978 * use gst_element_request_pad() with the requested template.
980 * Returns: (transfer full): requested #GstPad if found, otherwise %NULL.
981 * Release after usage.
984 gst_element_get_request_pad (GstElement * element, const gchar * name)
986 GstPadTemplate *templ = NULL;
988 const gchar *req_name = NULL;
989 gboolean templ_found = FALSE;
992 gchar *str, *endptr = NULL;
993 GstElementClass *class;
995 g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
996 g_return_val_if_fail (name != NULL, NULL);
998 class = GST_ELEMENT_GET_CLASS (element);
1000 /* if the name contains a %, we assume it's the complete template name. Get
1001 * the template and try to get a pad */
1002 if (strstr (name, "%")) {
1003 templ = gst_element_class_get_request_pad_template (class, name);
1008 /* there is no % in the name, try to find a matching template */
1009 list = class->padtemplates;
1010 while (!templ_found && list) {
1011 templ = (GstPadTemplate *) list->data;
1012 if (templ->presence == GST_PAD_REQUEST) {
1013 GST_CAT_DEBUG (GST_CAT_PADS, "comparing %s to %s", name,
1014 templ->name_template);
1015 /* see if we find an exact match */
1016 if (strcmp (name, templ->name_template) == 0) {
1021 /* Because of sanity checks in gst_pad_template_new(), we know that %s
1022 and %d and %u, occurring at the end of the name_template, are the only
1024 else if ((str = strchr (templ->name_template, '%'))
1025 && strncmp (templ->name_template, name,
1026 str - templ->name_template) == 0
1027 && strlen (name) > str - templ->name_template) {
1028 data = name + (str - templ->name_template);
1029 if (*(str + 1) == 'd') {
1033 tmp = strtol (data, &endptr, 10);
1034 if (tmp != G_MINLONG && tmp != G_MAXLONG && endptr &&
1040 } else if (*(str + 1) == 'u') {
1044 tmp = strtoul (data, &endptr, 10);
1045 if (tmp != G_MAXULONG && endptr && *endptr == '\0') {
1065 pad = _gst_element_request_pad (element, templ, req_name, NULL);
1071 * gst_element_request_pad:
1072 * @element: a #GstElement to find a request pad of.
1073 * @templ: a #GstPadTemplate of which we want a pad of.
1074 * @name: (transfer none) (allow-none): the name of the request #GstPad
1075 * to retrieve. Can be %NULL.
1076 * @caps: (transfer none) (allow-none): the caps of the pad we want to
1077 * request. Can be %NULL.
1079 * Retrieves a request pad from the element according to the provided template.
1080 * Pad templates can be looked up using
1081 * gst_element_factory_get_static_pad_templates().
1083 * The pad should be released with gst_element_release_request_pad().
1085 * Returns: (transfer full): requested #GstPad if found, otherwise %NULL.
1086 * Release after usage.
1089 gst_element_request_pad (GstElement * element,
1090 GstPadTemplate * templ, const gchar * name, const GstCaps * caps)
1092 g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
1093 g_return_val_if_fail (templ != NULL, NULL);
1094 g_return_val_if_fail (templ->presence == GST_PAD_REQUEST, NULL);
1096 return _gst_element_request_pad (element, templ, name, caps);
1099 static GstIterator *
1100 gst_element_iterate_pad_list (GstElement * element, GList ** padlist)
1102 GstIterator *result;
1104 GST_OBJECT_LOCK (element);
1105 result = gst_iterator_new_list (GST_TYPE_PAD,
1106 GST_OBJECT_GET_LOCK (element),
1107 &element->pads_cookie, padlist, (GObject *) element, NULL);
1108 GST_OBJECT_UNLOCK (element);
1114 * gst_element_iterate_pads:
1115 * @element: a #GstElement to iterate pads of.
1117 * Retrieves an iterator of @element's pads. The iterator should
1118 * be freed after usage. Also more specialized iterators exists such as
1119 * gst_element_iterate_src_pads() or gst_element_iterate_sink_pads().
1121 * The order of pads returned by the iterator will be the order in which
1122 * the pads were added to the element.
1124 * Returns: (transfer full): the #GstIterator of #GstPad.
1129 gst_element_iterate_pads (GstElement * element)
1131 g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
1133 return gst_element_iterate_pad_list (element, &element->pads);
1137 * gst_element_iterate_src_pads:
1138 * @element: a #GstElement.
1140 * Retrieves an iterator of @element's source pads.
1142 * The order of pads returned by the iterator will be the order in which
1143 * the pads were added to the element.
1145 * Returns: (transfer full): the #GstIterator of #GstPad.
1150 gst_element_iterate_src_pads (GstElement * element)
1152 g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
1154 return gst_element_iterate_pad_list (element, &element->srcpads);
1158 * gst_element_iterate_sink_pads:
1159 * @element: a #GstElement.
1161 * Retrieves an iterator of @element's sink pads.
1163 * The order of pads returned by the iterator will be the order in which
1164 * the pads were added to the element.
1166 * Returns: (transfer full): the #GstIterator of #GstPad.
1171 gst_element_iterate_sink_pads (GstElement * element)
1173 g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
1175 return gst_element_iterate_pad_list (element, &element->sinkpads);
1179 * gst_element_class_add_pad_template:
1180 * @klass: the #GstElementClass to add the pad template to.
1181 * @templ: (transfer full): a #GstPadTemplate to add to the element class.
1183 * Adds a padtemplate to an element class. This is mainly used in the _class_init
1184 * functions of classes. If a pad template with the same name as an already
1185 * existing one is added the old one is replaced by the new one.
1189 gst_element_class_add_pad_template (GstElementClass * klass,
1190 GstPadTemplate * templ)
1192 GList *template_list = klass->padtemplates;
1194 g_return_if_fail (GST_IS_ELEMENT_CLASS (klass));
1195 g_return_if_fail (GST_IS_PAD_TEMPLATE (templ));
1197 /* If we already have a pad template with the same name replace the
1199 while (template_list) {
1200 GstPadTemplate *padtempl = (GstPadTemplate *) template_list->data;
1202 /* Found pad with the same name, replace and return */
1203 if (strcmp (templ->name_template, padtempl->name_template) == 0) {
1204 gst_object_unref (padtempl);
1205 template_list->data = templ;
1208 template_list = g_list_next (template_list);
1211 /* Take ownership of the floating ref */
1212 gst_object_ref_sink (templ);
1214 klass->padtemplates = g_list_append (klass->padtemplates, templ);
1215 klass->numpadtemplates++;
1219 * gst_element_class_add_metadata:
1220 * @klass: class to set metadata for
1221 * @key: the key to set
1222 * @value: the value to set
1224 * Set @key with @value as metadata in @klass.
1227 gst_element_class_add_metadata (GstElementClass * klass,
1228 const gchar * key, const gchar * value)
1230 g_return_if_fail (GST_IS_ELEMENT_CLASS (klass));
1231 g_return_if_fail (key != NULL);
1232 g_return_if_fail (value != NULL);
1234 gst_structure_set ((GstStructure *) klass->metadata,
1235 key, G_TYPE_STRING, value, NULL);
1239 * gst_element_class_add_static_metadata:
1240 * @klass: class to set metadata for
1241 * @key: the key to set
1242 * @value: the value to set
1244 * Set @key with @value as metadata in @klass.
1246 * Same as gst_element_class_add_metadata(), but @value must be a static string
1247 * or an inlined string, as it will not be copied. (GStreamer plugins will
1248 * be made resident once loaded, so this function can be used even from
1249 * dynamically loaded plugins.)
1252 gst_element_class_add_static_metadata (GstElementClass * klass,
1253 const gchar * key, const gchar * value)
1255 GValue val = G_VALUE_INIT;
1257 g_return_if_fail (GST_IS_ELEMENT_CLASS (klass));
1258 g_return_if_fail (key != NULL);
1259 g_return_if_fail (value != NULL);
1261 g_value_init (&val, G_TYPE_STRING);
1262 g_value_set_static_string (&val, value);
1263 gst_structure_take_value ((GstStructure *) klass->metadata, key, &val);
1267 * gst_element_class_set_metadata:
1268 * @klass: class to set metadata for
1269 * @longname: The long English name of the element. E.g. "File Sink"
1270 * @classification: String describing the type of element, as an unordered list
1271 * separated with slashes ('/'). See draft-klass.txt of the design docs
1272 * for more details and common types. E.g: "Sink/File"
1273 * @description: Sentence describing the purpose of the element.
1274 * E.g: "Write stream to a file"
1275 * @author: Name and contact details of the author(s). Use \n to separate
1276 * multiple author metadata. E.g: "Joe Bloggs <joe.blogs at foo.com>"
1278 * Sets the detailed information for a #GstElementClass.
1279 * <note>This function is for use in _class_init functions only.</note>
1282 gst_element_class_set_metadata (GstElementClass * klass,
1283 const gchar * longname, const gchar * classification,
1284 const gchar * description, const gchar * author)
1286 g_return_if_fail (GST_IS_ELEMENT_CLASS (klass));
1287 g_return_if_fail (longname != NULL && *longname != '\0');
1288 g_return_if_fail (classification != NULL && *classification != '\0');
1289 g_return_if_fail (description != NULL && *description != '\0');
1290 g_return_if_fail (author != NULL && *author != '\0');
1292 gst_structure_id_set ((GstStructure *) klass->metadata,
1293 GST_QUARK (ELEMENT_METADATA_LONGNAME), G_TYPE_STRING, longname,
1294 GST_QUARK (ELEMENT_METADATA_KLASS), G_TYPE_STRING, classification,
1295 GST_QUARK (ELEMENT_METADATA_DESCRIPTION), G_TYPE_STRING, description,
1296 GST_QUARK (ELEMENT_METADATA_AUTHOR), G_TYPE_STRING, author, NULL);
1300 * gst_element_class_set_static_metadata:
1301 * @klass: class to set metadata for
1302 * @longname: The long English name of the element. E.g. "File Sink"
1303 * @classification: String describing the type of element, as an unordered list
1304 * separated with slashes ('/'). See draft-klass.txt of the design docs
1305 * for more details and common types. E.g: "Sink/File"
1306 * @description: Sentence describing the purpose of the element.
1307 * E.g: "Write stream to a file"
1308 * @author: Name and contact details of the author(s). Use \n to separate
1309 * multiple author metadata. E.g: "Joe Bloggs <joe.blogs at foo.com>"
1311 * Sets the detailed information for a #GstElementClass.
1312 * <note>This function is for use in _class_init functions only.</note>
1314 * Same as gst_element_class_set_metadata(), but @longname, @classification,
1315 * @description, and @author must be static strings or inlined strings, as
1316 * they will not be copied. (GStreamer plugins will be made resident once
1317 * loaded, so this function can be used even from dynamically loaded plugins.)
1320 gst_element_class_set_static_metadata (GstElementClass * klass,
1321 const gchar * longname, const gchar * classification,
1322 const gchar * description, const gchar * author)
1324 GstStructure *s = (GstStructure *) klass->metadata;
1325 GValue val = G_VALUE_INIT;
1327 g_return_if_fail (GST_IS_ELEMENT_CLASS (klass));
1328 g_return_if_fail (longname != NULL && *longname != '\0');
1329 g_return_if_fail (classification != NULL && *classification != '\0');
1330 g_return_if_fail (description != NULL && *description != '\0');
1331 g_return_if_fail (author != NULL && *author != '\0');
1333 g_value_init (&val, G_TYPE_STRING);
1335 g_value_set_static_string (&val, longname);
1336 gst_structure_id_set_value (s, GST_QUARK (ELEMENT_METADATA_LONGNAME), &val);
1338 g_value_set_static_string (&val, classification);
1339 gst_structure_id_set_value (s, GST_QUARK (ELEMENT_METADATA_KLASS), &val);
1341 g_value_set_static_string (&val, description);
1342 gst_structure_id_set_value (s, GST_QUARK (ELEMENT_METADATA_DESCRIPTION),
1345 g_value_set_static_string (&val, author);
1346 gst_structure_id_take_value (s, GST_QUARK (ELEMENT_METADATA_AUTHOR), &val);
1350 * gst_element_class_get_metadata:
1351 * @klass: class to get metadata for
1352 * @key: the key to get
1354 * Get metadata with @key in @klass.
1356 * Returns: the metadata for @key.
1359 gst_element_class_get_metadata (GstElementClass * klass, const gchar * key)
1361 g_return_val_if_fail (GST_IS_ELEMENT_CLASS (klass), NULL);
1362 g_return_val_if_fail (key != NULL, NULL);
1364 return gst_structure_get_string ((GstStructure *) klass->metadata, key);
1368 * gst_element_class_get_pad_template_list:
1369 * @element_class: a #GstElementClass to get pad templates of.
1371 * Retrieves a list of the pad templates associated with @element_class. The
1372 * list must not be modified by the calling code.
1373 * <note>If you use this function in the #GInstanceInitFunc of an object class
1374 * that has subclasses, make sure to pass the g_class parameter of the
1375 * #GInstanceInitFunc here.</note>
1377 * Returns: (transfer none) (element-type Gst.PadTemplate): the #GList of
1381 gst_element_class_get_pad_template_list (GstElementClass * element_class)
1383 g_return_val_if_fail (GST_IS_ELEMENT_CLASS (element_class), NULL);
1385 return element_class->padtemplates;
1389 * gst_element_class_get_pad_template:
1390 * @element_class: a #GstElementClass to get the pad template of.
1391 * @name: the name of the #GstPadTemplate to get.
1393 * Retrieves a padtemplate from @element_class with the given name.
1394 * <note>If you use this function in the #GInstanceInitFunc of an object class
1395 * that has subclasses, make sure to pass the g_class parameter of the
1396 * #GInstanceInitFunc here.</note>
1398 * Returns: (transfer none): the #GstPadTemplate with the given name, or %NULL
1399 * if none was found. No unreferencing is necessary.
1402 gst_element_class_get_pad_template (GstElementClass *
1403 element_class, const gchar * name)
1407 g_return_val_if_fail (GST_IS_ELEMENT_CLASS (element_class), NULL);
1408 g_return_val_if_fail (name != NULL, NULL);
1410 padlist = element_class->padtemplates;
1413 GstPadTemplate *padtempl = (GstPadTemplate *) padlist->data;
1415 if (strcmp (padtempl->name_template, name) == 0)
1418 padlist = g_list_next (padlist);
1424 static GstPadTemplate *
1425 gst_element_class_get_request_pad_template (GstElementClass *
1426 element_class, const gchar * name)
1428 GstPadTemplate *tmpl;
1430 tmpl = gst_element_class_get_pad_template (element_class, name);
1431 if (tmpl != NULL && tmpl->presence == GST_PAD_REQUEST)
1437 /* get a random pad on element of the given direction.
1438 * The pad is random in a sense that it is the first pad that is (optionaly) linked.
1441 gst_element_get_random_pad (GstElement * element,
1442 gboolean need_linked, GstPadDirection dir)
1444 GstPad *result = NULL;
1447 GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "getting a random pad");
1451 GST_OBJECT_LOCK (element);
1452 pads = element->srcpads;
1455 GST_OBJECT_LOCK (element);
1456 pads = element->sinkpads;
1459 goto wrong_direction;
1461 for (; pads; pads = g_list_next (pads)) {
1462 GstPad *pad = GST_PAD_CAST (pads->data);
1464 GST_OBJECT_LOCK (pad);
1465 GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "checking pad %s:%s",
1466 GST_DEBUG_PAD_NAME (pad));
1468 if (need_linked && !GST_PAD_IS_LINKED (pad)) {
1469 /* if we require a linked pad, and it is not linked, continue the
1471 GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is not linked",
1472 GST_DEBUG_PAD_NAME (pad));
1473 GST_OBJECT_UNLOCK (pad);
1476 /* found a pad, stop search */
1477 GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "found pad %s:%s",
1478 GST_DEBUG_PAD_NAME (pad));
1479 GST_OBJECT_UNLOCK (pad);
1485 gst_object_ref (result);
1487 GST_OBJECT_UNLOCK (element);
1491 /* ERROR handling */
1494 g_warning ("unknown pad direction %d", dir);
1500 gst_element_default_send_event (GstElement * element, GstEvent * event)
1502 gboolean result = FALSE;
1505 pad = GST_EVENT_IS_DOWNSTREAM (event) ?
1506 gst_element_get_random_pad (element, TRUE, GST_PAD_SRC) :
1507 gst_element_get_random_pad (element, TRUE, GST_PAD_SINK);
1510 GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
1511 "pushing %s event to random %s pad %s:%s",
1512 GST_EVENT_TYPE_NAME (event),
1513 (GST_PAD_DIRECTION (pad) == GST_PAD_SRC ? "src" : "sink"),
1514 GST_DEBUG_PAD_NAME (pad));
1516 result = gst_pad_push_event (pad, event);
1517 gst_object_unref (pad);
1519 GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "can't send %s event on element %s",
1520 GST_EVENT_TYPE_NAME (event), GST_ELEMENT_NAME (element));
1521 gst_event_unref (event);
1527 * gst_element_send_event:
1528 * @element: a #GstElement to send the event to.
1529 * @event: (transfer full): the #GstEvent to send to the element.
1531 * Sends an event to an element. If the element doesn't implement an
1532 * event handler, the event will be pushed on a random linked sink pad for
1533 * upstream events or a random linked source pad for downstream events.
1535 * This function takes owership of the provided event so you should
1536 * gst_event_ref() it if you want to reuse the event after this call.
1540 * Returns: %TRUE if the event was handled. Events that trigger a preroll (such
1541 * as flushing seeks and steps) will emit %GST_MESSAGE_ASYNC_DONE.
1544 gst_element_send_event (GstElement * element, GstEvent * event)
1546 GstElementClass *oclass;
1547 gboolean result = FALSE;
1549 g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1550 g_return_val_if_fail (event != NULL, FALSE);
1552 oclass = GST_ELEMENT_GET_CLASS (element);
1554 GST_STATE_LOCK (element);
1555 if (oclass->send_event) {
1556 GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "send %s event on element %s",
1557 GST_EVENT_TYPE_NAME (event), GST_ELEMENT_NAME (element));
1558 result = oclass->send_event (element, event);
1560 GST_STATE_UNLOCK (element);
1567 * @element: a #GstElement to send the event to.
1568 * @rate: The new playback rate
1569 * @format: The format of the seek values
1570 * @flags: The optional seek flags.
1571 * @start_type: The type and flags for the new start position
1572 * @start: The value of the new start position
1573 * @stop_type: The type and flags for the new stop position
1574 * @stop: The value of the new stop position
1576 * Sends a seek event to an element. See gst_event_new_seek() for the details of
1577 * the parameters. The seek event is sent to the element using
1578 * gst_element_send_event().
1582 * Returns: %TRUE if the event was handled. Flushing seeks will trigger a
1583 * preroll, which will emit %GST_MESSAGE_ASYNC_DONE.
1586 gst_element_seek (GstElement * element, gdouble rate, GstFormat format,
1587 GstSeekFlags flags, GstSeekType start_type, gint64 start,
1588 GstSeekType stop_type, gint64 stop)
1593 g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1596 gst_event_new_seek (rate, format, flags, start_type, start, stop_type,
1598 result = gst_element_send_event (element, event);
1604 gst_element_default_query (GstElement * element, GstQuery * query)
1606 gboolean result = FALSE;
1609 pad = gst_element_get_random_pad (element, FALSE, GST_PAD_SRC);
1611 result = gst_pad_query (pad, query);
1613 gst_object_unref (pad);
1615 pad = gst_element_get_random_pad (element, TRUE, GST_PAD_SINK);
1617 GstPad *peer = gst_pad_get_peer (pad);
1620 result = gst_pad_query (peer, query);
1622 gst_object_unref (peer);
1624 gst_object_unref (pad);
1631 * gst_element_query:
1632 * @element: a #GstElement to perform the query on.
1633 * @query: (transfer none): the #GstQuery.
1635 * Performs a query on the given element.
1637 * For elements that don't implement a query handler, this function
1638 * forwards the query to a random srcpad or to the peer of a
1639 * random linked sinkpad of this element.
1641 * Please note that some queries might need a running pipeline to work.
1643 * Returns: TRUE if the query could be performed.
1648 gst_element_query (GstElement * element, GstQuery * query)
1650 GstElementClass *oclass;
1651 gboolean result = FALSE;
1653 g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1654 g_return_val_if_fail (query != NULL, FALSE);
1656 oclass = GST_ELEMENT_GET_CLASS (element);
1658 if (oclass->query) {
1659 GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "send query on element %s",
1660 GST_ELEMENT_NAME (element));
1661 result = oclass->query (element, query);
1667 gst_element_post_message_default (GstElement * element, GstMessage * message)
1670 gboolean result = FALSE;
1672 g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1673 g_return_val_if_fail (message != NULL, FALSE);
1675 GST_OBJECT_LOCK (element);
1678 if (G_UNLIKELY (bus == NULL))
1681 gst_object_ref (bus);
1682 GST_OBJECT_UNLOCK (element);
1684 /* we release the element lock when posting the message so that any
1685 * (synchronous) message handlers can operate on the element */
1686 result = gst_bus_post (bus, message);
1687 gst_object_unref (bus);
1694 GST_CAT_DEBUG_OBJECT (GST_CAT_MESSAGE, element,
1695 "not posting message %p: no bus", message);
1696 GST_OBJECT_UNLOCK (element);
1697 gst_message_unref (message);
1703 * gst_element_post_message:
1704 * @element: a #GstElement posting the message
1705 * @message: (transfer full): a #GstMessage to post
1707 * Post a message on the element's #GstBus. This function takes ownership of the
1708 * message; if you want to access the message after this call, you should add an
1709 * additional reference before calling.
1711 * Returns: %TRUE if the message was successfully posted. The function returns
1712 * %FALSE if the element did not have a bus.
1717 gst_element_post_message (GstElement * element, GstMessage * message)
1719 GstElementClass *klass;
1721 g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1723 klass = GST_ELEMENT_GET_CLASS (element);
1724 if (klass->post_message)
1725 return klass->post_message (element, message);
1731 * _gst_element_error_printf:
1732 * @format: the printf-like format to use, or %NULL
1734 * This function is only used internally by the gst_element_error() macro.
1736 * Returns: (transfer full): a newly allocated string, or %NULL if the format
1742 _gst_element_error_printf (const gchar * format, ...)
1752 va_start (args, format);
1753 buffer = g_strdup_vprintf (format, args);
1759 * gst_element_message_full:
1760 * @element: a #GstElement to send message from
1761 * @type: the #GstMessageType
1762 * @domain: the GStreamer GError domain this message belongs to
1763 * @code: the GError code belonging to the domain
1764 * @text: (allow-none) (transfer full): an allocated text string to be used
1765 * as a replacement for the default message connected to code,
1767 * @debug: (allow-none) (transfer full): an allocated debug message to be
1768 * used as a replacement for the default debugging information,
1770 * @file: the source code file where the error was generated
1771 * @function: the source code function where the error was generated
1772 * @line: the source code line where the error was generated
1774 * Post an error, warning or info message on the bus from inside an element.
1776 * @type must be of #GST_MESSAGE_ERROR, #GST_MESSAGE_WARNING or
1777 * #GST_MESSAGE_INFO.
1781 void gst_element_message_full
1782 (GstElement * element, GstMessageType type,
1783 GQuark domain, gint code, gchar * text,
1784 gchar * debug, const gchar * file, const gchar * function, gint line)
1786 GError *gerror = NULL;
1790 gboolean has_debug = TRUE;
1791 GstMessage *message = NULL;
1794 GST_CAT_DEBUG_OBJECT (GST_CAT_MESSAGE, element, "start");
1795 g_return_if_fail (GST_IS_ELEMENT (element));
1796 g_return_if_fail ((type == GST_MESSAGE_ERROR) ||
1797 (type == GST_MESSAGE_WARNING) || (type == GST_MESSAGE_INFO));
1799 /* check if we send the given text or the default error text */
1800 if ((text == NULL) || (text[0] == 0)) {
1801 /* text could have come from g_strdup_printf (""); */
1803 sent_text = gst_error_get_message (domain, code);
1807 /* construct a sent_debug with extra information from source */
1808 if ((debug == NULL) || (debug[0] == 0)) {
1809 /* debug could have come from g_strdup_printf (""); */
1813 name = gst_object_get_path_string (GST_OBJECT_CAST (element));
1815 sent_debug = g_strdup_printf ("%s(%d): %s (): %s:\n%s",
1816 file, line, function, name, debug);
1818 sent_debug = g_strdup_printf ("%s(%d): %s (): %s",
1819 file, line, function, name);
1823 /* create gerror and post message */
1824 GST_CAT_INFO_OBJECT (GST_CAT_ERROR_SYSTEM, element, "posting message: %s",
1826 gerror = g_error_new_literal (domain, code, sent_text);
1829 case GST_MESSAGE_ERROR:
1831 gst_message_new_error (GST_OBJECT_CAST (element), gerror, sent_debug);
1833 case GST_MESSAGE_WARNING:
1834 message = gst_message_new_warning (GST_OBJECT_CAST (element), gerror,
1837 case GST_MESSAGE_INFO:
1838 message = gst_message_new_info (GST_OBJECT_CAST (element), gerror,
1842 g_assert_not_reached ();
1845 gst_element_post_message (element, message);
1847 GST_CAT_INFO_OBJECT (GST_CAT_ERROR_SYSTEM, element, "posted %s message: %s",
1848 (type == GST_MESSAGE_ERROR ? "error" : "warning"), sent_text);
1851 g_error_free (gerror);
1852 g_free (sent_debug);
1857 * gst_element_is_locked_state:
1858 * @element: a #GstElement.
1860 * Checks if the state of an element is locked.
1861 * If the state of an element is locked, state changes of the parent don't
1862 * affect the element.
1863 * This way you can leave currently unused elements inside bins. Just lock their
1864 * state before changing the state from #GST_STATE_NULL.
1868 * Returns: TRUE, if the element's state is locked.
1871 gst_element_is_locked_state (GstElement * element)
1875 g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1877 GST_OBJECT_LOCK (element);
1878 result = GST_ELEMENT_IS_LOCKED_STATE (element);
1879 GST_OBJECT_UNLOCK (element);
1885 * gst_element_set_locked_state:
1886 * @element: a #GstElement
1887 * @locked_state: TRUE to lock the element's state
1889 * Locks the state of an element, so state changes of the parent don't affect
1890 * this element anymore.
1894 * Returns: TRUE if the state was changed, FALSE if bad parameters were given
1895 * or the elements state-locking needed no change.
1898 gst_element_set_locked_state (GstElement * element, gboolean locked_state)
1902 g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1904 GST_OBJECT_LOCK (element);
1905 old = GST_ELEMENT_IS_LOCKED_STATE (element);
1907 if (G_UNLIKELY (old == locked_state))
1911 GST_CAT_DEBUG (GST_CAT_STATES, "locking state of element %s",
1912 GST_ELEMENT_NAME (element));
1913 GST_OBJECT_FLAG_SET (element, GST_ELEMENT_FLAG_LOCKED_STATE);
1915 GST_CAT_DEBUG (GST_CAT_STATES, "unlocking state of element %s",
1916 GST_ELEMENT_NAME (element));
1917 GST_OBJECT_FLAG_UNSET (element, GST_ELEMENT_FLAG_LOCKED_STATE);
1919 GST_OBJECT_UNLOCK (element);
1925 GST_CAT_DEBUG (GST_CAT_STATES,
1926 "elements %s was already in locked state %d",
1927 GST_ELEMENT_NAME (element), old);
1928 GST_OBJECT_UNLOCK (element);
1935 * gst_element_sync_state_with_parent:
1936 * @element: a #GstElement.
1938 * Tries to change the state of the element to the same as its parent.
1939 * If this function returns FALSE, the state of element is undefined.
1941 * Returns: TRUE, if the element's state could be synced to the parent's state.
1946 gst_element_sync_state_with_parent (GstElement * element)
1950 GstStateChangeReturn ret;
1952 g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1954 if ((parent = GST_ELEMENT_CAST (gst_element_get_parent (element)))) {
1955 GstState parent_current, parent_pending;
1957 GST_OBJECT_LOCK (parent);
1958 parent_current = GST_STATE (parent);
1959 parent_pending = GST_STATE_PENDING (parent);
1960 GST_OBJECT_UNLOCK (parent);
1962 /* set to pending if there is one, else we set it to the current state of
1964 if (parent_pending != GST_STATE_VOID_PENDING)
1965 target = parent_pending;
1967 target = parent_current;
1969 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
1970 "syncing state (%s) to parent %s %s (%s, %s)",
1971 gst_element_state_get_name (GST_STATE (element)),
1972 GST_ELEMENT_NAME (parent), gst_element_state_get_name (target),
1973 gst_element_state_get_name (parent_current),
1974 gst_element_state_get_name (parent_pending));
1976 ret = gst_element_set_state (element, target);
1977 if (ret == GST_STATE_CHANGE_FAILURE)
1980 gst_object_unref (parent);
1984 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "element has no parent");
1991 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
1992 "syncing state failed (%s)",
1993 gst_element_state_change_return_get_name (ret));
1994 gst_object_unref (parent);
2000 static GstStateChangeReturn
2001 gst_element_get_state_func (GstElement * element,
2002 GstState * state, GstState * pending, GstClockTime timeout)
2004 GstStateChangeReturn ret = GST_STATE_CHANGE_FAILURE;
2005 GstState old_pending;
2007 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "getting state, timeout %"
2008 GST_TIME_FORMAT, GST_TIME_ARGS (timeout));
2010 GST_OBJECT_LOCK (element);
2011 ret = GST_STATE_RETURN (element);
2012 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "RETURN is %s",
2013 gst_element_state_change_return_get_name (ret));
2015 /* we got an error, report immediately */
2016 if (ret == GST_STATE_CHANGE_FAILURE)
2019 /* we got no_preroll, report immediately */
2020 if (ret == GST_STATE_CHANGE_NO_PREROLL)
2023 /* no need to wait async if we are not async */
2024 if (ret != GST_STATE_CHANGE_ASYNC)
2027 old_pending = GST_STATE_PENDING (element);
2028 if (old_pending != GST_STATE_VOID_PENDING) {
2032 /* get cookie to detect state changes during waiting */
2033 cookie = element->state_cookie;
2035 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2036 "waiting for element to commit state");
2038 /* we have a pending state change, wait for it to complete */
2039 if (timeout != GST_CLOCK_TIME_NONE) {
2041 /* make timeout absolute */
2042 end_time = g_get_monotonic_time () + (timeout / 1000);
2043 signaled = GST_STATE_WAIT_UNTIL (element, end_time);
2045 GST_STATE_WAIT (element);
2050 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element, "timed out");
2051 /* timeout triggered */
2052 ret = GST_STATE_CHANGE_ASYNC;
2054 if (cookie != element->state_cookie)
2057 /* could be success or failure */
2058 if (old_pending == GST_STATE (element)) {
2059 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "got success");
2060 ret = GST_STATE_CHANGE_SUCCESS;
2062 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "got failure");
2063 ret = GST_STATE_CHANGE_FAILURE;
2066 /* if nothing is pending anymore we can return SUCCESS */
2067 if (GST_STATE_PENDING (element) == GST_STATE_VOID_PENDING) {
2068 GST_CAT_LOG_OBJECT (GST_CAT_STATES, element, "nothing pending");
2069 ret = GST_STATE_CHANGE_SUCCESS;
2075 *state = GST_STATE (element);
2077 *pending = GST_STATE_PENDING (element);
2079 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2080 "state current: %s, pending: %s, result: %s",
2081 gst_element_state_get_name (GST_STATE (element)),
2082 gst_element_state_get_name (GST_STATE_PENDING (element)),
2083 gst_element_state_change_return_get_name (ret));
2084 GST_OBJECT_UNLOCK (element);
2091 *state = GST_STATE_VOID_PENDING;
2093 *pending = GST_STATE_VOID_PENDING;
2095 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element, "interruped");
2097 GST_OBJECT_UNLOCK (element);
2099 return GST_STATE_CHANGE_FAILURE;
2104 * gst_element_get_state:
2105 * @element: a #GstElement to get the state of.
2106 * @state: (out) (allow-none): a pointer to #GstState to hold the state.
2108 * @pending: (out) (allow-none): a pointer to #GstState to hold the pending
2109 * state. Can be %NULL.
2110 * @timeout: a #GstClockTime to specify the timeout for an async
2111 * state change or %GST_CLOCK_TIME_NONE for infinite timeout.
2113 * Gets the state of the element.
2115 * For elements that performed an ASYNC state change, as reported by
2116 * gst_element_set_state(), this function will block up to the
2117 * specified timeout value for the state change to complete.
2118 * If the element completes the state change or goes into
2119 * an error, this function returns immediately with a return value of
2120 * %GST_STATE_CHANGE_SUCCESS or %GST_STATE_CHANGE_FAILURE respectively.
2122 * For elements that did not return %GST_STATE_CHANGE_ASYNC, this function
2123 * returns the current and pending state immediately.
2125 * This function returns %GST_STATE_CHANGE_NO_PREROLL if the element
2126 * successfully changed its state but is not able to provide data yet.
2127 * This mostly happens for live sources that only produce data in
2128 * %GST_STATE_PLAYING. While the state change return is equivalent to
2129 * %GST_STATE_CHANGE_SUCCESS, it is returned to the application to signal that
2130 * some sink elements might not be able to complete their state change because
2131 * an element is not producing data to complete the preroll. When setting the
2132 * element to playing, the preroll will complete and playback will start.
2134 * Returns: %GST_STATE_CHANGE_SUCCESS if the element has no more pending state
2135 * and the last state change succeeded, %GST_STATE_CHANGE_ASYNC if the
2136 * element is still performing a state change or
2137 * %GST_STATE_CHANGE_FAILURE if the last state change failed.
2141 GstStateChangeReturn
2142 gst_element_get_state (GstElement * element,
2143 GstState * state, GstState * pending, GstClockTime timeout)
2145 GstElementClass *oclass;
2146 GstStateChangeReturn result = GST_STATE_CHANGE_FAILURE;
2148 g_return_val_if_fail (GST_IS_ELEMENT (element), GST_STATE_CHANGE_FAILURE);
2150 oclass = GST_ELEMENT_GET_CLASS (element);
2152 if (oclass->get_state)
2153 result = (oclass->get_state) (element, state, pending, timeout);
2159 * gst_element_abort_state:
2160 * @element: a #GstElement to abort the state of.
2162 * Abort the state change of the element. This function is used
2163 * by elements that do asynchronous state changes and find out
2164 * something is wrong.
2166 * This function should be called with the STATE_LOCK held.
2171 gst_element_abort_state (GstElement * element)
2175 #ifndef GST_DISABLE_GST_DEBUG
2179 g_return_if_fail (GST_IS_ELEMENT (element));
2181 GST_OBJECT_LOCK (element);
2182 pending = GST_STATE_PENDING (element);
2184 if (pending == GST_STATE_VOID_PENDING ||
2185 GST_STATE_RETURN (element) == GST_STATE_CHANGE_FAILURE)
2186 goto nothing_aborted;
2188 #ifndef GST_DISABLE_GST_DEBUG
2189 old_state = GST_STATE (element);
2191 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2192 "aborting state from %s to %s", gst_element_state_get_name (old_state),
2193 gst_element_state_get_name (pending));
2197 GST_STATE_RETURN (element) = GST_STATE_CHANGE_FAILURE;
2199 GST_STATE_BROADCAST (element);
2200 GST_OBJECT_UNLOCK (element);
2206 GST_OBJECT_UNLOCK (element);
2211 /* Not static because GstBin has manual state handling too */
2213 _priv_gst_element_state_changed (GstElement * element, GstState oldstate,
2214 GstState newstate, GstState pending)
2216 GstElementClass *klass = GST_ELEMENT_GET_CLASS (element);
2217 GstMessage *message;
2219 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2220 "notifying about state-changed %s to %s (%s pending)",
2221 gst_element_state_get_name (oldstate),
2222 gst_element_state_get_name (newstate),
2223 gst_element_state_get_name (pending));
2225 if (klass->state_changed)
2226 klass->state_changed (element, oldstate, newstate, pending);
2228 message = gst_message_new_state_changed (GST_OBJECT_CAST (element),
2229 oldstate, newstate, pending);
2230 gst_element_post_message (element, message);
2234 * gst_element_continue_state:
2235 * @element: a #GstElement to continue the state change of.
2236 * @ret: The previous state return value
2238 * Commit the state change of the element and proceed to the next
2239 * pending state if any. This function is used
2240 * by elements that do asynchronous state changes.
2241 * The core will normally call this method automatically when an
2242 * element returned %GST_STATE_CHANGE_SUCCESS from the state change function.
2244 * If after calling this method the element still has not reached
2245 * the pending state, the next state change is performed.
2247 * This method is used internally and should normally not be called by plugins
2250 * Returns: The result of the commit state change.
2254 GstStateChangeReturn
2255 gst_element_continue_state (GstElement * element, GstStateChangeReturn ret)
2257 GstStateChangeReturn old_ret;
2258 GstState old_state, old_next;
2259 GstState current, next, pending;
2260 GstStateChange transition;
2262 GST_OBJECT_LOCK (element);
2263 old_ret = GST_STATE_RETURN (element);
2264 GST_STATE_RETURN (element) = ret;
2265 pending = GST_STATE_PENDING (element);
2267 /* check if there is something to commit */
2268 if (pending == GST_STATE_VOID_PENDING)
2269 goto nothing_pending;
2271 old_state = GST_STATE (element);
2272 /* this is the state we should go to next */
2273 old_next = GST_STATE_NEXT (element);
2274 /* update current state */
2275 current = GST_STATE (element) = old_next;
2277 /* see if we reached the final state */
2278 if (pending == current)
2281 next = GST_STATE_GET_NEXT (current, pending);
2282 transition = (GstStateChange) GST_STATE_TRANSITION (current, next);
2284 GST_STATE_NEXT (element) = next;
2286 GST_STATE_RETURN (element) = GST_STATE_CHANGE_ASYNC;
2287 GST_OBJECT_UNLOCK (element);
2289 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2290 "committing state from %s to %s, pending %s, next %s",
2291 gst_element_state_get_name (old_state),
2292 gst_element_state_get_name (old_next),
2293 gst_element_state_get_name (pending), gst_element_state_get_name (next));
2295 _priv_gst_element_state_changed (element, old_state, old_next, pending);
2297 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2298 "continue state change %s to %s, final %s",
2299 gst_element_state_get_name (current),
2300 gst_element_state_get_name (next), gst_element_state_get_name (pending));
2302 ret = gst_element_change_state (element, transition);
2308 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element, "nothing pending");
2309 GST_OBJECT_UNLOCK (element);
2314 GST_STATE_PENDING (element) = GST_STATE_VOID_PENDING;
2315 GST_STATE_NEXT (element) = GST_STATE_VOID_PENDING;
2317 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2318 "completed state change to %s", gst_element_state_get_name (pending));
2319 GST_OBJECT_UNLOCK (element);
2321 /* don't post silly messages with the same state. This can happen
2322 * when an element state is changed to what it already was. For bins
2323 * this can be the result of a lost state, which we check with the
2324 * previous return value.
2325 * We do signal the cond though as a _get_state() might be blocking
2327 if (old_state != old_next || old_ret == GST_STATE_CHANGE_ASYNC)
2328 _priv_gst_element_state_changed (element, old_state, old_next,
2329 GST_STATE_VOID_PENDING);
2331 GST_STATE_BROADCAST (element);
2338 * gst_element_lost_state:
2339 * @element: a #GstElement the state is lost of
2341 * Brings the element to the lost state. The current state of the
2342 * element is copied to the pending state so that any call to
2343 * gst_element_get_state() will return %GST_STATE_CHANGE_ASYNC.
2345 * An ASYNC_START message is posted. If the element was PLAYING, it will
2346 * go to PAUSED. The element will be restored to its PLAYING state by
2347 * the parent pipeline when it prerolls again.
2349 * This is mostly used for elements that lost their preroll buffer
2350 * in the %GST_STATE_PAUSED or %GST_STATE_PLAYING state after a flush,
2351 * they will go to their pending state again when a new preroll buffer is
2352 * queued. This function can only be called when the element is currently
2353 * not in error or an async state change.
2355 * This function is used internally and should normally not be called from
2356 * plugins or applications.
2359 gst_element_lost_state (GstElement * element)
2361 GstState old_state, new_state;
2362 GstMessage *message;
2364 g_return_if_fail (GST_IS_ELEMENT (element));
2366 GST_OBJECT_LOCK (element);
2367 if (GST_STATE_RETURN (element) == GST_STATE_CHANGE_FAILURE)
2370 if (GST_STATE_PENDING (element) != GST_STATE_VOID_PENDING)
2371 goto only_async_start;
2373 old_state = GST_STATE (element);
2375 /* when we were PLAYING, the new state is PAUSED. We will also not
2376 * automatically go to PLAYING but let the parent bin(s) set us to PLAYING
2377 * when we preroll. */
2378 if (old_state > GST_STATE_PAUSED)
2379 new_state = GST_STATE_PAUSED;
2381 new_state = old_state;
2383 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2384 "lost state of %s to %s", gst_element_state_get_name (old_state),
2385 gst_element_state_get_name (new_state));
2387 GST_STATE (element) = new_state;
2388 GST_STATE_NEXT (element) = new_state;
2389 GST_STATE_PENDING (element) = new_state;
2390 GST_STATE_RETURN (element) = GST_STATE_CHANGE_ASYNC;
2391 GST_OBJECT_UNLOCK (element);
2393 _priv_gst_element_state_changed (element, new_state, new_state, new_state);
2395 message = gst_message_new_async_start (GST_OBJECT_CAST (element));
2396 gst_element_post_message (element, message);
2402 GST_OBJECT_UNLOCK (element);
2407 GST_OBJECT_UNLOCK (element);
2409 message = gst_message_new_async_start (GST_OBJECT_CAST (element));
2410 gst_element_post_message (element, message);
2416 * gst_element_set_state:
2417 * @element: a #GstElement to change state of.
2418 * @state: the element's new #GstState.
2420 * Sets the state of the element. This function will try to set the
2421 * requested state by going through all the intermediary states and calling
2422 * the class's state change function for each.
2424 * This function can return #GST_STATE_CHANGE_ASYNC, in which case the
2425 * element will perform the remainder of the state change asynchronously in
2427 * An application can use gst_element_get_state() to wait for the completion
2428 * of the state change or it can wait for a state change message on the bus.
2430 * State changes to %GST_STATE_READY or %GST_STATE_NULL never return
2431 * #GST_STATE_CHANGE_ASYNC.
2433 * Returns: Result of the state change using #GstStateChangeReturn.
2437 GstStateChangeReturn
2438 gst_element_set_state (GstElement * element, GstState state)
2440 GstElementClass *oclass;
2441 GstStateChangeReturn result = GST_STATE_CHANGE_FAILURE;
2443 g_return_val_if_fail (GST_IS_ELEMENT (element), GST_STATE_CHANGE_FAILURE);
2445 oclass = GST_ELEMENT_GET_CLASS (element);
2447 if (oclass->set_state)
2448 result = (oclass->set_state) (element, state);
2454 * default set state function, calculates the next state based
2455 * on current state and calls the change_state function
2457 static GstStateChangeReturn
2458 gst_element_set_state_func (GstElement * element, GstState state)
2460 GstState current, next, old_pending;
2461 GstStateChangeReturn ret;
2462 GstStateChange transition;
2463 GstStateChangeReturn old_ret;
2465 g_return_val_if_fail (GST_IS_ELEMENT (element), GST_STATE_CHANGE_FAILURE);
2467 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "set_state to %s",
2468 gst_element_state_get_name (state));
2470 /* state lock is taken to protect the set_state() and get_state()
2471 * procedures, it does not lock any variables. */
2472 GST_STATE_LOCK (element);
2474 /* now calculate how to get to the new state */
2475 GST_OBJECT_LOCK (element);
2476 old_ret = GST_STATE_RETURN (element);
2477 /* previous state change returned an error, remove all pending
2478 * and next states */
2479 if (old_ret == GST_STATE_CHANGE_FAILURE) {
2480 GST_STATE_NEXT (element) = GST_STATE_VOID_PENDING;
2481 GST_STATE_PENDING (element) = GST_STATE_VOID_PENDING;
2482 GST_STATE_RETURN (element) = GST_STATE_CHANGE_SUCCESS;
2485 current = GST_STATE (element);
2486 next = GST_STATE_NEXT (element);
2487 old_pending = GST_STATE_PENDING (element);
2489 /* this is the (new) state we should go to. TARGET is the last state we set on
2491 if (state != GST_STATE_TARGET (element)) {
2492 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2493 "setting target state to %s", gst_element_state_get_name (state));
2494 GST_STATE_TARGET (element) = state;
2495 /* increment state cookie so that we can track each state change. We only do
2496 * this if this is actually a new state change. */
2497 element->state_cookie++;
2499 GST_STATE_PENDING (element) = state;
2501 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2502 "current %s, old_pending %s, next %s, old return %s",
2503 gst_element_state_get_name (current),
2504 gst_element_state_get_name (old_pending),
2505 gst_element_state_get_name (next),
2506 gst_element_state_change_return_get_name (old_ret));
2508 /* if the element was busy doing a state change, we just update the
2509 * target state, it'll get to it async then. */
2510 if (old_pending != GST_STATE_VOID_PENDING) {
2511 /* upwards state change will happen ASYNC */
2512 if (old_pending <= state)
2514 /* element is going to this state already */
2515 else if (next == state)
2517 /* element was performing an ASYNC upward state change and
2518 * we request to go downward again. Start from the next pending
2520 else if (next > state
2521 && GST_STATE_RETURN (element) == GST_STATE_CHANGE_ASYNC) {
2525 next = GST_STATE_GET_NEXT (current, state);
2526 /* now we store the next state */
2527 GST_STATE_NEXT (element) = next;
2528 /* mark busy, we need to check that there is actually a state change
2529 * to be done else we could accidentally override SUCCESS/NO_PREROLL and
2530 * the default element change_state function has no way to know what the
2531 * old value was... could consider this a FIXME...*/
2532 if (current != next)
2533 GST_STATE_RETURN (element) = GST_STATE_CHANGE_ASYNC;
2535 transition = (GstStateChange) GST_STATE_TRANSITION (current, next);
2537 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2538 "%s: setting state from %s to %s",
2539 (next != state ? "intermediate" : "final"),
2540 gst_element_state_get_name (current), gst_element_state_get_name (next));
2542 /* now signal any waiters, they will error since the cookie was incremented */
2543 GST_STATE_BROADCAST (element);
2545 GST_OBJECT_UNLOCK (element);
2547 ret = gst_element_change_state (element, transition);
2549 GST_STATE_UNLOCK (element);
2551 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element, "returned %s",
2552 gst_element_state_change_return_get_name (ret));
2558 GST_STATE_RETURN (element) = GST_STATE_CHANGE_ASYNC;
2559 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2560 "element was busy with async state change");
2561 GST_OBJECT_UNLOCK (element);
2563 GST_STATE_UNLOCK (element);
2565 return GST_STATE_CHANGE_ASYNC;
2570 * gst_element_change_state:
2571 * @element: a #GstElement
2572 * @transition: the requested transition
2574 * Perform @transition on @element.
2576 * This function must be called with STATE_LOCK held and is mainly used
2579 * Returns: the #GstStateChangeReturn of the state transition.
2581 GstStateChangeReturn
2582 gst_element_change_state (GstElement * element, GstStateChange transition)
2584 GstElementClass *oclass;
2585 GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
2587 oclass = GST_ELEMENT_GET_CLASS (element);
2589 /* call the state change function so it can set the state */
2590 if (oclass->change_state)
2591 ret = (oclass->change_state) (element, transition);
2593 ret = GST_STATE_CHANGE_FAILURE;
2596 case GST_STATE_CHANGE_FAILURE:
2597 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2598 "have FAILURE change_state return");
2599 /* state change failure */
2600 gst_element_abort_state (element);
2602 case GST_STATE_CHANGE_ASYNC:
2606 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2607 "element will change state ASYNC");
2609 target = GST_STATE_TARGET (element);
2611 if (target > GST_STATE_READY)
2614 /* else we just continue the state change downwards */
2615 GST_CAT_INFO_OBJECT (GST_CAT_STATES, element,
2616 "forcing commit state %s <= %s",
2617 gst_element_state_get_name (target),
2618 gst_element_state_get_name (GST_STATE_READY));
2620 ret = gst_element_continue_state (element, GST_STATE_CHANGE_SUCCESS);
2623 case GST_STATE_CHANGE_SUCCESS:
2624 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2625 "element changed state SUCCESS");
2626 /* we can commit the state now which will proceeed to
2628 ret = gst_element_continue_state (element, ret);
2630 case GST_STATE_CHANGE_NO_PREROLL:
2631 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2632 "element changed state NO_PREROLL");
2633 /* we can commit the state now which will proceeed to
2635 ret = gst_element_continue_state (element, ret);
2638 goto invalid_return;
2641 GST_CAT_LOG_OBJECT (GST_CAT_STATES, element, "exit state change %d", ret);
2646 GST_CAT_LOG_OBJECT (GST_CAT_STATES, element, "exit async state change %d",
2654 GST_OBJECT_LOCK (element);
2655 /* somebody added a GST_STATE_ and forgot to do stuff here ! */
2656 g_critical ("%s: unknown return value %d from a state change function",
2657 GST_ELEMENT_NAME (element), ret);
2659 /* we are in error now */
2660 ret = GST_STATE_CHANGE_FAILURE;
2661 GST_STATE_RETURN (element) = ret;
2662 GST_OBJECT_UNLOCK (element);
2668 /* gst_iterator_fold functions for pads_activate
2669 * Stop the iterator if activating one pad failed. */
2671 activate_pads (const GValue * vpad, GValue * ret, gboolean * active)
2673 GstPad *pad = g_value_get_object (vpad);
2674 gboolean cont = TRUE;
2676 if (!(cont = gst_pad_set_active (pad, *active)))
2677 g_value_set_boolean (ret, FALSE);
2682 /* returns false on error or early cutout of the fold, true if all
2683 * pads in @iter were (de)activated successfully. */
2685 iterator_activate_fold_with_resync (GstIterator * iter,
2686 GstIteratorFoldFunction func, gpointer user_data)
2688 GstIteratorResult ires;
2691 /* no need to unset this later, it's just a boolean */
2692 g_value_init (&ret, G_TYPE_BOOLEAN);
2693 g_value_set_boolean (&ret, TRUE);
2696 ires = gst_iterator_fold (iter, func, &ret, user_data);
2698 case GST_ITERATOR_RESYNC:
2699 /* need to reset the result again */
2700 g_value_set_boolean (&ret, TRUE);
2701 gst_iterator_resync (iter);
2703 case GST_ITERATOR_DONE:
2704 /* all pads iterated, return collected value */
2707 /* iterator returned _ERROR or premature end with _OK,
2708 * mark an error and exit */
2709 g_value_set_boolean (&ret, FALSE);
2714 /* return collected value */
2715 return g_value_get_boolean (&ret);
2718 /* is called with STATE_LOCK
2720 * Pads are activated from source pads to sinkpads.
2723 gst_element_pads_activate (GstElement * element, gboolean active)
2728 GST_CAT_DEBUG_OBJECT (GST_CAT_ELEMENT_PADS, element,
2729 "%s pads", active ? "activate" : "deactivate");
2731 iter = gst_element_iterate_src_pads (element);
2733 iterator_activate_fold_with_resync (iter,
2734 (GstIteratorFoldFunction) activate_pads, &active);
2735 gst_iterator_free (iter);
2736 if (G_UNLIKELY (!res))
2739 iter = gst_element_iterate_sink_pads (element);
2741 iterator_activate_fold_with_resync (iter,
2742 (GstIteratorFoldFunction) activate_pads, &active);
2743 gst_iterator_free (iter);
2744 if (G_UNLIKELY (!res))
2747 GST_CAT_DEBUG_OBJECT (GST_CAT_ELEMENT_PADS, element,
2748 "pad %sactivation successful", active ? "" : "de");
2755 GST_CAT_DEBUG_OBJECT (GST_CAT_ELEMENT_PADS, element,
2756 "pad %sactivation failed", active ? "" : "de");
2761 GST_CAT_DEBUG_OBJECT (GST_CAT_ELEMENT_PADS, element,
2762 "sink pads_activate failed");
2767 /* is called with STATE_LOCK */
2768 static GstStateChangeReturn
2769 gst_element_change_state_func (GstElement * element, GstStateChange transition)
2771 GstState state, next;
2772 GstStateChangeReturn result = GST_STATE_CHANGE_SUCCESS;
2774 g_return_val_if_fail (GST_IS_ELEMENT (element), GST_STATE_CHANGE_FAILURE);
2776 state = (GstState) GST_STATE_TRANSITION_CURRENT (transition);
2777 next = GST_STATE_TRANSITION_NEXT (transition);
2779 /* if the element already is in the given state, we just return success */
2780 if (next == GST_STATE_VOID_PENDING || state == next)
2783 GST_CAT_LOG_OBJECT (GST_CAT_STATES, element,
2784 "default handler tries setting state from %s to %s (%04x)",
2785 gst_element_state_get_name (state),
2786 gst_element_state_get_name (next), transition);
2788 switch (transition) {
2789 case GST_STATE_CHANGE_NULL_TO_READY:
2791 case GST_STATE_CHANGE_READY_TO_PAUSED:
2792 if (!gst_element_pads_activate (element, TRUE)) {
2793 result = GST_STATE_CHANGE_FAILURE;
2796 case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
2798 case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
2800 case GST_STATE_CHANGE_PAUSED_TO_READY:
2801 case GST_STATE_CHANGE_READY_TO_NULL:
2802 /* deactivate pads in both cases, since they are activated on
2803 ready->paused but the element might not have made it to paused */
2804 if (!gst_element_pads_activate (element, FALSE)) {
2805 result = GST_STATE_CHANGE_FAILURE;
2809 /* this will catch real but unhandled state changes;
2810 * can only be caused by:
2811 * - a new state was added
2812 * - somehow the element was asked to jump across an intermediate state
2814 g_warning ("Unhandled state change from %s to %s",
2815 gst_element_state_get_name (state),
2816 gst_element_state_get_name (next));
2823 GST_OBJECT_LOCK (element);
2824 result = GST_STATE_RETURN (element);
2825 GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
2826 "element is already in the %s state",
2827 gst_element_state_get_name (state));
2828 GST_OBJECT_UNLOCK (element);
2835 * gst_element_get_factory:
2836 * @element: a #GstElement to request the element factory of.
2838 * Retrieves the factory that was used to create this element.
2840 * Returns: (transfer none): the #GstElementFactory used for creating this
2841 * element. no refcounting is needed.
2844 gst_element_get_factory (GstElement * element)
2846 g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
2848 return GST_ELEMENT_GET_CLASS (element)->elementfactory;
2852 gst_element_dispose (GObject * object)
2854 GstElement *element = GST_ELEMENT_CAST (object);
2857 GstElementClass *oclass;
2860 oclass = GST_ELEMENT_GET_CLASS (element);
2862 GST_CAT_INFO_OBJECT (GST_CAT_REFCOUNTING, element, "dispose");
2864 if (GST_STATE (element) != GST_STATE_NULL)
2867 /* start by releasing all request pads, this might also remove some dynamic
2869 walk = element->pads;
2871 GstPad *pad = GST_PAD_CAST (walk->data);
2875 if (oclass->release_pad && GST_PAD_PAD_TEMPLATE (pad) &&
2876 GST_PAD_TEMPLATE_PRESENCE (GST_PAD_PAD_TEMPLATE (pad))
2877 == GST_PAD_REQUEST) {
2878 GST_CAT_DEBUG_OBJECT (GST_CAT_ELEMENT_PADS, element,
2879 "removing request pad %s:%s", GST_DEBUG_PAD_NAME (pad));
2880 oclass->release_pad (element, pad);
2882 /* in case the release_pad function removed the next pad too */
2883 if (walk && g_list_position (element->pads, walk) == -1)
2884 walk = element->pads;
2887 /* remove the remaining pads */
2888 while (element->pads) {
2889 GstPad *pad = GST_PAD_CAST (element->pads->data);
2890 GST_CAT_DEBUG_OBJECT (GST_CAT_ELEMENT_PADS, element,
2891 "removing pad %s:%s", GST_DEBUG_PAD_NAME (pad));
2892 if (!gst_element_remove_pad (element, pad)) {
2893 /* only happens when someone unparented our pad.. */
2894 g_critical ("failed to remove pad %s:%s", GST_DEBUG_PAD_NAME (pad));
2899 GST_OBJECT_LOCK (element);
2900 clock_p = &element->clock;
2901 bus_p = &element->bus;
2902 gst_object_replace ((GstObject **) clock_p, NULL);
2903 gst_object_replace ((GstObject **) bus_p, NULL);
2904 GST_OBJECT_UNLOCK (element);
2906 GST_CAT_INFO_OBJECT (GST_CAT_REFCOUNTING, element, "parent class dispose");
2908 G_OBJECT_CLASS (parent_class)->dispose (object);
2917 is_locked = GST_ELEMENT_IS_LOCKED_STATE (element);
2919 ("\nTrying to dispose element %s, but it is in %s%s instead of the NULL"
2921 "You need to explicitly set elements to the NULL state before\n"
2922 "dropping the final reference, to allow them to clean up.\n"
2923 "This problem may also be caused by a refcounting bug in the\n"
2924 "application or some element.\n",
2925 GST_OBJECT_NAME (element),
2926 gst_element_state_get_name (GST_STATE (element)),
2927 is_locked ? " (locked)" : "");
2933 gst_element_finalize (GObject * object)
2935 GstElement *element = GST_ELEMENT_CAST (object);
2937 GST_CAT_INFO_OBJECT (GST_CAT_REFCOUNTING, element, "finalize");
2939 g_cond_clear (&element->state_cond);
2940 g_rec_mutex_clear (&element->state_lock);
2942 GST_CAT_INFO_OBJECT (GST_CAT_REFCOUNTING, element, "finalize parent");
2944 G_OBJECT_CLASS (parent_class)->finalize (object);
2948 gst_element_set_bus_func (GstElement * element, GstBus * bus)
2952 g_return_if_fail (GST_IS_ELEMENT (element));
2954 GST_CAT_DEBUG_OBJECT (GST_CAT_PARENTAGE, element, "setting bus to %p", bus);
2956 GST_OBJECT_LOCK (element);
2957 bus_p = &GST_ELEMENT_BUS (element);
2958 gst_object_replace ((GstObject **) bus_p, GST_OBJECT_CAST (bus));
2959 GST_OBJECT_UNLOCK (element);
2963 * gst_element_set_bus:
2964 * @element: a #GstElement to set the bus of.
2965 * @bus: (transfer none): the #GstBus to set.
2967 * Sets the bus of the element. Increases the refcount on the bus.
2968 * For internal use only, unless you're testing elements.
2973 gst_element_set_bus (GstElement * element, GstBus * bus)
2975 GstElementClass *oclass;
2977 g_return_if_fail (GST_IS_ELEMENT (element));
2979 oclass = GST_ELEMENT_GET_CLASS (element);
2981 if (oclass->set_bus)
2982 oclass->set_bus (element, bus);
2986 * gst_element_get_bus:
2987 * @element: a #GstElement to get the bus of.
2989 * Returns the bus of the element. Note that only a #GstPipeline will provide a
2990 * bus for the application.
2992 * Returns: (transfer full): the element's #GstBus. unref after usage.
2997 gst_element_get_bus (GstElement * element)
2999 GstBus *result = NULL;
3001 g_return_val_if_fail (GST_IS_ELEMENT (element), result);
3003 GST_OBJECT_LOCK (element);
3004 if ((result = GST_ELEMENT_BUS (element)))
3005 gst_object_ref (result);
3006 GST_OBJECT_UNLOCK (element);
3008 GST_CAT_DEBUG_OBJECT (GST_CAT_BUS, element, "got bus %" GST_PTR_FORMAT,