2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wtay@chello.be>
5 * gstpad.c: Pads for linking elements together
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., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
24 * @short_description: Object contained by elements that allows links to
26 * @see_also: #GstPadTemplate, #GstElement, #GstEvent
28 * A #GstElement is linked to other elements via "pads", which are extremely
29 * light-weight generic link points.
30 * After two pads are retrieved from an element with gst_element_get_pad(),
31 * the pads can be link with gst_pad_link(). (For quick links,
32 * you can also use gst_element_link(), which will make the obvious
33 * link for you if it's straightforward.)
35 * Pads are typically created from a #GstPadTemplate with
36 * gst_pad_new_from_template().
38 * Pads have #GstCaps attached to it to describe the media type they are
39 * capable of dealing with. gst_pad_get_caps() and gst_pad_try_set_caps() are
40 * used to manipulate the caps of the pads.
41 * Pads created from a pad template cannot set capabilities that are
42 * incompatible with the pad template capabilities.
44 * Pads without pad templates can be created with gst_pad_new(),
45 * which takes a direction and a name as an argument. If the name is NULL,
46 * then a guaranteed unique name will be assigned to it.
48 * gst_pad_get_parent() will retrieve the #GstElement that owns the pad.
50 * A #GstElement creating a pad will typically use the various
51 * gst_pad_set_*_function() calls to register callbacks for various events
54 * GstElements will use gst_pad_push() and gst_pad_pull() to push out
55 * or pull in a buffer.
56 * gst_pad_select() and gst_pad_selectv() are used by plugins to wait for the
57 * first incoming buffer or event on any of the given set of pads.
59 * To send a #GstEvent on a pad, use gst_pad_send_event().
61 * Last reviewed on December 13th, 2002 (0.5.0.1)
64 #include "gst_private.h"
67 #include "gstpadtemplate.h"
68 #include "gstenumtypes.h"
69 #include "gstmarshal.h"
74 #include "glib-compat.h"
76 GST_DEBUG_CATEGORY_STATIC (debug_dataflow);
77 #define GST_CAT_DEFAULT GST_CAT_PADS
79 /* Pad signals and args */
99 static void gst_pad_class_init (GstPadClass * klass);
100 static void gst_pad_init (GstPad * pad);
101 static void gst_pad_dispose (GObject * object);
102 static void gst_pad_finalize (GObject * object);
103 static void gst_pad_set_property (GObject * object, guint prop_id,
104 const GValue * value, GParamSpec * pspec);
105 static void gst_pad_get_property (GObject * object, guint prop_id,
106 GValue * value, GParamSpec * pspec);
108 static GstFlowReturn handle_pad_block (GstPad * pad);
109 static GstCaps *gst_pad_get_caps_unlocked (GstPad * pad);
110 static void gst_pad_set_pad_template (GstPad * pad, GstPadTemplate * templ);
111 static gboolean gst_pad_activate_default (GstPad * pad);
113 #ifndef GST_DISABLE_LOADSAVE
114 static xmlNodePtr gst_pad_save_thyself (GstObject * object, xmlNodePtr parent);
117 static GstObjectClass *parent_class = NULL;
118 static guint gst_pad_signals[LAST_SIGNAL] = { 0 };
120 /* quarks for probe signals */
121 static GQuark buffer_quark;
122 static GQuark event_quark;
131 static GstFlowQuarks flow_quarks[] = {
132 {GST_FLOW_RESEND, "resend", 0},
133 {GST_FLOW_OK, "ok", 0},
134 {GST_FLOW_NOT_LINKED, "not-linked", 0},
135 {GST_FLOW_WRONG_STATE, "wrong-state", 0},
136 {GST_FLOW_UNEXPECTED, "unexpected", 0},
137 {GST_FLOW_NOT_NEGOTIATED, "not-negotiated", 0},
138 {GST_FLOW_ERROR, "error", 0},
139 {GST_FLOW_NOT_SUPPORTED, "not-supported", 0},
146 * @ret: a #GstFlowReturn to get the name of.
148 * Gets a string representing the given flow return.
150 * Returns: a string with the name of the flow return.
152 G_CONST_RETURN gchar *
153 gst_flow_get_name (GstFlowReturn ret)
157 for (i = 0; flow_quarks[i].name; i++) {
158 if (ret == flow_quarks[i].ret)
159 return flow_quarks[i].name;
166 * @ret: a #GstFlowReturn to get the quark of.
168 * Get the unique quark for the given GstFlowReturn.
170 * Returns: the quark associated with the flow return or 0 if an
171 * invalid return was specified.
174 gst_flow_to_quark (GstFlowReturn ret)
178 for (i = 0; flow_quarks[i].name; i++) {
179 if (ret == flow_quarks[i].ret)
180 return flow_quarks[i].quark;
186 gst_pad_get_type (void)
188 static GType gst_pad_type = 0;
191 static const GTypeInfo pad_info = {
192 sizeof (GstPadClass), NULL, NULL,
193 (GClassInitFunc) gst_pad_class_init, NULL, NULL,
196 (GInstanceInitFunc) gst_pad_init, NULL
200 gst_pad_type = g_type_register_static (GST_TYPE_OBJECT, "GstPad",
203 buffer_quark = g_quark_from_static_string ("buffer");
204 event_quark = g_quark_from_static_string ("event");
206 for (i = 0; flow_quarks[i].name; i++) {
207 flow_quarks[i].quark = g_quark_from_static_string (flow_quarks[i].name);
210 GST_DEBUG_CATEGORY_INIT (debug_dataflow, "GST_DATAFLOW",
211 GST_DEBUG_BOLD | GST_DEBUG_FG_GREEN, "dataflow inside pads");
217 _gst_do_pass_data_accumulator (GSignalInvocationHint * ihint,
218 GValue * return_accu, const GValue * handler_return, gpointer dummy)
220 gboolean ret = g_value_get_boolean (handler_return);
222 GST_DEBUG ("accumulated %d", ret);
223 g_value_set_boolean (return_accu, ret);
229 default_have_data (GstPad * pad, GstMiniObject * o)
235 gst_pad_class_init (GstPadClass * klass)
237 GObjectClass *gobject_class;
240 GstObjectClass *gstobject_class;
242 gobject_class = (GObjectClass *) klass;
243 gstobject_class = (GstObjectClass *) klass;
245 parent_class = g_type_class_ref (GST_TYPE_OBJECT);
247 gobject_class->dispose = GST_DEBUG_FUNCPTR (gst_pad_dispose);
248 gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_pad_finalize);
249 gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_pad_set_property);
250 gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_pad_get_property);
254 * @pad: the pad that emitted the signal
255 * @peer: the peer pad that has been connected
257 * Signals that a pad has been linked to the peer pad.
259 gst_pad_signals[PAD_LINKED] =
260 g_signal_new ("linked", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
261 G_STRUCT_OFFSET (GstPadClass, linked), NULL, NULL,
262 gst_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GST_TYPE_PAD);
265 * @pad: the pad that emitted the signal
266 * @peer: the peer pad that has been disconnected
268 * Signals that a pad has been unlinked from the peer pad.
270 gst_pad_signals[PAD_UNLINKED] =
271 g_signal_new ("unlinked", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
272 G_STRUCT_OFFSET (GstPadClass, unlinked), NULL, NULL,
273 gst_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GST_TYPE_PAD);
275 * GstPad::request-link:
276 * @pad: the pad that emitted the signal
277 * @peer: the peer pad for which a connection is requested
279 * Signals that a pad connection has been requested.
281 gst_pad_signals[PAD_REQUEST_LINK] =
282 g_signal_new ("request-link", G_TYPE_FROM_CLASS (klass),
283 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstPadClass, request_link), NULL,
284 NULL, gst_marshal_VOID__OBJECT, G_TYPE_NONE, 0);
288 * @pad: the pad that emitted the signal
289 * @mini_obj: new data
291 * Signals that new data is available on the pad. This signal is used
292 * internally for implementing pad probes.
293 * See gst_pad_add_*_probe functions.
295 * Returns: %TRUE to keep the data, %FALSE to drop it
297 gst_pad_signals[PAD_HAVE_DATA] =
298 g_signal_new ("have-data", G_TYPE_FROM_CLASS (klass),
299 G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
300 G_STRUCT_OFFSET (GstPadClass, have_data),
301 _gst_do_pass_data_accumulator,
302 NULL, gst_marshal_BOOLEAN__POINTER, G_TYPE_BOOLEAN, 1,
303 GST_TYPE_MINI_OBJECT);
305 g_object_class_install_property (G_OBJECT_CLASS (klass), PAD_PROP_CAPS,
306 g_param_spec_boxed ("caps", "Caps", "The capabilities of the pad",
307 GST_TYPE_CAPS, G_PARAM_READABLE));
308 g_object_class_install_property (G_OBJECT_CLASS (klass), PAD_PROP_DIRECTION,
309 g_param_spec_enum ("direction", "Direction", "The direction of the pad",
310 GST_TYPE_PAD_DIRECTION, GST_PAD_UNKNOWN,
311 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
312 g_object_class_install_property (G_OBJECT_CLASS (klass), PAD_PROP_TEMPLATE,
313 g_param_spec_object ("template", "Template",
314 "The GstPadTemplate of this pad", GST_TYPE_PAD_TEMPLATE,
317 #ifndef GST_DISABLE_LOADSAVE
318 gstobject_class->save_thyself = GST_DEBUG_FUNCPTR (gst_pad_save_thyself);
320 gstobject_class->path_string_separator = ".";
322 klass->have_data = default_have_data;
326 gst_pad_init (GstPad * pad)
328 pad->direction = GST_PAD_UNKNOWN;
331 pad->chainfunc = NULL;
335 pad->linkfunc = NULL;
336 pad->getcapsfunc = NULL;
338 pad->activatefunc = GST_DEBUG_FUNCPTR (gst_pad_activate_default);
339 pad->eventfunc = GST_DEBUG_FUNCPTR (gst_pad_event_default);
340 pad->querytypefunc = GST_DEBUG_FUNCPTR (gst_pad_get_query_types_default);
341 pad->queryfunc = GST_DEBUG_FUNCPTR (gst_pad_query_default);
342 pad->intlinkfunc = GST_DEBUG_FUNCPTR (gst_pad_get_internal_links_default);
344 pad->do_buffer_signals = 0;
345 pad->do_event_signals = 0;
347 GST_PAD_UNSET_FLUSHING (pad);
349 pad->preroll_lock = g_mutex_new ();
350 pad->preroll_cond = g_cond_new ();
352 pad->stream_rec_lock = g_new (GStaticRecMutex, 1);
353 g_static_rec_mutex_init (pad->stream_rec_lock);
355 pad->block_cond = g_cond_new ();
359 gst_pad_dispose (GObject * object)
361 GstPad *pad = GST_PAD (object);
363 GST_CAT_DEBUG (GST_CAT_REFCOUNTING, "dispose %s:%s",
364 GST_DEBUG_PAD_NAME (pad));
366 /* we don't hold a ref to the peer so we can just set the
368 GST_PAD_PEER (pad) = NULL;
371 gst_caps_replace (&GST_PAD_CAPS (pad), NULL);
373 gst_pad_set_pad_template (pad, NULL);
375 G_OBJECT_CLASS (parent_class)->dispose (object);
379 gst_pad_finalize (GObject * object)
381 GstPad *pad = GST_PAD (object);
384 /* in case the task is still around, clean it up */
385 if ((task = GST_PAD_TASK (pad))) {
386 gst_task_join (task);
387 GST_PAD_TASK (pad) = NULL;
388 gst_object_unref (task);
391 if (pad->stream_rec_lock) {
392 g_static_rec_mutex_free (pad->stream_rec_lock);
393 g_free (pad->stream_rec_lock);
394 pad->stream_rec_lock = NULL;
396 if (pad->preroll_lock) {
397 g_mutex_free (pad->preroll_lock);
398 g_cond_free (pad->preroll_cond);
399 pad->preroll_lock = NULL;
400 pad->preroll_cond = NULL;
402 if (pad->block_cond) {
403 g_cond_free (pad->block_cond);
404 pad->block_cond = NULL;
407 G_OBJECT_CLASS (parent_class)->finalize (object);
411 gst_pad_set_property (GObject * object, guint prop_id,
412 const GValue * value, GParamSpec * pspec)
414 g_return_if_fail (GST_IS_PAD (object));
417 case PAD_PROP_DIRECTION:
418 GST_PAD_DIRECTION (object) = g_value_get_enum (value);
420 case PAD_PROP_TEMPLATE:
421 gst_pad_set_pad_template (GST_PAD_CAST (object),
422 (GstPadTemplate *) g_value_dup_gst_object (value));
425 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
431 gst_pad_get_property (GObject * object, guint prop_id,
432 GValue * value, GParamSpec * pspec)
434 g_return_if_fail (GST_IS_PAD (object));
438 g_value_set_boxed (value, GST_PAD_CAPS (object));
440 case PAD_PROP_DIRECTION:
441 g_value_set_enum (value, GST_PAD_DIRECTION (object));
443 case PAD_PROP_TEMPLATE:
444 g_value_set_object (value, GST_PAD_PAD_TEMPLATE (object));
447 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
454 * @name: the name of the new pad.
455 * @direction: the #GstPadDirection of the pad.
457 * Creates a new pad with the given name in the given direction.
458 * If name is NULL, a guaranteed unique name (across all pads)
460 * This function makes a copy of the name so you can safely free the name.
462 * Returns: a new #GstPad, or NULL in case of an error.
467 gst_pad_new (const gchar * name, GstPadDirection direction)
469 return g_object_new (GST_TYPE_PAD,
470 "name", name, "direction", direction, NULL);
474 * gst_pad_new_from_template:
475 * @templ: the pad template to use
476 * @name: the name of the element
478 * Creates a new pad with the given name from the given template.
479 * If name is NULL, a guaranteed unique name (across all pads)
481 * This function makes a copy of the name so you can safely free the name.
483 * Returns: a new #GstPad, or NULL in case of an error.
486 gst_pad_new_from_template (GstPadTemplate * templ, const gchar * name)
488 g_return_val_if_fail (GST_IS_PAD_TEMPLATE (templ), NULL);
490 return g_object_new (GST_TYPE_PAD,
491 "name", name, "direction", templ->direction, "template", templ, NULL);
495 * gst_pad_new_from_static_template:
496 * @templ: the #GstStaticPadTemplate to use
497 * @name: the name of the element
499 * Creates a new pad with the given name from the given static template.
500 * If name is NULL, a guaranteed unique name (across all pads)
502 * This function makes a copy of the name so you can safely free the name.
504 * Returns: a new #GstPad, or NULL in case of an error.
507 gst_pad_new_from_static_template (GstStaticPadTemplate * templ,
511 GstPadTemplate *template;
513 template = gst_static_pad_template_get (templ);
514 pad = gst_pad_new_from_template (template, name);
515 gst_object_unref (template);
520 * gst_pad_get_direction:
521 * @pad: a #GstPad to get the direction of.
523 * Gets the direction of the pad. The direction of the pad is
524 * decided at construction time so this function does not take
527 * Returns: the #GstPadDirection of the pad.
532 gst_pad_get_direction (GstPad * pad)
534 GstPadDirection result;
536 /* PAD_UNKNOWN is a little silly but we need some sort of
537 * error return value */
538 g_return_val_if_fail (GST_IS_PAD (pad), GST_PAD_UNKNOWN);
541 result = GST_PAD_DIRECTION (pad);
548 gst_pad_activate_default (GstPad * pad)
550 return gst_pad_activate_push (pad, TRUE);
554 pre_activate (GstPad * pad, GstActivateMode new_mode)
557 case GST_ACTIVATE_PUSH:
558 case GST_ACTIVATE_PULL:
560 GST_DEBUG_OBJECT (pad, "setting ACTIVATE_MODE %d, unset flushing",
562 GST_PAD_UNSET_FLUSHING (pad);
563 GST_PAD_ACTIVATE_MODE (pad) = new_mode;
566 case GST_ACTIVATE_NONE:
568 GST_DEBUG_OBJECT (pad, "setting ACTIVATE_MODE NONE, set flushing",
570 GST_PAD_SET_FLUSHING (pad);
571 /* unlock blocked pads so element can resume and stop */
572 GST_PAD_BLOCK_SIGNAL (pad);
579 post_activate (GstPad * pad, GstActivateMode new_mode)
582 case GST_ACTIVATE_PUSH:
583 case GST_ACTIVATE_PULL:
586 case GST_ACTIVATE_NONE:
587 /* ensures that streaming stops */
588 GST_STREAM_LOCK (pad);
589 /* while we're at it set activation mode */
591 GST_DEBUG_OBJECT (pad, "setting ACTIVATE_MODE %d", new_mode);
592 GST_PAD_ACTIVATE_MODE (pad) = new_mode;
594 GST_STREAM_UNLOCK (pad);
600 * gst_pad_set_active:
601 * @pad: the #GstPad to activate or deactivate.
602 * @active: whether or not the pad should be active.
604 * Activates or deactivates the given pad.
605 * Normally called from within core state change functions.
607 * If @active, makes sure the pad is active. If it is already active, either in
608 * push or pull mode, just return. Otherwise dispatches to the pad's activate
609 * function to perform the actual activation.
611 * If not @active, checks the pad's current mode and calls
612 * gst_pad_activate_push() or gst_pad_activate_pull(), as appropriate, with a
615 * Returns: #TRUE if the operation was successful.
620 gst_pad_set_active (GstPad * pad, gboolean active)
623 gboolean ret = FALSE;
625 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
628 old = GST_PAD_ACTIVATE_MODE (pad);
633 case GST_ACTIVATE_PUSH:
634 case GST_ACTIVATE_PULL:
637 case GST_ACTIVATE_NONE:
638 ret = (GST_PAD_ACTIVATEFUNC (pad)) (pad);
643 case GST_ACTIVATE_PUSH:
644 ret = gst_pad_activate_push (pad, FALSE);
646 case GST_ACTIVATE_PULL:
647 ret = gst_pad_activate_pull (pad, FALSE);
649 case GST_ACTIVATE_NONE:
655 if (!active && !ret) {
657 g_critical ("Failed to deactivate pad %s:%s, very bad",
658 GST_DEBUG_PAD_NAME (pad));
666 * gst_pad_activate_pull:
667 * @pad: the #GstPad to activate or deactivate.
668 * @active: whether or not the pad should be active.
670 * Activates or deactivates the given pad in pull mode via dispatching to the
671 * pad's activatepullfunc. For use from within pad activation functions only.
672 * When called on sink pads, will first proxy the call to the peer pad, which is
673 * expected to activate its internally linked pads from within its activate_pull
676 * If you don't know what this is, you probably don't want to call it.
678 * Returns: TRUE if the operation was successfull.
683 gst_pad_activate_pull (GstPad * pad, gboolean active)
685 GstActivateMode old, new;
688 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
691 old = GST_PAD_ACTIVATE_MODE (pad);
694 if ((active && old == GST_ACTIVATE_PULL)
695 || (!active && old == GST_ACTIVATE_NONE))
699 g_return_val_if_fail (old == GST_ACTIVATE_NONE, FALSE);
701 g_return_val_if_fail (old == GST_ACTIVATE_PULL, FALSE);
704 if (gst_pad_get_direction (pad) == GST_PAD_SINK) {
705 if ((peer = gst_pad_get_peer (pad))) {
706 if (!gst_pad_activate_pull (peer, active))
708 gst_object_unref (peer);
712 new = active ? GST_ACTIVATE_PULL : GST_ACTIVATE_NONE;
713 pre_activate (pad, new);
715 if (GST_PAD_ACTIVATEPULLFUNC (pad)) {
716 if (!GST_PAD_ACTIVATEPULLFUNC (pad) (pad, active))
719 /* can happen for sinks of passthrough elements */
722 post_activate (pad, new);
724 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "%s in pull mode",
725 active ? "activated" : "deactivated");
730 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "already %s in pull mode",
731 active ? "activated" : "deactivated");
737 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
738 "activate_pull on peer (%s:%s) failed", GST_DEBUG_PAD_NAME (peer));
740 gst_object_unref (peer);
745 GST_CAT_INFO_OBJECT (GST_CAT_PADS, pad, "failed to %s in pull mode",
746 active ? "activate" : "deactivate");
747 pre_activate (pad, GST_ACTIVATE_NONE);
748 post_activate (pad, GST_ACTIVATE_NONE);
754 * gst_pad_activate_push:
755 * @pad: the #GstPad to activate or deactivate.
756 * @active: whether or not the pad should be active.
758 * Activates or deactivates the given pad in push mode via dispatching to the
759 * pad's activatepushfunc. For use from within pad activation functions only.
761 * If you don't know what this is, you probably don't want to call it.
763 * Returns: TRUE if the operation was successfull.
768 gst_pad_activate_push (GstPad * pad, gboolean active)
770 GstActivateMode old, new;
772 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
773 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "trying to set %s in push mode",
774 active ? "activated" : "deactivated");
777 old = GST_PAD_ACTIVATE_MODE (pad);
780 if ((active && old == GST_ACTIVATE_PUSH)
781 || (!active && old == GST_ACTIVATE_NONE))
785 g_return_val_if_fail (old == GST_ACTIVATE_NONE, FALSE);
787 g_return_val_if_fail (old == GST_ACTIVATE_PUSH, FALSE);
790 new = active ? GST_ACTIVATE_PUSH : GST_ACTIVATE_NONE;
791 pre_activate (pad, new);
793 if (GST_PAD_ACTIVATEPUSHFUNC (pad)) {
794 if (!GST_PAD_ACTIVATEPUSHFUNC (pad) (pad, active)) {
798 /* quite ok, element relies on state change func to prepare itself */
801 post_activate (pad, new);
803 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "%s in push mode",
804 active ? "activated" : "deactivated");
809 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "already %s in push mode",
810 active ? "activated" : "deactivated");
815 GST_CAT_INFO_OBJECT (GST_CAT_PADS, pad, "failed to %s in push mode",
816 active ? "activate" : "deactivate");
817 pre_activate (pad, GST_ACTIVATE_NONE);
818 post_activate (pad, GST_ACTIVATE_NONE);
825 * @pad: the #GstPad to query
827 * Query if a pad is active
829 * Returns: TRUE if the pad is active.
834 gst_pad_is_active (GstPad * pad)
836 gboolean result = FALSE;
838 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
841 result = GST_PAD_MODE_ACTIVATE (GST_PAD_ACTIVATE_MODE (pad));
848 * gst_pad_set_blocked_async:
849 * @pad: the #GstPad to block or unblock
850 * @blocked: boolean indicating whether the pad should be blocked or unblocked
851 * @callback: #GstPadBlockCallback that will be called when the
853 * @user_data: user data passed to the callback
855 * Blocks or unblocks the dataflow on a pad. The provided callback
856 * is called when the operation succeeds; this happens right before the next
857 * attempt at pushing a buffer on the pad.
859 * This can take a while as the pad can only become blocked when real dataflow
861 * When the pipeline is stalled, for example in PAUSED, this can
862 * take an indeterminate amount of time.
863 * You can pass NULL as the callback to make this call block. Be careful with
864 * this blocking call as it might not return for reasons stated above.
866 * Returns: TRUE if the pad could be blocked. This function can fail
867 * if wrong parameters were passed or the pad was already in the
873 gst_pad_set_blocked_async (GstPad * pad, gboolean blocked,
874 GstPadBlockCallback callback, gpointer user_data)
876 gboolean was_blocked;
878 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
882 was_blocked = GST_PAD_IS_BLOCKED (pad);
884 if (G_UNLIKELY (was_blocked == blocked))
885 goto had_right_state;
888 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "blocking pad %s:%s",
889 GST_DEBUG_PAD_NAME (pad));
891 GST_OBJECT_FLAG_SET (pad, GST_PAD_BLOCKED);
892 pad->block_callback = callback;
893 pad->block_data = user_data;
895 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "waiting for block");
896 GST_PAD_BLOCK_WAIT (pad);
897 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "blocked");
900 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "unblocking pad %s:%s",
901 GST_DEBUG_PAD_NAME (pad));
903 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_BLOCKED);
905 pad->block_callback = callback;
906 pad->block_data = user_data;
909 GST_PAD_BLOCK_SIGNAL (pad);
911 GST_PAD_BLOCK_SIGNAL (pad);
912 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "waiting for unblock");
913 GST_PAD_BLOCK_WAIT (pad);
914 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "unblocked");
923 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
924 "pad %s:%s was in right state", GST_DEBUG_PAD_NAME (pad));
931 * gst_pad_set_blocked:
932 * @pad: the #GstPad to block or unblock
933 * @blocked: boolean indicating we should block or unblock
935 * Blocks or unblocks the dataflow on a pad. This function is
936 * a shortcut for gst_pad_set_blocked_async() with a NULL
939 * Returns: TRUE if the pad could be blocked. This function can fail
940 * wrong parameters were passed or the pad was already in the
946 gst_pad_set_blocked (GstPad * pad, gboolean blocked)
948 return gst_pad_set_blocked_async (pad, blocked, NULL, NULL);
952 * gst_pad_is_blocked:
953 * @pad: the #GstPad to query
955 * Checks if the pad is blocked or not. This function returns the
956 * last requested state of the pad. It is not certain that the pad
957 * is actually blocked at this point.
959 * Returns: TRUE if the pad is blocked.
964 gst_pad_is_blocked (GstPad * pad)
966 gboolean result = FALSE;
968 g_return_val_if_fail (GST_IS_PAD (pad), result);
971 result = GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_BLOCKED);
978 * gst_pad_set_activate_function:
979 * @pad: a sink #GstPad.
980 * @activate: the #GstPadActivateFunction to set.
982 * Sets the given activate function for the pad. The activate function will
983 * dispatch to activate_push or activate_pull to perform the actual activation.
984 * Only makes sense to set on sink pads.
986 * Call this function if your sink pad can start a pull-based task.
989 gst_pad_set_activate_function (GstPad * pad, GstPadActivateFunction activate)
991 g_return_if_fail (GST_IS_PAD (pad));
993 GST_PAD_ACTIVATEFUNC (pad) = activate;
994 GST_CAT_DEBUG (GST_CAT_PADS, "activatefunc for %s:%s set to %s",
995 GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (activate));
999 * gst_pad_set_activatepull_function:
1000 * @pad: a sink #GstPad.
1001 * @activatepull: the #GstPadActivateModeFunction to set.
1003 * Sets the given activate_pull function for the pad. An activate_pull function
1004 * prepares the element and any upstream connections for pulling. See XXX
1005 * part-activation.txt for details.
1008 gst_pad_set_activatepull_function (GstPad * pad,
1009 GstPadActivateModeFunction activatepull)
1011 g_return_if_fail (GST_IS_PAD (pad));
1013 GST_PAD_ACTIVATEPULLFUNC (pad) = activatepull;
1014 GST_CAT_DEBUG (GST_CAT_PADS, "activatepullfunc for %s:%s set to %s",
1015 GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (activatepull));
1019 * gst_pad_set_activatepush_function:
1020 * @pad: a sink #GstPad.
1021 * @activatepush: the #GstPadActivateModeFunction to set.
1023 * Sets the given activate_push function for the pad. An activate_push function
1024 * prepares the element for pushing. See XXX part-activation.txt for details.
1027 gst_pad_set_activatepush_function (GstPad * pad,
1028 GstPadActivateModeFunction activatepush)
1030 g_return_if_fail (GST_IS_PAD (pad));
1032 GST_PAD_ACTIVATEPUSHFUNC (pad) = activatepush;
1033 GST_CAT_DEBUG (GST_CAT_PADS, "activatepushfunc for %s:%s set to %s",
1034 GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (activatepush));
1038 * gst_pad_set_chain_function:
1039 * @pad: a sink #GstPad.
1040 * @chain: the #GstPadChainFunction to set.
1042 * Sets the given chain function for the pad. The chain function is called to
1043 * process a #GstBuffer input buffer.
1046 gst_pad_set_chain_function (GstPad * pad, GstPadChainFunction chain)
1048 g_return_if_fail (GST_IS_PAD (pad));
1049 g_return_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SINK);
1051 GST_PAD_CHAINFUNC (pad) = chain;
1052 GST_CAT_DEBUG (GST_CAT_PADS, "chainfunc for %s:%s set to %s",
1053 GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (chain));
1057 * gst_pad_set_getrange_function:
1058 * @pad: a source #GstPad.
1059 * @get: the #GstPadGetRangeFunction to set.
1061 * Sets the given getrange function for the pad. The getrange function is called to
1062 * produce a new #GstBuffer to start the processing pipeline. Getrange functions cannot
1066 gst_pad_set_getrange_function (GstPad * pad, GstPadGetRangeFunction get)
1068 g_return_if_fail (GST_IS_PAD (pad));
1069 g_return_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SRC);
1071 GST_PAD_GETRANGEFUNC (pad) = get;
1073 GST_CAT_DEBUG (GST_CAT_PADS, "getrangefunc for %s:%s set to %s",
1074 GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (get));
1078 * gst_pad_set_checkgetrange_function:
1079 * @pad: a source #GstPad.
1080 * @check: the #GstPadCheckGetRangeFunction to set.
1082 * Sets the given checkgetrange function for the pad. Implement this function on
1083 * a pad if you dynamically support getrange based scheduling on the pad.
1086 gst_pad_set_checkgetrange_function (GstPad * pad,
1087 GstPadCheckGetRangeFunction check)
1089 g_return_if_fail (GST_IS_PAD (pad));
1090 g_return_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SRC);
1092 GST_PAD_CHECKGETRANGEFUNC (pad) = check;
1094 GST_CAT_DEBUG (GST_CAT_PADS, "checkgetrangefunc for %s:%s set to %s",
1095 GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (check));
1099 * gst_pad_set_event_function:
1100 * @pad: a source #GstPad.
1101 * @event: the #GstPadEventFunction to set.
1103 * Sets the given event handler for the pad.
1106 gst_pad_set_event_function (GstPad * pad, GstPadEventFunction event)
1108 g_return_if_fail (GST_IS_PAD (pad));
1110 GST_PAD_EVENTFUNC (pad) = event;
1112 GST_CAT_DEBUG (GST_CAT_PADS, "eventfunc for %s:%s set to %s",
1113 GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (event));
1117 * gst_pad_set_query_function:
1118 * @pad: a #GstPad of either direction.
1119 * @query: the #GstPadQueryFunction to set.
1121 * Set the given query function for the pad.
1124 gst_pad_set_query_function (GstPad * pad, GstPadQueryFunction query)
1126 g_return_if_fail (GST_IS_PAD (pad));
1128 GST_PAD_QUERYFUNC (pad) = query;
1130 GST_CAT_DEBUG (GST_CAT_PADS, "queryfunc for %s:%s set to %s",
1131 GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (query));
1135 * gst_pad_set_query_type_function:
1136 * @pad: a #GstPad of either direction.
1137 * @type_func: the #GstPadQueryTypeFunction to set.
1139 * Set the given query type function for the pad.
1142 gst_pad_set_query_type_function (GstPad * pad,
1143 GstPadQueryTypeFunction type_func)
1145 g_return_if_fail (GST_IS_PAD (pad));
1147 GST_PAD_QUERYTYPEFUNC (pad) = type_func;
1149 GST_CAT_DEBUG (GST_CAT_PADS, "querytypefunc for %s:%s set to %s",
1150 GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (type_func));
1154 * gst_pad_get_query_types:
1157 * Get an array of supported queries that can be performed
1160 * Returns: a zero-terminated array of #GstQueryType.
1162 const GstQueryType *
1163 gst_pad_get_query_types (GstPad * pad)
1165 GstPadQueryTypeFunction func;
1167 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
1169 if (G_UNLIKELY ((func = GST_PAD_QUERYTYPEFUNC (pad)) == NULL))
1181 gst_pad_get_query_types_dispatcher (GstPad * pad, const GstQueryType ** data)
1183 *data = gst_pad_get_query_types (pad);
1189 * gst_pad_get_query_types_default:
1192 * Invoke the default dispatcher for the query types on
1195 * Returns: an zero-terminated array of #GstQueryType, or NULL if none of the
1196 * internally-linked pads has a query types function.
1198 const GstQueryType *
1199 gst_pad_get_query_types_default (GstPad * pad)
1201 GstQueryType *result = NULL;
1203 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
1205 gst_pad_dispatcher (pad, (GstPadDispatcherFunction)
1206 gst_pad_get_query_types_dispatcher, &result);
1212 * gst_pad_set_internal_link_function:
1213 * @pad: a #GstPad of either direction.
1214 * @intlink: the #GstPadIntLinkFunction to set.
1216 * Sets the given internal link function for the pad.
1219 gst_pad_set_internal_link_function (GstPad * pad, GstPadIntLinkFunction intlink)
1221 g_return_if_fail (GST_IS_PAD (pad));
1223 GST_PAD_INTLINKFUNC (pad) = intlink;
1224 GST_CAT_DEBUG (GST_CAT_PADS, "internal link for %s:%s set to %s",
1225 GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (intlink));
1229 * gst_pad_set_link_function:
1231 * @link: the #GstPadLinkFunction to set.
1233 * Sets the given link function for the pad. It will be called when
1234 * the pad is linked with another pad.
1236 * The return value #GST_PAD_LINK_OK should be used when the connection can be
1239 * The return value #GST_PAD_LINK_REFUSED should be used when the connection
1240 * cannot be made for some reason.
1242 * If @link is installed on a source pad, it should call the #GstPadLinkFunction
1243 * of the peer sink pad, if present.
1246 gst_pad_set_link_function (GstPad * pad, GstPadLinkFunction link)
1248 g_return_if_fail (GST_IS_PAD (pad));
1250 GST_PAD_LINKFUNC (pad) = link;
1251 GST_CAT_DEBUG (GST_CAT_PADS, "linkfunc for %s:%s set to %s",
1252 GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (link));
1256 * gst_pad_set_unlink_function:
1258 * @unlink: the #GstPadUnlinkFunction to set.
1260 * Sets the given unlink function for the pad. It will be called
1261 * when the pad is unlinked.
1264 gst_pad_set_unlink_function (GstPad * pad, GstPadUnlinkFunction unlink)
1266 g_return_if_fail (GST_IS_PAD (pad));
1268 GST_PAD_UNLINKFUNC (pad) = unlink;
1269 GST_CAT_DEBUG (GST_CAT_PADS, "unlinkfunc for %s:%s set to %s",
1270 GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (unlink));
1274 * gst_pad_set_getcaps_function:
1276 * @getcaps: the #GstPadGetCapsFunction to set.
1278 * Sets the given getcaps function for the pad. @getcaps should return the
1279 * allowable caps for a pad in the context of the element's state, its link to
1280 * other elements, and the devices or files it has opened. These caps must be a
1281 * subset of the pad template caps. In the NULL state with no links, @getcaps
1282 * should ideally return the same caps as the pad template. In rare
1283 * circumstances, an object property can affect the caps returned by @getcaps,
1284 * but this is discouraged.
1286 * You do not need to call this function if @pad's allowed caps are always the
1287 * same as the pad template caps. This can only be true if the padtemplate
1288 * has fixed simple caps.
1290 * For most filters, the caps returned by @getcaps is directly affected by the
1291 * allowed caps on other pads. For demuxers and decoders, the caps returned by
1292 * the srcpad's getcaps function is directly related to the stream data. Again,
1293 * @getcaps should return the most specific caps it reasonably can, since this
1294 * helps with autoplugging.
1296 * Note that the return value from @getcaps is owned by the caller, so the caller
1297 * should unref the caps after usage.
1300 gst_pad_set_getcaps_function (GstPad * pad, GstPadGetCapsFunction getcaps)
1302 g_return_if_fail (GST_IS_PAD (pad));
1304 GST_PAD_GETCAPSFUNC (pad) = getcaps;
1305 GST_CAT_DEBUG (GST_CAT_PADS, "getcapsfunc for %s:%s set to %s",
1306 GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (getcaps));
1310 * gst_pad_set_acceptcaps_function:
1312 * @acceptcaps: the #GstPadAcceptCapsFunction to set.
1314 * Sets the given acceptcaps function for the pad. The acceptcaps function
1315 * will be called to check if the pad can accept the given caps.
1318 gst_pad_set_acceptcaps_function (GstPad * pad,
1319 GstPadAcceptCapsFunction acceptcaps)
1321 g_return_if_fail (GST_IS_PAD (pad));
1323 GST_PAD_ACCEPTCAPSFUNC (pad) = acceptcaps;
1324 GST_CAT_DEBUG (GST_CAT_PADS, "acceptcapsfunc for %s:%s set to %s",
1325 GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (acceptcaps));
1329 * gst_pad_set_fixatecaps_function:
1331 * @fixatecaps: the #GstPadFixateCapsFunction to set.
1333 * Sets the given fixatecaps function for the pad. The fixatecaps function
1334 * will be called whenever the default values for a GstCaps needs to be
1338 gst_pad_set_fixatecaps_function (GstPad * pad,
1339 GstPadFixateCapsFunction fixatecaps)
1341 g_return_if_fail (GST_IS_PAD (pad));
1343 GST_PAD_FIXATECAPSFUNC (pad) = fixatecaps;
1344 GST_CAT_DEBUG (GST_CAT_PADS, "fixatecapsfunc for %s:%s set to %s",
1345 GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (fixatecaps));
1349 * gst_pad_set_setcaps_function:
1351 * @setcaps: the #GstPadSetCapsFunction to set.
1353 * Sets the given setcaps function for the pad. The setcaps function
1354 * will be called whenever a buffer with a new media type is pushed or
1355 * pulled from the pad. The pad/element needs to update it's internal
1356 * structures to process the new media type. If this new type is not
1357 * acceptable, the setcaps function should return FALSE.
1360 gst_pad_set_setcaps_function (GstPad * pad, GstPadSetCapsFunction setcaps)
1362 g_return_if_fail (GST_IS_PAD (pad));
1364 GST_PAD_SETCAPSFUNC (pad) = setcaps;
1365 GST_CAT_DEBUG (GST_CAT_PADS, "setcapsfunc for %s:%s set to %s",
1366 GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (setcaps));
1370 * gst_pad_set_bufferalloc_function:
1371 * @pad: a sink #GstPad.
1372 * @bufalloc: the #GstPadBufferAllocFunction to set.
1374 * Sets the given bufferalloc function for the pad. Note that the
1375 * bufferalloc function can only be set on sinkpads.
1378 gst_pad_set_bufferalloc_function (GstPad * pad,
1379 GstPadBufferAllocFunction bufalloc)
1381 g_return_if_fail (GST_IS_PAD (pad));
1382 g_return_if_fail (GST_PAD_IS_SINK (pad));
1384 GST_PAD_BUFFERALLOCFUNC (pad) = bufalloc;
1385 GST_CAT_DEBUG (GST_CAT_PADS, "bufferallocfunc for %s:%s set to %s",
1386 GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (bufalloc));
1391 * @srcpad: the source #GstPad to unlink.
1392 * @sinkpad: the sink #GstPad to unlink.
1394 * Unlinks the source pad from the sink pad. Will emit the "unlinked" signal on
1397 * Returns: TRUE if the pads were unlinked. This function returns FALSE if
1398 * the pads were not linked together.
1403 gst_pad_unlink (GstPad * srcpad, GstPad * sinkpad)
1405 g_return_val_if_fail (GST_IS_PAD (srcpad), FALSE);
1406 g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
1408 GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "unlinking %s:%s(%p) and %s:%s(%p)",
1409 GST_DEBUG_PAD_NAME (srcpad), srcpad,
1410 GST_DEBUG_PAD_NAME (sinkpad), sinkpad);
1414 if (G_UNLIKELY (GST_PAD_DIRECTION (srcpad) != GST_PAD_SRC))
1419 if (G_UNLIKELY (GST_PAD_DIRECTION (sinkpad) != GST_PAD_SINK))
1422 if (G_UNLIKELY (GST_PAD_PEER (srcpad) != sinkpad))
1423 goto not_linked_together;
1425 if (GST_PAD_UNLINKFUNC (srcpad)) {
1426 GST_PAD_UNLINKFUNC (srcpad) (srcpad);
1428 if (GST_PAD_UNLINKFUNC (sinkpad)) {
1429 GST_PAD_UNLINKFUNC (sinkpad) (sinkpad);
1432 /* first clear peers */
1433 GST_PAD_PEER (srcpad) = NULL;
1434 GST_PAD_PEER (sinkpad) = NULL;
1436 GST_UNLOCK (sinkpad);
1437 GST_UNLOCK (srcpad);
1439 /* fire off a signal to each of the pads telling them
1440 * that they've been unlinked */
1441 g_signal_emit (G_OBJECT (srcpad), gst_pad_signals[PAD_UNLINKED], 0, sinkpad);
1442 g_signal_emit (G_OBJECT (sinkpad), gst_pad_signals[PAD_UNLINKED], 0, srcpad);
1444 GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "unlinked %s:%s and %s:%s",
1445 GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
1451 g_critical ("pad %s is not a source pad", GST_PAD_NAME (srcpad));
1452 GST_UNLOCK (srcpad);
1457 g_critical ("pad %s is not a sink pad", GST_PAD_NAME (sinkpad));
1458 GST_UNLOCK (sinkpad);
1459 GST_UNLOCK (srcpad);
1462 not_linked_together:
1464 /* we do not emit a warning in this case because unlinking cannot
1465 * be made MT safe.*/
1466 GST_UNLOCK (sinkpad);
1467 GST_UNLOCK (srcpad);
1473 * gst_pad_is_linked:
1474 * @pad: pad to check
1476 * Checks if a @pad is linked to another pad or not.
1478 * Returns: TRUE if the pad is linked, FALSE otherwise.
1483 gst_pad_is_linked (GstPad * pad)
1487 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1490 result = (GST_PAD_PEER (pad) != NULL);
1496 /* get the caps from both pads and see if the intersection
1499 * This function should be called with the pad LOCK on both
1503 gst_pad_link_check_compatible_unlocked (GstPad * src, GstPad * sink)
1508 srccaps = gst_pad_get_caps_unlocked (src);
1509 sinkcaps = gst_pad_get_caps_unlocked (sink);
1510 GST_CAT_DEBUG (GST_CAT_CAPS, "src caps %" GST_PTR_FORMAT, srccaps);
1511 GST_CAT_DEBUG (GST_CAT_CAPS, "sink caps %" GST_PTR_FORMAT, sinkcaps);
1513 /* if we have caps on both pads we can check the intersection */
1514 if (srccaps && sinkcaps) {
1517 icaps = gst_caps_intersect (srccaps, sinkcaps);
1518 gst_caps_unref (srccaps);
1519 gst_caps_unref (sinkcaps);
1521 GST_CAT_DEBUG (GST_CAT_CAPS,
1522 "intersection caps %p %" GST_PTR_FORMAT, icaps, icaps);
1524 if (!icaps || gst_caps_is_empty (icaps)) {
1525 GST_CAT_DEBUG (GST_CAT_CAPS, "intersection is empty");
1526 gst_caps_unref (icaps);
1529 gst_caps_unref (icaps);
1535 /* check if the grandparents of both pads are the same.
1536 * This check is required so that we don't try to link
1537 * pads from elements in different bins without ghostpads.
1539 * The LOCK should be helt on both pads
1542 gst_pad_link_check_hierarchy (GstPad * src, GstPad * sink)
1544 GstObject *psrc, *psink;
1545 gboolean res = TRUE;
1547 psrc = GST_OBJECT_PARENT (src);
1548 psink = GST_OBJECT_PARENT (sink);
1550 /* if one of the pads has no parent, we allow the link */
1551 if (psrc && psink) {
1552 /* if the parents are the same, we have a loop */
1553 if (psrc == psink) {
1554 GST_CAT_DEBUG (GST_CAT_CAPS, "pads have same parent %" GST_PTR_FORMAT,
1559 /* if they both have a parent, we check the grandparents */
1560 psrc = gst_object_get_parent (psrc);
1561 psink = gst_object_get_parent (psink);
1563 if (psrc != psink) {
1564 /* if they have grandparents but they are not the same */
1565 GST_CAT_DEBUG (GST_CAT_CAPS,
1566 "pads have different grandparents %" GST_PTR_FORMAT " and %"
1567 GST_PTR_FORMAT, psrc, psink);
1571 gst_object_unref (psrc);
1573 gst_object_unref (psink);
1579 /* FIXME leftover from an attempt at refactoring... */
1580 /* call with the two pads unlocked */
1581 static GstPadLinkReturn
1582 gst_pad_link_prepare (GstPad * srcpad, GstPad * sinkpad)
1584 /* generic checks */
1585 g_return_val_if_fail (GST_IS_PAD (srcpad), GST_PAD_LINK_REFUSED);
1586 g_return_val_if_fail (GST_IS_PAD (sinkpad), GST_PAD_LINK_REFUSED);
1588 GST_CAT_INFO (GST_CAT_PADS, "trying to link %s:%s and %s:%s",
1589 GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
1593 if (G_UNLIKELY (GST_PAD_DIRECTION (srcpad) != GST_PAD_SRC))
1596 if (G_UNLIKELY (GST_PAD_PEER (srcpad) != NULL))
1597 goto src_was_linked;
1601 if (G_UNLIKELY (GST_PAD_DIRECTION (sinkpad) != GST_PAD_SINK))
1604 if (G_UNLIKELY (GST_PAD_PEER (sinkpad) != NULL))
1605 goto sink_was_linked;
1607 /* check hierarchy, pads can only be linked if the grandparents
1609 if (!gst_pad_link_check_hierarchy (srcpad, sinkpad))
1610 goto wrong_hierarchy;
1612 /* check pad caps for non-empty intersection */
1613 if (!gst_pad_link_check_compatible_unlocked (srcpad, sinkpad))
1616 /* FIXME check pad scheduling for non-empty intersection */
1618 return GST_PAD_LINK_OK;
1622 g_critical ("pad %s is not a source pad", GST_PAD_NAME (srcpad));
1623 GST_UNLOCK (srcpad);
1624 return GST_PAD_LINK_WRONG_DIRECTION;
1628 GST_CAT_INFO (GST_CAT_PADS, "src %s:%s was linked",
1629 GST_DEBUG_PAD_NAME (srcpad));
1630 /* we do not emit a warning in this case because unlinking cannot
1631 * be made MT safe.*/
1632 GST_UNLOCK (srcpad);
1633 return GST_PAD_LINK_WAS_LINKED;
1637 g_critical ("pad %s is not a sink pad", GST_PAD_NAME (sinkpad));
1638 GST_UNLOCK (sinkpad);
1639 GST_UNLOCK (srcpad);
1640 return GST_PAD_LINK_WRONG_DIRECTION;
1644 GST_CAT_INFO (GST_CAT_PADS, "sink %s:%s was linked",
1645 GST_DEBUG_PAD_NAME (sinkpad));
1646 /* we do not emit a warning in this case because unlinking cannot
1647 * be made MT safe.*/
1648 GST_UNLOCK (sinkpad);
1649 GST_UNLOCK (srcpad);
1650 return GST_PAD_LINK_WAS_LINKED;
1654 GST_CAT_INFO (GST_CAT_PADS, "pads have wrong hierarchy");
1655 GST_UNLOCK (sinkpad);
1656 GST_UNLOCK (srcpad);
1657 return GST_PAD_LINK_WRONG_HIERARCHY;
1661 GST_CAT_INFO (GST_CAT_PADS, "caps are incompatible");
1662 GST_UNLOCK (sinkpad);
1663 GST_UNLOCK (srcpad);
1664 return GST_PAD_LINK_NOFORMAT;
1670 * @srcpad: the source #GstPad to link.
1671 * @sinkpad: the sink #GstPad to link.
1673 * Links the source pad and the sink pad.
1675 * Returns: A result code indicating if the connection worked or
1681 gst_pad_link (GstPad * srcpad, GstPad * sinkpad)
1683 GstPadLinkReturn result;
1685 /* prepare will also lock the two pads */
1686 result = gst_pad_link_prepare (srcpad, sinkpad);
1688 if (result != GST_PAD_LINK_OK)
1689 goto prepare_failed;
1691 GST_UNLOCK (sinkpad);
1692 GST_UNLOCK (srcpad);
1694 /* FIXME released the locks here, concurrent thread might link
1695 * something else. */
1696 if (GST_PAD_LINKFUNC (srcpad)) {
1697 /* this one will call the peer link function */
1698 result = GST_PAD_LINKFUNC (srcpad) (srcpad, sinkpad);
1699 } else if (GST_PAD_LINKFUNC (sinkpad)) {
1700 /* if no source link function, we need to call the sink link
1701 * function ourselves. */
1702 result = GST_PAD_LINKFUNC (sinkpad) (sinkpad, srcpad);
1704 result = GST_PAD_LINK_OK;
1710 if (result == GST_PAD_LINK_OK) {
1711 GST_PAD_PEER (srcpad) = sinkpad;
1712 GST_PAD_PEER (sinkpad) = srcpad;
1714 GST_UNLOCK (sinkpad);
1715 GST_UNLOCK (srcpad);
1717 /* fire off a signal to each of the pads telling them
1718 * that they've been linked */
1719 g_signal_emit (G_OBJECT (srcpad), gst_pad_signals[PAD_LINKED], 0, sinkpad);
1720 g_signal_emit (G_OBJECT (sinkpad), gst_pad_signals[PAD_LINKED], 0, srcpad);
1722 GST_CAT_INFO (GST_CAT_PADS, "linked %s:%s and %s:%s, successful",
1723 GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
1725 GST_CAT_INFO (GST_CAT_PADS, "link between %s:%s and %s:%s failed",
1726 GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
1728 GST_UNLOCK (sinkpad);
1729 GST_UNLOCK (srcpad);
1740 gst_pad_set_pad_template (GstPad * pad, GstPadTemplate * templ)
1742 /* this function would need checks if it weren't static */
1745 gst_object_replace ((GstObject **) & pad->padtemplate, (GstObject *) templ);
1749 gst_pad_template_pad_created (templ, pad);
1753 * gst_pad_get_pad_template:
1756 * Gets the template for @pad.
1758 * Returns: the #GstPadTemplate from which this pad was instantiated, or %NULL
1759 * if this pad has no template.
1761 * FIXME: currently returns an unrefcounted padtemplate.
1764 gst_pad_get_pad_template (GstPad * pad)
1766 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
1768 return GST_PAD_PAD_TEMPLATE (pad);
1772 /* should be called with the pad LOCK held */
1773 /* refs the caps, so caller is responsible for getting it unreffed */
1775 gst_pad_get_caps_unlocked (GstPad * pad)
1777 GstCaps *result = NULL;
1779 GST_CAT_DEBUG (GST_CAT_CAPS, "get pad caps of %s:%s (%p)",
1780 GST_DEBUG_PAD_NAME (pad), pad);
1782 if (GST_PAD_GETCAPSFUNC (pad)) {
1783 GST_CAT_DEBUG (GST_CAT_CAPS, "dispatching to pad getcaps function");
1785 GST_OBJECT_FLAG_SET (pad, GST_PAD_IN_GETCAPS);
1787 result = GST_PAD_GETCAPSFUNC (pad) (pad);
1789 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_IN_GETCAPS);
1791 if (result == NULL) {
1792 g_critical ("pad %s:%s returned NULL caps from getcaps function",
1793 GST_DEBUG_PAD_NAME (pad));
1795 GST_CAT_DEBUG (GST_CAT_CAPS,
1796 "pad getcaps %s:%s returned %" GST_PTR_FORMAT,
1797 GST_DEBUG_PAD_NAME (pad), result);
1798 #ifndef G_DISABLE_ASSERT
1799 /* check that the returned caps are a real subset of the template caps */
1800 if (GST_PAD_PAD_TEMPLATE (pad)) {
1801 const GstCaps *templ_caps =
1802 GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (pad));
1803 if (!gst_caps_is_subset (result, templ_caps)) {
1806 GST_CAT_ERROR_OBJECT (GST_CAT_CAPS, pad,
1807 "pad returned caps %" GST_PTR_FORMAT
1808 " which are not a real subset of its template caps %"
1809 GST_PTR_FORMAT, result, templ_caps);
1811 ("pad %s:%s returned caps that are not a real subset of its template caps",
1812 GST_DEBUG_PAD_NAME (pad));
1813 temp = gst_caps_intersect (templ_caps, result);
1814 gst_caps_unref (result);
1822 if (GST_PAD_PAD_TEMPLATE (pad)) {
1823 GstPadTemplate *templ = GST_PAD_PAD_TEMPLATE (pad);
1825 result = GST_PAD_TEMPLATE_CAPS (templ);
1826 GST_CAT_DEBUG (GST_CAT_CAPS,
1827 "using pad template %p with caps %p %" GST_PTR_FORMAT, templ, result,
1830 result = gst_caps_ref (result);
1833 if (GST_PAD_CAPS (pad)) {
1834 result = GST_PAD_CAPS (pad);
1836 GST_CAT_DEBUG (GST_CAT_CAPS,
1837 "using pad caps %p %" GST_PTR_FORMAT, result, result);
1839 result = gst_caps_ref (result);
1843 GST_CAT_DEBUG (GST_CAT_CAPS, "pad has no caps");
1844 result = gst_caps_new_empty ();
1852 * @pad: a #GstPad to get the capabilities of.
1854 * Gets the capabilities this pad can produce or consume.
1855 * Note that this method doesn't necessarily returns the caps set by
1856 * #gst_pad_set_caps - use #GST_PAD_CAPS for that instead.
1857 * gst_pad_get_caps returns all possible caps a pad can operate with, using
1858 * the pad's get_caps function;
1859 * this returns the pad template caps if not explicitly set.
1861 * Returns: a newly allocated copy of the #GstCaps of this pad.
1866 gst_pad_get_caps (GstPad * pad)
1868 GstCaps *result = NULL;
1870 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
1874 GST_CAT_DEBUG (GST_CAT_CAPS, "get pad caps of %s:%s (%p)",
1875 GST_DEBUG_PAD_NAME (pad), pad);
1877 result = gst_pad_get_caps_unlocked (pad);
1884 * gst_pad_peer_get_caps:
1885 * @pad: a #GstPad to get the peer capabilities of.
1887 * Gets the capabilities of the peer connected to this pad.
1889 * Returns: the #GstCaps of the peer pad. This function returns a new caps, so use
1890 * gst_caps_unref to get rid of it. this function returns NULL if there is no
1894 gst_pad_peer_get_caps (GstPad * pad)
1897 GstCaps *result = NULL;
1899 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
1903 GST_CAT_DEBUG (GST_CAT_CAPS, "get peer caps of %s:%s (%p)",
1904 GST_DEBUG_PAD_NAME (pad), pad);
1906 peerpad = GST_PAD_PEER (pad);
1907 if (G_UNLIKELY (peerpad == NULL))
1910 gst_object_ref (peerpad);
1913 result = gst_pad_get_caps (peerpad);
1915 gst_object_unref (peerpad);
1927 fixate_value (GValue * dest, const GValue * src)
1929 if (G_VALUE_TYPE (src) == GST_TYPE_INT_RANGE) {
1930 g_value_init (dest, G_TYPE_INT);
1931 g_value_set_int (dest, gst_value_get_int_range_min (src));
1932 } else if (G_VALUE_TYPE (src) == GST_TYPE_DOUBLE_RANGE) {
1933 g_value_init (dest, G_TYPE_DOUBLE);
1934 g_value_set_double (dest, gst_value_get_double_range_min (src));
1935 } else if (G_VALUE_TYPE (src) == GST_TYPE_LIST) {
1936 GValue temp = { 0 };
1938 gst_value_init_and_copy (&temp, gst_value_list_get_value (src, 0));
1939 if (!fixate_value (dest, &temp))
1940 gst_value_init_and_copy (dest, &temp);
1941 g_value_unset (&temp);
1942 } else if (G_VALUE_TYPE (src) == GST_TYPE_ARRAY) {
1943 gboolean res = FALSE;
1946 g_value_init (dest, GST_TYPE_ARRAY);
1947 for (n = 0; n < gst_value_list_get_size (src); n++) {
1949 const GValue *orig_kid = gst_value_list_get_value (src, n);
1951 if (!fixate_value (&kid, orig_kid))
1952 gst_value_init_and_copy (&kid, orig_kid);
1955 gst_value_list_append_value (dest, &kid);
1956 g_value_unset (&kid);
1960 g_value_unset (dest);
1971 gst_pad_default_fixate (GQuark field_id, const GValue * value, gpointer data)
1973 GstStructure *s = data;
1976 if (fixate_value (&v, value)) {
1977 gst_structure_id_set_value (s, field_id, &v);
1985 * gst_pad_fixate_caps:
1986 * @pad: a #GstPad to fixate
1987 * @caps: the #GstCaps to fixate
1989 * Fixate a caps on the given pad. Modifies the caps in place, so you should
1990 * make sure that the caps are actually writable (see gst_caps_make_writable()).
1993 gst_pad_fixate_caps (GstPad * pad, GstCaps * caps)
1995 GstPadFixateCapsFunction fixatefunc;
1998 g_return_if_fail (GST_IS_PAD (pad));
1999 g_return_if_fail (caps != NULL);
2001 if (gst_caps_is_fixed (caps))
2004 fixatefunc = GST_PAD_FIXATECAPSFUNC (pad);
2006 fixatefunc (pad, caps);
2009 /* default fixation */
2010 for (n = 0; n < gst_caps_get_size (caps); n++) {
2011 GstStructure *s = gst_caps_get_structure (caps, n);
2013 gst_structure_foreach (s, gst_pad_default_fixate, s);
2018 * gst_pad_accept_caps:
2019 * @pad: a #GstPad to check
2020 * @caps: a #GstCaps to check on the pad
2022 * Check if the given pad accepts the caps.
2024 * Returns: TRUE if the pad can accept the caps.
2027 gst_pad_accept_caps (GstPad * pad, GstCaps * caps)
2030 GstPadAcceptCapsFunction acceptfunc;
2032 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2034 /* any pad can be unnegotiated */
2039 acceptfunc = GST_PAD_ACCEPTCAPSFUNC (pad);
2041 GST_CAT_DEBUG (GST_CAT_CAPS, "pad accept caps of %s:%s (%p)",
2042 GST_DEBUG_PAD_NAME (pad), pad);
2046 /* we can call the function */
2047 result = acceptfunc (pad, caps);
2049 /* else see get the caps and see if it intersects to something
2054 allowed = gst_pad_get_caps (pad);
2056 intersect = gst_caps_intersect (allowed, caps);
2058 result = !gst_caps_is_empty (intersect);
2060 gst_caps_unref (allowed);
2061 gst_caps_unref (intersect);
2070 * gst_pad_peer_accept_caps:
2071 * @pad: a #GstPad to check
2072 * @caps: a #GstCaps to check on the pad
2074 * Check if the given pad accepts the caps.
2076 * Returns: TRUE if the pad can accept the caps.
2079 gst_pad_peer_accept_caps (GstPad * pad, GstCaps * caps)
2084 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2088 GST_CAT_DEBUG (GST_CAT_CAPS, "peer accept caps of %s:%s (%p)",
2089 GST_DEBUG_PAD_NAME (pad), pad);
2091 peerpad = GST_PAD_PEER (pad);
2092 if (G_UNLIKELY (peerpad == NULL))
2095 result = gst_pad_accept_caps (peerpad, caps);
2109 * @pad: a #GstPad to set the capabilities of.
2110 * @caps: a #GstCaps to set.
2112 * Sets the capabilities of this pad. The caps must be fixed. Any previous
2113 * caps on the pad will be unreffed. This function refs the caps so you should
2114 * unref if as soon as you don't need it anymore.
2115 * It is possible to set NULL caps, which will make the pad unnegotiated
2118 * Returns: TRUE if the caps could be set. FALSE if the caps were not fixed
2119 * or bad parameters were provided to this function.
2124 gst_pad_set_caps (GstPad * pad, GstCaps * caps)
2126 GstPadSetCapsFunction setcaps;
2129 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2130 g_return_val_if_fail (caps == NULL || gst_caps_is_fixed (caps), FALSE);
2133 setcaps = GST_PAD_SETCAPSFUNC (pad);
2135 existing = GST_PAD_CAPS (pad);
2136 if (caps == existing)
2137 goto setting_same_caps;
2138 else if (caps && existing && gst_caps_is_equal (caps, existing))
2139 goto setting_same_caps;
2141 /* call setcaps function to configure the pad */
2142 if (setcaps != NULL && caps) {
2143 if (!GST_PAD_IS_IN_SETCAPS (pad)) {
2144 GST_OBJECT_FLAG_SET (pad, GST_PAD_IN_SETCAPS);
2146 if (!setcaps (pad, caps))
2149 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_IN_SETCAPS);
2151 GST_CAT_DEBUG (GST_CAT_CAPS, "pad %s:%s was dispatching",
2152 GST_DEBUG_PAD_NAME (pad));
2156 gst_caps_replace (&GST_PAD_CAPS (pad), caps);
2157 GST_CAT_DEBUG (GST_CAT_CAPS, "%s:%s caps %" GST_PTR_FORMAT,
2158 GST_DEBUG_PAD_NAME (pad), caps);
2161 g_object_notify (G_OBJECT (pad), "caps");
2168 gst_caps_replace (&GST_PAD_CAPS (pad), caps);
2169 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2170 "caps %" GST_PTR_FORMAT " same as existing, updating ptr only", caps);
2177 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_IN_SETCAPS);
2178 GST_CAT_DEBUG (GST_CAT_CAPS,
2179 "pad %s:%s, caps %" GST_PTR_FORMAT " could not be set",
2180 GST_DEBUG_PAD_NAME (pad), caps);
2188 gst_pad_configure_sink (GstPad * pad, GstCaps * caps)
2190 GstPadAcceptCapsFunction acceptcaps;
2191 GstPadSetCapsFunction setcaps;
2194 acceptcaps = GST_PAD_ACCEPTCAPSFUNC (pad);
2195 setcaps = GST_PAD_SETCAPSFUNC (pad);
2197 /* See if pad accepts the caps, by calling acceptcaps, only
2198 * needed if no setcaps function */
2199 if (setcaps == NULL && acceptcaps != NULL) {
2200 if (!acceptcaps (pad, caps))
2203 /* set caps on pad if call succeeds */
2204 res = gst_pad_set_caps (pad, caps);
2205 /* no need to unref the caps here, set_caps takes a ref and
2206 * our ref goes away when we leave this function. */
2212 GST_CAT_DEBUG (GST_CAT_CAPS, "caps %" GST_PTR_FORMAT " not accepted", caps);
2217 /* returns TRUE if the src pad could be configured to accept the given caps */
2219 gst_pad_configure_src (GstPad * pad, GstCaps * caps)
2221 GstPadAcceptCapsFunction acceptcaps;
2222 GstPadSetCapsFunction setcaps;
2225 acceptcaps = GST_PAD_ACCEPTCAPSFUNC (pad);
2226 setcaps = GST_PAD_SETCAPSFUNC (pad);
2228 /* See if pad accepts the caps, by calling acceptcaps, only
2229 * needed if no setcaps function */
2230 if (setcaps == NULL && acceptcaps != NULL) {
2231 if (!acceptcaps (pad, caps))
2234 /* set caps on pad if call succeeds */
2235 res = gst_pad_set_caps (pad, caps);
2236 /* no need to unref the caps here, set_caps takes a ref and
2237 * our ref goes away when we leave this function. */
2243 GST_CAT_DEBUG (GST_CAT_CAPS, "caps %" GST_PTR_FORMAT " not accepted", caps);
2249 * gst_pad_get_pad_template_caps:
2250 * @pad: a #GstPad to get the template capabilities from.
2252 * Gets the capabilities for @pad's template.
2254 * Returns: the #GstCaps of this pad template. If you intend to keep a reference
2255 * on the caps, make a copy (see gst_caps_copy ()).
2258 gst_pad_get_pad_template_caps (GstPad * pad)
2260 static GstStaticCaps anycaps = GST_STATIC_CAPS ("ANY");
2262 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2264 if (GST_PAD_PAD_TEMPLATE (pad))
2265 return GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (pad));
2267 return gst_static_caps_get (&anycaps);
2273 * @pad: a #GstPad to get the peer of.
2275 * Gets the peer of @pad. This function refs the peer pad so
2276 * you need to unref it after use.
2278 * Returns: the peer #GstPad. Unref after usage.
2283 gst_pad_get_peer (GstPad * pad)
2287 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2290 result = GST_PAD_PEER (pad);
2292 gst_object_ref (result);
2299 * gst_pad_get_allowed_caps:
2300 * @srcpad: a #GstPad, it must a a source pad.
2302 * Gets the capabilities of the allowed media types that can flow through
2303 * @srcpad and its peer. The pad must be a source pad.
2304 * The caller must free the resulting caps.
2306 * Returns: the allowed #GstCaps of the pad link. Free the caps when
2307 * you no longer need it. This function returns NULL when the @srcpad has no
2313 gst_pad_get_allowed_caps (GstPad * srcpad)
2320 g_return_val_if_fail (GST_IS_PAD (srcpad), NULL);
2321 g_return_val_if_fail (GST_PAD_IS_SRC (srcpad), NULL);
2325 peer = GST_PAD_PEER (srcpad);
2326 if (G_UNLIKELY (peer == NULL))
2329 GST_CAT_DEBUG (GST_CAT_PROPERTIES, "%s:%s: getting allowed caps",
2330 GST_DEBUG_PAD_NAME (srcpad));
2332 gst_object_ref (peer);
2333 GST_UNLOCK (srcpad);
2334 mycaps = gst_pad_get_caps (srcpad);
2336 peercaps = gst_pad_get_caps (peer);
2337 gst_object_unref (peer);
2339 caps = gst_caps_intersect (mycaps, peercaps);
2340 gst_caps_unref (peercaps);
2341 gst_caps_unref (mycaps);
2343 GST_CAT_DEBUG (GST_CAT_CAPS, "allowed caps %" GST_PTR_FORMAT, caps);
2349 GST_CAT_DEBUG (GST_CAT_PROPERTIES, "%s:%s: no peer",
2350 GST_DEBUG_PAD_NAME (srcpad));
2351 GST_UNLOCK (srcpad);
2358 * gst_pad_get_negotiated_caps:
2361 * Gets the capabilities of the media type that currently flows through @pad
2364 * This function can be used on both src and sinkpads. Note that srcpads are
2365 * always negotiated before sinkpads so it is possible that the negotiated caps
2366 * on the srcpad do not match the negotiated caps of the peer.
2368 * Returns: the negotiated #GstCaps of the pad link. Free the caps when
2369 * you no longer need it. This function returns NULL when the @pad has no
2370 * peer or is not negotiated yet.
2375 gst_pad_get_negotiated_caps (GstPad * pad)
2380 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2384 if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
2387 GST_CAT_DEBUG (GST_CAT_PROPERTIES, "%s:%s: getting negotiated caps",
2388 GST_DEBUG_PAD_NAME (pad));
2390 caps = GST_PAD_CAPS (pad);
2392 gst_caps_ref (caps);
2395 GST_CAT_DEBUG (GST_CAT_CAPS, "negotiated caps %" GST_PTR_FORMAT, caps);
2401 GST_CAT_DEBUG (GST_CAT_PROPERTIES, "%s:%s: no peer",
2402 GST_DEBUG_PAD_NAME (pad));
2410 * gst_pad_alloc_buffer:
2411 * @pad: a source #GstPad
2412 * @offset: the offset of the new buffer in the stream
2413 * @size: the size of the new buffer
2414 * @caps: the caps of the new buffer
2415 * @buf: a newly allocated buffer
2417 * Allocates a new, empty buffer optimized to push to pad @pad. This
2418 * function only works if @pad is a source pad and has a peer.
2420 * You need to check the caps of the buffer after performing this
2421 * function and renegotiate to the format if needed.
2423 * A new, empty #GstBuffer will be put in the @buf argument.
2425 * Returns: a result code indicating success of the operation. Any
2426 * result code other than GST_FLOW_OK is an error and @buf should
2428 * An error can occur if the pad is not connected or when the downstream
2429 * peer elements cannot provide an acceptable buffer.
2434 gst_pad_alloc_buffer (GstPad * pad, guint64 offset, gint size, GstCaps * caps,
2439 GstPadBufferAllocFunction bufferallocfunc;
2440 gboolean caps_changed;
2442 g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
2443 g_return_val_if_fail (GST_PAD_IS_SRC (pad), GST_FLOW_ERROR);
2444 g_return_val_if_fail (buf != NULL, GST_FLOW_ERROR);
2447 while (G_UNLIKELY (GST_PAD_IS_BLOCKED (pad)))
2448 if ((ret = handle_pad_block (pad)) != GST_FLOW_OK)
2451 if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
2454 gst_object_ref (peer);
2457 if (G_LIKELY ((bufferallocfunc = peer->bufferallocfunc) == NULL))
2461 /* when the peer is flushing we cannot give a buffer */
2462 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (peer)))
2465 if (offset == GST_BUFFER_OFFSET_NONE) {
2466 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
2467 "calling bufferallocfunc &%s (@%p) of peer pad %s:%s for size %d offset NONE",
2468 GST_DEBUG_FUNCPTR_NAME (bufferallocfunc),
2469 &bufferallocfunc, GST_DEBUG_PAD_NAME (peer), size);
2471 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
2472 "calling bufferallocfunc &%s (@%p) of peer pad %s:%s for size %d offset %"
2473 G_GUINT64_FORMAT, GST_DEBUG_FUNCPTR_NAME (bufferallocfunc),
2474 &bufferallocfunc, GST_DEBUG_PAD_NAME (peer), size, offset);
2478 ret = bufferallocfunc (peer, offset, size, caps, buf);
2480 if (G_UNLIKELY (ret != GST_FLOW_OK))
2482 if (G_UNLIKELY (*buf == NULL))
2485 /* If the buffer alloc function didn't set up the caps like it should,
2487 if (caps && (GST_BUFFER_CAPS (*buf) == NULL)) {
2488 GST_WARNING ("Buffer allocation function for pad % " GST_PTR_FORMAT
2489 " did not set up caps. Setting", peer);
2491 gst_buffer_set_caps (*buf, caps);
2495 gst_object_unref (peer);
2497 /* FIXME, move capnego this into a base class? */
2498 caps = GST_BUFFER_CAPS (*buf);
2499 caps_changed = caps && caps != GST_PAD_CAPS (pad);
2500 /* we got a new datatype on the pad, see if it can handle it */
2501 if (G_UNLIKELY (caps_changed)) {
2502 GST_DEBUG ("caps changed to %" GST_PTR_FORMAT, caps);
2503 if (G_UNLIKELY (!gst_pad_configure_src (pad, caps)))
2504 goto not_negotiated;
2510 GST_CAT_DEBUG (GST_CAT_PADS, "%s:%s pad block stopped by flush",
2511 GST_DEBUG_PAD_NAME (pad));
2517 /* pad has no peer */
2518 GST_CAT_DEBUG (GST_CAT_PADS,
2519 "%s:%s called bufferallocfunc but had no peer",
2520 GST_DEBUG_PAD_NAME (pad));
2522 return GST_FLOW_NOT_LINKED;
2526 /* peer was flushing */
2528 gst_object_unref (peer);
2529 GST_CAT_DEBUG (GST_CAT_PADS,
2530 "%s:%s called bufferallocfunc but peer was flushing",
2531 GST_DEBUG_PAD_NAME (pad));
2532 return GST_FLOW_WRONG_STATE;
2534 /* fallback case, allocate a buffer of our own, add pad caps. */
2537 GST_CAT_DEBUG (GST_CAT_PADS,
2538 "%s:%s fallback buffer alloc", GST_DEBUG_PAD_NAME (pad));
2539 *buf = gst_buffer_new_and_alloc (size);
2540 GST_BUFFER_OFFSET (*buf) = offset;
2541 gst_buffer_set_caps (*buf, caps);
2549 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
2550 "alloc function returned unacceptable buffer");
2551 return GST_FLOW_NOT_NEGOTIATED;
2555 gst_object_unref (peer);
2556 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
2557 "alloc function returned error %s", gst_flow_get_name (ret));
2563 * gst_pad_get_internal_links_default:
2564 * @pad: the #GstPad to get the internal links of.
2566 * Gets a list of pads to which the given pad is linked to
2567 * inside of the parent element.
2568 * This is the default handler, and thus returns a list of all of the
2569 * pads inside the parent element with opposite direction.
2570 * The caller must free this list after use.
2572 * Returns: a newly allocated #GList of pads, or NULL if the pad has no parent.
2577 gst_pad_get_internal_links_default (GstPad * pad)
2582 GstPadDirection direction;
2584 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2586 direction = pad->direction;
2588 parent = GST_PAD_PARENT (pad);
2592 parent_pads = parent->pads;
2594 while (parent_pads) {
2595 GstPad *parent_pad = GST_PAD_CAST (parent_pads->data);
2597 if (parent_pad->direction != direction) {
2598 res = g_list_prepend (res, parent_pad);
2601 parent_pads = g_list_next (parent_pads);
2608 * gst_pad_get_internal_links:
2609 * @pad: the #GstPad to get the internal links of.
2611 * Gets a list of pads to which the given pad is linked to
2612 * inside of the parent element.
2613 * The caller must free this list after use.
2615 * Returns: a newly allocated #GList of pads.
2620 gst_pad_get_internal_links (GstPad * pad)
2624 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2626 if (GST_PAD_INTLINKFUNC (pad))
2627 res = GST_PAD_INTLINKFUNC (pad) (pad);
2634 gst_pad_event_default_dispatch (GstPad * pad, GstEvent * event)
2639 GST_INFO_OBJECT (pad, "Sending event %p to all internally linked pads",
2642 result = (GST_PAD_DIRECTION (pad) == GST_PAD_SINK);
2644 orig = pads = gst_pad_get_internal_links (pad);
2647 GstPad *eventpad = GST_PAD_CAST (pads->data);
2649 pads = g_list_next (pads);
2651 if (GST_PAD_DIRECTION (eventpad) == GST_PAD_SRC) {
2652 /* for each pad we send to, we should ref the event; it's up
2653 * to downstream to unref again when handled. */
2654 GST_LOG_OBJECT (pad, "Reffing and sending event %p (%s) to %s:%s",
2655 event, gst_event_type_get_name (GST_EVENT_TYPE (event)),
2656 GST_DEBUG_PAD_NAME (eventpad));
2657 gst_event_ref (event);
2658 gst_pad_push_event (eventpad, event);
2660 /* we only send the event on one pad, multi-sinkpad elements
2661 * should implement a handler */
2662 GST_LOG_OBJECT (pad, "sending event %p (%s) to one sink pad %s:%s",
2663 event, gst_event_type_get_name (GST_EVENT_TYPE (event)),
2664 GST_DEBUG_PAD_NAME (eventpad));
2665 result = gst_pad_push_event (eventpad, event);
2669 /* we handled the incoming event so we unref once */
2670 GST_LOG_OBJECT (pad, "handled event %p, unreffing", event);
2671 gst_event_unref (event);
2680 * gst_pad_event_default:
2681 * @pad: a #GstPad to call the default event handler on.
2682 * @event: the #GstEvent to handle.
2684 * Invokes the default event handler for the given pad. End-of-stream and
2685 * discontinuity events are handled specially, and then the event is sent to all
2686 * pads internally linked to @pad. Note that if there are many possible sink
2687 * pads that are internally linked to @pad, only one will be sent an event.
2688 * Multi-sinkpad elements should implement custom event handlers.
2690 * Returns: TRUE if the event was sent succesfully.
2693 gst_pad_event_default (GstPad * pad, GstEvent * event)
2695 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2696 g_return_val_if_fail (event != NULL, FALSE);
2698 switch (GST_EVENT_TYPE (event)) {
2701 GST_DEBUG_OBJECT (pad, "pausing task because of eos");
2702 gst_pad_pause_task (pad);
2708 return gst_pad_event_default_dispatch (pad, event);
2712 * gst_pad_dispatcher:
2713 * @pad: a #GstPad to dispatch.
2714 * @dispatch: the #GstDispatcherFunction to call.
2715 * @data: gpointer user data passed to the dispatcher function.
2717 * Invokes the given dispatcher function on all pads that are
2718 * internally linked to the given pad.
2719 * The GstPadDispatcherFunction should return TRUE when no further pads
2720 * need to be processed.
2722 * Returns: TRUE if one of the dispatcher functions returned TRUE.
2725 gst_pad_dispatcher (GstPad * pad, GstPadDispatcherFunction dispatch,
2728 gboolean res = FALSE;
2729 GList *int_pads, *orig;
2731 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2732 g_return_val_if_fail (dispatch != NULL, FALSE);
2734 orig = int_pads = gst_pad_get_internal_links (pad);
2737 GstPad *int_pad = GST_PAD_CAST (int_pads->data);
2738 GstPad *int_peer = GST_PAD_PEER (int_pad);
2741 res = dispatch (int_peer, data);
2745 int_pads = g_list_next (int_pads);
2755 * @pad: a #GstPad to invoke the default query on.
2756 * @query: the #GstQuery to perform.
2758 * Dispatches a query to a pad. The query should have been allocated by the
2759 * caller via one of the type-specific allocation functions in gstquery.h. The
2760 * element is responsible for filling the query with an appropriate response,
2761 * which should then be parsed with a type-specific query parsing function.
2763 * Again, the caller is responsible for both the allocation and deallocation of
2764 * the query structure.
2766 * Returns: TRUE if the query could be performed.
2769 gst_pad_query (GstPad * pad, GstQuery * query)
2771 GstPadQueryFunction func;
2773 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2774 g_return_val_if_fail (GST_IS_QUERY (query), FALSE);
2776 GST_DEBUG ("sending query %p to pad %s:%s", query, GST_DEBUG_PAD_NAME (pad));
2778 if ((func = GST_PAD_QUERYFUNC (pad)) == NULL)
2781 return func (pad, query);
2785 GST_DEBUG ("pad had no query function");
2791 * gst_pad_query_default:
2792 * @pad: a #GstPad to call the default query handler on.
2793 * @query: the #GstQuery to handle.
2795 * Invokes the default query handler for the given pad.
2796 * The query is sent to all pads internally linked to @pad. Note that
2797 * if there are many possible sink pads that are internally linked to
2798 * @pad, only one will be sent the query.
2799 * Multi-sinkpad elements should implement custom query handlers.
2801 * Returns: TRUE if the query was performed succesfully.
2804 gst_pad_query_default (GstPad * pad, GstQuery * query)
2806 switch (GST_QUERY_TYPE (query)) {
2807 case GST_QUERY_POSITION:
2808 case GST_QUERY_SEEKING:
2809 case GST_QUERY_FORMATS:
2810 case GST_QUERY_LATENCY:
2811 case GST_QUERY_JITTER:
2812 case GST_QUERY_RATE:
2813 case GST_QUERY_CONVERT:
2815 return gst_pad_dispatcher
2816 (pad, (GstPadDispatcherFunction) gst_pad_query, query);
2820 #ifndef GST_DISABLE_LOADSAVE
2821 /* FIXME: why isn't this on a GstElement ? */
2823 * gst_pad_load_and_link:
2824 * @self: an #xmlNodePtr to read the description from.
2825 * @parent: the #GstObject element that owns the pad.
2827 * Reads the pad definition from the XML node and links the given pad
2828 * in the element to a pad of an element up in the hierarchy.
2831 gst_pad_load_and_link (xmlNodePtr self, GstObject * parent)
2833 xmlNodePtr field = self->xmlChildrenNode;
2834 GstPad *pad = NULL, *targetpad;
2838 GstObject *grandparent;
2842 if (!strcmp ((char *) field->name, "name")) {
2843 name = (gchar *) xmlNodeGetContent (field);
2844 pad = gst_element_get_pad (GST_ELEMENT (parent), name);
2846 } else if (!strcmp ((char *) field->name, "peer")) {
2847 peer = (gchar *) xmlNodeGetContent (field);
2849 field = field->next;
2851 g_return_if_fail (pad != NULL);
2856 split = g_strsplit (peer, ".", 2);
2858 if (split[0] == NULL || split[1] == NULL) {
2859 GST_CAT_DEBUG (GST_CAT_XML,
2860 "Could not parse peer '%s' for pad %s:%s, leaving unlinked",
2861 peer, GST_DEBUG_PAD_NAME (pad));
2868 g_return_if_fail (split[0] != NULL);
2869 g_return_if_fail (split[1] != NULL);
2871 grandparent = gst_object_get_parent (parent);
2873 if (grandparent && GST_IS_BIN (grandparent)) {
2874 target = gst_bin_get_by_name_recurse_up (GST_BIN (grandparent), split[0]);
2881 targetpad = gst_element_get_pad (target, split[1]);
2883 if (targetpad == NULL)
2886 gst_pad_link (pad, targetpad);
2893 * gst_pad_save_thyself:
2894 * @pad: a #GstPad to save.
2895 * @parent: the parent #xmlNodePtr to save the description in.
2897 * Saves the pad into an xml representation.
2899 * Returns: the #xmlNodePtr representation of the pad.
2902 gst_pad_save_thyself (GstObject * object, xmlNodePtr parent)
2907 g_return_val_if_fail (GST_IS_PAD (object), NULL);
2909 pad = GST_PAD (object);
2911 xmlNewChild (parent, NULL, (xmlChar *) "name",
2912 (xmlChar *) GST_PAD_NAME (pad));
2913 if (GST_PAD_PEER (pad) != NULL) {
2916 peer = GST_PAD_PEER (pad);
2917 /* first check to see if the peer's parent's parent is the same */
2918 /* we just save it off */
2919 content = g_strdup_printf ("%s.%s",
2920 GST_OBJECT_NAME (GST_PAD_PARENT (peer)), GST_PAD_NAME (peer));
2921 xmlNewChild (parent, NULL, (xmlChar *) "peer", (xmlChar *) content);
2924 xmlNewChild (parent, NULL, (xmlChar *) "peer", NULL);
2931 * gst_ghost_pad_save_thyself:
2932 * @pad: a ghost #GstPad to save.
2933 * @parent: the parent #xmlNodePtr to save the description in.
2935 * Saves the ghost pad into an xml representation.
2937 * Returns: the #xmlNodePtr representation of the pad.
2940 gst_ghost_pad_save_thyself (GstPad * pad, xmlNodePtr parent)
2944 g_return_val_if_fail (GST_IS_GHOST_PAD (pad), NULL);
2946 self = xmlNewChild (parent, NULL, (xmlChar *) "ghostpad", NULL);
2947 xmlNewChild (self, NULL, (xmlChar *) "name", (xmlChar *) GST_PAD_NAME (pad));
2948 xmlNewChild (self, NULL, (xmlChar *) "parent",
2949 (xmlChar *) GST_OBJECT_NAME (GST_PAD_PARENT (pad)));
2951 /* FIXME FIXME FIXME! */
2956 #endif /* GST_DISABLE_LOADSAVE */
2959 * should be called with pad lock held
2963 static GstFlowReturn
2964 handle_pad_block (GstPad * pad)
2966 GstPadBlockCallback callback;
2968 GstFlowReturn ret = GST_FLOW_OK;
2970 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
2971 "signal block taken on pad %s:%s", GST_DEBUG_PAD_NAME (pad));
2973 /* need to grab extra ref for the callbacks */
2974 gst_object_ref (pad);
2976 callback = pad->block_callback;
2978 user_data = pad->block_data;
2980 callback (pad, TRUE, user_data);
2983 GST_PAD_BLOCK_SIGNAL (pad);
2986 while (GST_PAD_IS_BLOCKED (pad)) {
2987 if (GST_PAD_IS_FLUSHING (pad))
2989 GST_PAD_BLOCK_WAIT (pad);
2990 if (GST_PAD_IS_FLUSHING (pad))
2994 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "got unblocked");
2996 callback = pad->block_callback;
2998 user_data = pad->block_data;
3000 callback (pad, FALSE, user_data);
3003 GST_PAD_BLOCK_SIGNAL (pad);
3006 gst_object_unref (pad);
3012 gst_object_unref (pad);
3013 return GST_FLOW_WRONG_STATE;
3017 /**********************************************************************
3018 * Data passing functions
3022 gst_pad_emit_have_data_signal (GstPad * pad, GstMiniObject * obj)
3025 GValue args[2] = { {0}, {0} };
3030 g_value_init (&ret, G_TYPE_BOOLEAN);
3031 g_value_set_boolean (&ret, TRUE);
3032 g_value_init (&args[0], GST_TYPE_PAD);
3033 g_value_set_object (&args[0], pad);
3034 g_value_init (&args[1], GST_TYPE_MINI_OBJECT); // G_TYPE_POINTER);
3035 gst_value_set_mini_object (&args[1], obj);
3037 if (GST_IS_EVENT (obj))
3038 detail = event_quark;
3040 detail = buffer_quark;
3043 g_signal_emitv (args, gst_pad_signals[PAD_HAVE_DATA], detail, &ret);
3044 res = g_value_get_boolean (&ret);
3047 g_value_unset (&ret);
3048 g_value_unset (&args[0]);
3049 g_value_unset (&args[1]);
3056 * @pad: a sink #GstPad.
3057 * @buffer: the #GstBuffer to send.
3059 * Chain a buffer to @pad.
3061 * Returns: a #GstFlowReturn from the pad.
3066 gst_pad_chain (GstPad * pad, GstBuffer * buffer)
3069 gboolean caps_changed;
3070 GstPadChainFunction chainfunc;
3072 gboolean emit_signal;
3074 g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
3075 g_return_val_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SINK,
3077 g_return_val_if_fail (buffer != NULL, GST_FLOW_ERROR);
3078 g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
3080 GST_STREAM_LOCK (pad);
3083 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
3086 caps = GST_BUFFER_CAPS (buffer);
3087 caps_changed = caps && caps != GST_PAD_CAPS (pad);
3089 emit_signal = GST_PAD_DO_BUFFER_SIGNALS (pad) > 0;
3092 /* see if the signal should be emited, we emit before caps nego as
3093 * we might drop the buffer and do capsnego for nothing. */
3094 if (G_UNLIKELY (emit_signal)) {
3095 if (!gst_pad_emit_have_data_signal (pad, GST_MINI_OBJECT (buffer)))
3099 /* we got a new datatype on the pad, see if it can handle it */
3100 if (G_UNLIKELY (caps_changed)) {
3101 GST_DEBUG ("caps changed to %" GST_PTR_FORMAT, caps);
3102 if (G_UNLIKELY (!gst_pad_configure_sink (pad, caps)))
3103 goto not_negotiated;
3106 /* NOTE: we read the chainfunc unlocked.
3107 * we cannot hold the lock for the pad so we might send
3108 * the data to the wrong function. This is not really a
3109 * problem since functions are assigned at creation time
3110 * and don't change that often... */
3111 if (G_UNLIKELY ((chainfunc = GST_PAD_CHAINFUNC (pad)) == NULL))
3114 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3115 "calling chainfunction &%s of pad %s:%s",
3116 GST_DEBUG_FUNCPTR_NAME (chainfunc), GST_DEBUG_PAD_NAME (pad));
3118 ret = chainfunc (pad, buffer);
3120 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3121 "called chainfunction &%s of pad %s:%s, returned %s",
3122 GST_DEBUG_FUNCPTR_NAME (chainfunc), GST_DEBUG_PAD_NAME (pad),
3123 gst_flow_get_name (ret));
3125 GST_STREAM_UNLOCK (pad);
3132 gst_buffer_unref (buffer);
3133 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3134 "pushing, but pad was flushing");
3136 GST_STREAM_UNLOCK (pad);
3137 return GST_FLOW_WRONG_STATE;
3141 gst_buffer_unref (buffer);
3142 GST_DEBUG_OBJECT (pad, "Dropping buffer due to FALSE probe return");
3143 GST_STREAM_UNLOCK (pad);
3148 gst_buffer_unref (buffer);
3149 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3150 "pushing buffer but pad did not accept");
3151 GST_STREAM_UNLOCK (pad);
3152 return GST_FLOW_NOT_NEGOTIATED;
3156 gst_buffer_unref (buffer);
3157 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3158 "pushing, but not chainhandler");
3159 GST_ELEMENT_ERROR (GST_PAD_PARENT (pad), CORE, PAD, (NULL),
3160 ("push on pad %s:%s but it has no chainfunction",
3161 GST_DEBUG_PAD_NAME (pad)));
3162 GST_STREAM_UNLOCK (pad);
3163 return GST_FLOW_ERROR;
3169 * @pad: a source #GstPad.
3170 * @buffer: the #GstBuffer to push.
3172 * Pushes a buffer to the peer of @pad.
3173 * buffer probes will be triggered before the buffer gets pushed.
3175 * Returns: a #GstFlowReturn from the peer pad.
3180 gst_pad_push (GstPad * pad, GstBuffer * buffer)
3185 g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
3186 g_return_val_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SRC, GST_FLOW_ERROR);
3187 g_return_val_if_fail (buffer != NULL, GST_FLOW_ERROR);
3188 g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
3192 /* FIXME: this check can go away; pad_set_blocked could be implemented with
3193 * probes completely */
3194 while (G_UNLIKELY (GST_PAD_IS_BLOCKED (pad)))
3195 if ((ret = handle_pad_block (pad)) != GST_FLOW_OK)
3198 /* we emit signals on the pad arg, the peer will have a chance to
3199 * emit in the _chain() function */
3200 if (G_UNLIKELY (GST_PAD_DO_BUFFER_SIGNALS (pad) > 0)) {
3201 /* unlock before emitting */
3204 /* if the signal handler returned FALSE, it means we should just drop the
3206 if (!gst_pad_emit_have_data_signal (pad, GST_MINI_OBJECT (buffer)))
3212 if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
3214 gst_object_ref (peer);
3217 ret = gst_pad_chain (peer, buffer);
3219 gst_object_unref (peer);
3223 /* ERROR recovery here */
3226 gst_buffer_unref (buffer);
3227 GST_DEBUG_OBJECT (pad, "pad block stopped by flush");
3233 gst_buffer_unref (buffer);
3234 GST_DEBUG_OBJECT (pad, "Dropping buffer due to FALSE probe return");
3239 gst_buffer_unref (buffer);
3240 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3241 "pushing, but it was not linked");
3243 return GST_FLOW_NOT_LINKED;
3248 * gst_pad_check_pull_range:
3249 * @pad: a sink #GstPad.
3251 * Checks if a #gst_pad_pull_range() can be performed on the peer
3252 * source pad. This function is used by plugins that want to check
3253 * if they can use random access on the peer source pad.
3255 * The peer sourcepad can implement a custom #GstPadCheckGetRangeFunction
3256 * if it needs to perform some logic to determine if pull_range is
3259 * Returns: a gboolean with the result.
3264 gst_pad_check_pull_range (GstPad * pad)
3268 GstPadCheckGetRangeFunction checkgetrangefunc;
3270 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3273 if (GST_PAD_DIRECTION (pad) != GST_PAD_SINK)
3274 goto wrong_direction;
3276 if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
3279 gst_object_ref (peer);
3282 /* see note in above function */
3283 if (G_LIKELY ((checkgetrangefunc = peer->checkgetrangefunc) == NULL)) {
3284 /* FIXME, kindoff ghetto */
3285 ret = GST_PAD_GETRANGEFUNC (peer) != NULL;
3287 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3288 "calling checkgetrangefunc %s of peer pad %s:%s",
3289 GST_DEBUG_FUNCPTR_NAME (checkgetrangefunc), GST_DEBUG_PAD_NAME (peer));
3291 ret = checkgetrangefunc (peer);
3294 gst_object_unref (peer);
3298 /* ERROR recovery here */
3306 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3307 "checking pull range, but it was not linked");
3314 * gst_pad_get_range:
3315 * @pad: a src #GstPad.
3316 * @offset: The start offset of the buffer
3317 * @size: The length of the buffer
3318 * @buffer: a pointer to hold the #GstBuffer.
3320 * Calls the getrange function of @pad.
3322 * Returns: a #GstFlowReturn from the pad.
3327 gst_pad_get_range (GstPad * pad, guint64 offset, guint size,
3328 GstBuffer ** buffer)
3331 GstPadGetRangeFunction getrangefunc;
3332 gboolean emit_signal;
3334 g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
3335 g_return_val_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SRC, GST_FLOW_ERROR);
3336 g_return_val_if_fail (buffer != NULL, GST_FLOW_ERROR);
3338 GST_STREAM_LOCK (pad);
3341 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
3344 emit_signal = GST_PAD_DO_BUFFER_SIGNALS (pad) > 0;
3347 if (G_UNLIKELY ((getrangefunc = GST_PAD_GETRANGEFUNC (pad)) == NULL))
3350 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3351 "calling getrangefunc %s of peer pad %s:%s, offset %"
3352 G_GUINT64_FORMAT ", size %u",
3353 GST_DEBUG_FUNCPTR_NAME (getrangefunc), GST_DEBUG_PAD_NAME (pad),
3356 ret = getrangefunc (pad, offset, size, buffer);
3358 /* can only fire the signal if we have a valid buffer */
3359 if (G_UNLIKELY (emit_signal) && (ret == GST_FLOW_OK)) {
3360 if (!gst_pad_emit_have_data_signal (pad, GST_MINI_OBJECT (*buffer)))
3364 GST_STREAM_UNLOCK (pad);
3371 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3372 "pulling range, but pad was flushing");
3374 GST_STREAM_UNLOCK (pad);
3375 return GST_FLOW_WRONG_STATE;
3379 GST_ELEMENT_ERROR (GST_PAD_PARENT (pad), CORE, PAD, (NULL),
3380 ("pullrange on pad %s:%s but it has no getrangefunction",
3381 GST_DEBUG_PAD_NAME (pad)));
3382 GST_STREAM_UNLOCK (pad);
3383 return GST_FLOW_ERROR;
3387 GST_DEBUG ("Dropping data after FALSE probe return");
3388 GST_STREAM_UNLOCK (pad);
3389 gst_buffer_unref (*buffer);
3391 return GST_FLOW_UNEXPECTED;
3397 * gst_pad_pull_range:
3398 * @pad: a sink #GstPad.
3399 * @offset: The start offset of the buffer
3400 * @size: The length of the buffer
3401 * @buffer: a pointer to hold the #GstBuffer.
3403 * Pulls a buffer from the peer pad. @pad must be a linked
3406 * Returns: a #GstFlowReturn from the peer pad.
3411 gst_pad_pull_range (GstPad * pad, guint64 offset, guint size,
3412 GstBuffer ** buffer)
3416 gboolean emit_signal;
3418 g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
3419 g_return_val_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SINK,
3421 g_return_val_if_fail (buffer != NULL, GST_FLOW_ERROR);
3425 while (G_UNLIKELY (GST_PAD_IS_BLOCKED (pad)))
3426 handle_pad_block (pad);
3428 if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
3431 /* signal emision for the pad, peer has chance to emit when
3432 * we call _get_range() */
3433 emit_signal = GST_PAD_DO_BUFFER_SIGNALS (pad) > 0;
3435 gst_object_ref (peer);
3438 ret = gst_pad_get_range (peer, offset, size, buffer);
3440 gst_object_unref (peer);
3442 /* can only fire the signal if we have a valid buffer */
3443 if (G_UNLIKELY (emit_signal) && (ret == GST_FLOW_OK)) {
3444 if (!gst_pad_emit_have_data_signal (pad, GST_MINI_OBJECT (*buffer)))
3449 /* ERROR recovery here */
3452 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3453 "pulling range, but it was not linked");
3455 return GST_FLOW_NOT_LINKED;
3459 GST_DEBUG ("Dropping data after FALSE probe return");
3460 gst_buffer_unref (*buffer);
3462 return GST_FLOW_UNEXPECTED;
3467 * gst_pad_push_event:
3468 * @pad: a #GstPad to push the event to.
3469 * @event: the #GstEvent to send to the pad.
3471 * Sends the event to the peer of the given pad. This function is
3472 * mainly used by elements to send events to their peer
3475 * Returns: TRUE if the event was handled.
3480 gst_pad_push_event (GstPad * pad, GstEvent * event)
3485 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3486 g_return_val_if_fail (event != NULL, FALSE);
3487 g_return_val_if_fail (GST_IS_EVENT (event), FALSE);
3490 switch (GST_EVENT_TYPE (event)) {
3491 case GST_EVENT_FLUSH_START:
3492 GST_PAD_SET_FLUSHING (pad);
3494 case GST_EVENT_FLUSH_STOP:
3495 GST_PAD_UNSET_FLUSHING (pad);
3501 if (G_UNLIKELY (GST_PAD_IS_BLOCKED (pad))) {
3502 if (GST_EVENT_TYPE (event) == GST_EVENT_FLUSH_START) {
3503 GST_PAD_BLOCK_SIGNAL (pad);
3507 if (G_UNLIKELY (GST_PAD_DO_EVENT_SIGNALS (pad) > 0)) {
3510 if (!gst_pad_emit_have_data_signal (pad, GST_MINI_OBJECT (event)))
3515 peerpad = GST_PAD_PEER (pad);
3516 if (peerpad == NULL)
3519 GST_LOG_OBJECT (peerpad, "sending event on peerpad");
3520 gst_object_ref (peerpad);
3523 result = gst_pad_send_event (peerpad, event);
3525 gst_object_unref (peerpad);
3526 GST_LOG_OBJECT (peerpad, "sent event on peerpad");
3530 /* ERROR handling */
3533 GST_DEBUG_OBJECT (pad, "Dropping event after FALSE probe return");
3534 gst_event_unref (event);
3539 gst_event_unref (event);
3546 * gst_pad_send_event:
3547 * @pad: a #GstPad to send the event to.
3548 * @event: the #GstEvent to send to the pad.
3550 * Sends the event to the pad. This function can be used
3551 * by applications to send events in the pipeline.
3553 * If @pad is a source pad, @event should be an upstream event. If @pad is a
3554 * sink pad, @event should be a downstream event. For example, you would not
3555 * send a #GST_EVENT_EOS on a src pad; EOS events only propagate downstream.
3556 * Furthermore, some downstream events have to be serialized with data flow,
3557 * like EOS, while some can travel out-of-band, like #GST_EVENT_FLUSH_START. If
3558 * the event needs to be serialized with data flow, this function will take the
3559 * pad's stream lock while calling its event function.
3561 * To find out whether an event type is upstream, downstream, or downstream and
3562 * serialized, see #GstEventTypeFlags, gst_event_type_get_flags(),
3563 * #GST_EVENT_IS_UPSTREAM, #GST_EVENT_IS_DOWNSTREAM, and
3564 * #GST_EVENT_IS_SERIALIZED. Note that in practice that an application or plugin
3565 * doesn't need to bother itself with this information; the core handles all
3566 * necessary locks and checks.
3568 * Returns: TRUE if the event was handled.
3571 gst_pad_send_event (GstPad * pad, GstEvent * event)
3573 gboolean result = FALSE;
3574 GstPadEventFunction eventfunc;
3575 gboolean emit_signal, serialized;
3577 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3578 g_return_val_if_fail (event != NULL, FALSE);
3581 if (GST_PAD_IS_SINK (pad) && !GST_EVENT_IS_DOWNSTREAM (event))
3582 goto wrong_direction;
3583 if (GST_PAD_IS_SRC (pad) && !GST_EVENT_IS_UPSTREAM (event))
3584 goto wrong_direction;
3586 if (GST_EVENT_SRC (event) == NULL) {
3587 GST_LOG_OBJECT (pad, "event had no source, setting pad as event source");
3588 GST_EVENT_SRC (event) = gst_object_ref (pad);
3591 switch (GST_EVENT_TYPE (event)) {
3592 case GST_EVENT_FLUSH_START:
3593 GST_CAT_DEBUG (GST_CAT_EVENT,
3594 "have event type %d (FLUSH_START) on pad %s:%s",
3595 GST_EVENT_TYPE (event), GST_DEBUG_PAD_NAME (pad));
3597 /* can't even accept a flush begin event when flushing */
3598 if (GST_PAD_IS_FLUSHING (pad))
3600 GST_PAD_SET_FLUSHING (pad);
3601 GST_CAT_DEBUG (GST_CAT_EVENT, "set flush flag");
3603 case GST_EVENT_FLUSH_STOP:
3604 GST_PAD_UNSET_FLUSHING (pad);
3605 GST_CAT_DEBUG (GST_CAT_EVENT, "cleared flush flag");
3608 GST_CAT_DEBUG (GST_CAT_EVENT, "have event type %s on pad %s:%s",
3609 gst_event_type_get_name (GST_EVENT_TYPE (event)),
3610 GST_DEBUG_PAD_NAME (pad));
3612 if (GST_PAD_IS_FLUSHING (pad))
3617 if ((eventfunc = GST_PAD_EVENTFUNC (pad)) == NULL)
3620 emit_signal = GST_PAD_DO_EVENT_SIGNALS (pad) > 0;
3623 /* have to check if it's a sink pad, because e.g. CUSTOM_BOTH is serialized
3624 when going down but not when going up */
3625 serialized = GST_EVENT_IS_SERIALIZED (event) && GST_PAD_IS_SINK (pad);
3627 if (G_UNLIKELY (emit_signal)) {
3628 if (!gst_pad_emit_have_data_signal (pad, GST_MINI_OBJECT (event)))
3633 GST_STREAM_LOCK (pad);
3635 result = eventfunc (GST_PAD_CAST (pad), event);
3638 GST_STREAM_UNLOCK (pad);
3642 /* ERROR handling */
3645 g_warning ("pad %s:%s sending event in wrong direction",
3646 GST_DEBUG_PAD_NAME (pad));
3648 gst_event_unref (event);
3653 g_warning ("pad %s:%s has no event handler, file a bug.",
3654 GST_DEBUG_PAD_NAME (pad));
3656 gst_event_unref (event);
3662 GST_CAT_INFO (GST_CAT_EVENT, "Received event on flushing pad. Discarding");
3663 gst_event_unref (event);
3668 GST_DEBUG ("Dropping event after FALSE probe return");
3669 gst_event_unref (event);
3675 * gst_pad_set_element_private:
3676 * @pad: the #GstPad to set the private data of.
3677 * @priv: The private data to attach to the pad.
3679 * Set the given private data gpointer on the pad.
3680 * This function can only be used by the element that owns the pad.
3683 gst_pad_set_element_private (GstPad * pad, gpointer priv)
3685 pad->element_private = priv;
3689 * gst_pad_get_element_private:
3690 * @pad: the #GstPad to get the private data of.
3692 * Gets the private data of a pad.
3694 * Returns: a #gpointer to the private data.
3697 gst_pad_get_element_private (GstPad * pad)
3699 return pad->element_private;
3703 * gst_pad_start_task:
3704 * @pad: the #GstPad to start the task of
3705 * @func: the task function to call
3706 * @data: data passed to the task function
3708 * Starts a task that repeadedly calls @func with @data. This function
3709 * is nostly used in the pad activation function to start the
3710 * dataflow. This function will automatically acauire the STREAM_LOCK of
3711 * the pad before calling @func.
3713 * Returns: a TRUE if the task could be started.
3716 gst_pad_start_task (GstPad * pad, GstTaskFunction func, gpointer data)
3720 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3721 g_return_val_if_fail (func != NULL, FALSE);
3724 task = GST_PAD_TASK (pad);
3726 task = gst_task_create (func, data);
3727 gst_task_set_lock (task, GST_STREAM_GET_LOCK (pad));
3728 GST_PAD_TASK (pad) = task;
3730 gst_task_start (task);
3737 * gst_pad_pause_task:
3738 * @pad: the #GstPad to pause the task of
3740 * Pause the task of @pad. This function will also make sure that the
3741 * function executed by the task will effectively stop.
3743 * Returns: a TRUE if the task could be paused or FALSE when the pad
3747 gst_pad_pause_task (GstPad * pad)
3751 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3754 task = GST_PAD_TASK (pad);
3757 gst_task_pause (task);
3760 GST_STREAM_LOCK (pad);
3761 GST_STREAM_UNLOCK (pad);
3767 GST_DEBUG_OBJECT (pad, "pad has no task");
3774 * gst_pad_stop_task:
3775 * @pad: the #GstPad to stop the task of
3777 * Stop the task of @pad. This function will also make sure that the
3778 * function executed by the task will effectively stop if not called
3779 * from the GstTaskFunction.
3781 * This function will deadlock if called from the GstTaskFunction of
3782 * the task. Use #gst_task_pause() instead.
3784 * Regardless of whether the pad has a task, the stream lock is acquired and
3785 * released so as to ensure that streaming through this pad has finished.
3787 * Returns: a TRUE if the task could be stopped or FALSE on error.
3790 gst_pad_stop_task (GstPad * pad)
3794 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3797 task = GST_PAD_TASK (pad);
3800 GST_PAD_TASK (pad) = NULL;
3801 gst_task_stop (task);
3804 GST_STREAM_LOCK (pad);
3805 GST_STREAM_UNLOCK (pad);
3807 gst_task_join (task);
3809 gst_object_unref (task);
3817 GST_STREAM_LOCK (pad);
3818 GST_STREAM_UNLOCK (pad);