]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gstreamer0-10.git/blob - gst/gstpad.c
gststructure: early out when we know a value cannot be a subset
[glsdk/gstreamer0-10.git] / gst / gstpad.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gstpad.c: Pads for linking elements together
6  *
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.
11  *
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.
16  *
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.
21  */
22 /**
23  * SECTION:gstpad
24  * @short_description: Object contained by elements that allows links to
25  *                     other elements
26  * @see_also: #GstPadTemplate, #GstElement, #GstEvent
27  *
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.)
34  *
35  * Pads are typically created from a #GstPadTemplate with
36  * gst_pad_new_from_template().
37  *
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_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.
43  *
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.
47  *
48  * gst_pad_get_parent() will retrieve the #GstElement that owns the pad.
49  *
50  * A #GstElement creating a pad will typically use the various
51  * gst_pad_set_*_function() calls to register callbacks for various events
52  * on the pads.
53  *
54  * GstElements will use gst_pad_push() and gst_pad_pull_range() to push out
55  * or pull in a buffer.
56  *
57  * To send a #GstEvent on a pad, use gst_pad_send_event() and
58  * gst_pad_push_event().
59  *
60  * Last reviewed on 2006-07-06 (0.10.9)
61  */
63 #include "gst_private.h"
65 #include "gstpad.h"
66 #include "gstpadtemplate.h"
67 #include "gstenumtypes.h"
68 #include "gstmarshal.h"
69 #include "gstutils.h"
70 #include "gstinfo.h"
71 #include "gsterror.h"
72 #include "gstvalue.h"
73 #include "glib-compat-private.h"
75 GST_DEBUG_CATEGORY_STATIC (debug_dataflow);
76 #define GST_CAT_DEFAULT GST_CAT_PADS
78 /* Pad signals and args */
79 enum
80 {
81   PAD_LINKED,
82   PAD_UNLINKED,
83   PAD_REQUEST_LINK,
84   PAD_HAVE_DATA,
85   /* FILL ME */
86   LAST_SIGNAL
87 };
89 enum
90 {
91   PAD_PROP_0,
92   PAD_PROP_CAPS,
93   PAD_PROP_DIRECTION,
94   PAD_PROP_TEMPLATE,
95   /* FILL ME */
96 };
98 typedef struct _GstPadPushCache GstPadPushCache;
100 struct _GstPadPushCache
102   GstPad *peer;                 /* reffed peer pad */
103   GstCaps *caps;                /* caps for this link */
104 };
106 static GstPadPushCache _pad_cache_invalid = { NULL, };
108 #define PAD_CACHE_INVALID (&_pad_cache_invalid)
110 #define GST_PAD_GET_PRIVATE(obj)  \
111    (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_PAD, GstPadPrivate))
113 #define GST_PAD_CHAINLISTFUNC(pad) ((pad)->abidata.ABI.priv->chainlistfunc)
115 struct _GstPadPrivate
117   GstPadChainListFunction chainlistfunc;
119   GstPadPushCache *cache_ptr;
120 };
122 static void gst_pad_dispose (GObject * object);
123 static void gst_pad_finalize (GObject * object);
124 static void gst_pad_set_property (GObject * object, guint prop_id,
125     const GValue * value, GParamSpec * pspec);
126 static void gst_pad_get_property (GObject * object, guint prop_id,
127     GValue * value, GParamSpec * pspec);
129 static GstFlowReturn handle_pad_block (GstPad * pad);
130 static GstCaps *gst_pad_get_caps_unlocked (GstPad * pad);
131 static void gst_pad_set_pad_template (GstPad * pad, GstPadTemplate * templ);
132 static gboolean gst_pad_activate_default (GstPad * pad);
133 static gboolean gst_pad_acceptcaps_default (GstPad * pad, GstCaps * caps);
135 #if !defined(GST_DISABLE_LOADSAVE) && !defined(GST_REMOVE_DEPRECATED)
136 #ifdef GST_DISABLE_DEPRECATED
137 #include <libxml/parser.h>
138 #endif
139 static xmlNodePtr gst_pad_save_thyself (GstObject * object, xmlNodePtr parent);
140 void gst_pad_load_and_link (xmlNodePtr self, GstObject * parent);
141 #endif
143 /* Some deprecated stuff that we need inside here for
144  * backwards compatibility */
145 #ifdef GST_DISABLE_DEPRECATED
146 #ifndef GST_REMOVE_DEPRECATED
147 #define GST_PAD_INTLINKFUNC(pad)        (GST_PAD_CAST(pad)->intlinkfunc)
148 GList *gst_pad_get_internal_links_default (GstPad * pad);
149 #endif
150 #endif
152 static GstObjectClass *parent_class = NULL;
153 static guint gst_pad_signals[LAST_SIGNAL] = { 0 };
155 static GParamSpec *pspec_caps = NULL;
157 /* quarks for probe signals */
158 static GQuark buffer_quark;
159 static GQuark event_quark;
161 typedef struct
163   const gint ret;
164   const gchar *name;
165   GQuark quark;
166 } GstFlowQuarks;
168 static GstFlowQuarks flow_quarks[] = {
169   {GST_FLOW_CUSTOM_SUCCESS, "custom-success", 0},
170   {GST_FLOW_RESEND, "resend", 0},
171   {GST_FLOW_OK, "ok", 0},
172   {GST_FLOW_NOT_LINKED, "not-linked", 0},
173   {GST_FLOW_WRONG_STATE, "wrong-state", 0},
174   {GST_FLOW_UNEXPECTED, "unexpected", 0},
175   {GST_FLOW_NOT_NEGOTIATED, "not-negotiated", 0},
176   {GST_FLOW_ERROR, "error", 0},
177   {GST_FLOW_NOT_SUPPORTED, "not-supported", 0},
178   {GST_FLOW_CUSTOM_ERROR, "custom-error", 0}
179 };
181 /**
182  * gst_flow_get_name:
183  * @ret: a #GstFlowReturn to get the name of.
184  *
185  * Gets a string representing the given flow return.
186  *
187  * Returns: a static string with the name of the flow return.
188  */
189 const gchar *
190 gst_flow_get_name (GstFlowReturn ret)
192   gint i;
194   ret = CLAMP (ret, GST_FLOW_CUSTOM_ERROR, GST_FLOW_CUSTOM_SUCCESS);
196   for (i = 0; i < G_N_ELEMENTS (flow_quarks); i++) {
197     if (ret == flow_quarks[i].ret)
198       return flow_quarks[i].name;
199   }
200   return "unknown";
203 /**
204  * gst_flow_to_quark:
205  * @ret: a #GstFlowReturn to get the quark of.
206  *
207  * Get the unique quark for the given GstFlowReturn.
208  *
209  * Returns: the quark associated with the flow return or 0 if an
210  * invalid return was specified.
211  */
212 GQuark
213 gst_flow_to_quark (GstFlowReturn ret)
215   gint i;
217   ret = CLAMP (ret, GST_FLOW_CUSTOM_ERROR, GST_FLOW_CUSTOM_SUCCESS);
219   for (i = 0; i < G_N_ELEMENTS (flow_quarks); i++) {
220     if (ret == flow_quarks[i].ret)
221       return flow_quarks[i].quark;
222   }
223   return 0;
226 #define _do_init \
227 { \
228   gint i; \
229   \
230   buffer_quark = g_quark_from_static_string ("buffer"); \
231   event_quark = g_quark_from_static_string ("event"); \
232   \
233   for (i = 0; i < G_N_ELEMENTS (flow_quarks); i++) {                    \
234     flow_quarks[i].quark = g_quark_from_static_string (flow_quarks[i].name); \
235   } \
236   \
237   GST_DEBUG_CATEGORY_INIT (debug_dataflow, "GST_DATAFLOW", \
238       GST_DEBUG_BOLD | GST_DEBUG_FG_GREEN, "dataflow inside pads"); \
241 G_DEFINE_TYPE_WITH_CODE (GstPad, gst_pad, GST_TYPE_OBJECT, _do_init);
243 static gboolean
244 _gst_do_pass_data_accumulator (GSignalInvocationHint * ihint,
245     GValue * return_accu, const GValue * handler_return, gpointer dummy)
247   gboolean ret = g_value_get_boolean (handler_return);
249   GST_DEBUG ("accumulated %d", ret);
250   g_value_set_boolean (return_accu, ret);
252   return ret;
255 static gboolean
256 default_have_data (GstPad * pad, GstMiniObject * o)
258   return TRUE;
261 static void
262 gst_pad_class_init (GstPadClass * klass)
264   GObjectClass *gobject_class;
265   GstObjectClass *gstobject_class;
267   gobject_class = G_OBJECT_CLASS (klass);
268   gstobject_class = GST_OBJECT_CLASS (klass);
270   g_type_class_add_private (klass, sizeof (GstPadPrivate));
272   parent_class = g_type_class_peek_parent (klass);
274   gobject_class->dispose = gst_pad_dispose;
275   gobject_class->finalize = gst_pad_finalize;
276   gobject_class->set_property = gst_pad_set_property;
277   gobject_class->get_property = gst_pad_get_property;
279   /**
280    * GstPad::linked:
281    * @pad: the pad that emitted the signal
282    * @peer: the peer pad that has been connected
283    *
284    * Signals that a pad has been linked to the peer pad.
285    */
286   gst_pad_signals[PAD_LINKED] =
287       g_signal_new ("linked", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
288       G_STRUCT_OFFSET (GstPadClass, linked), NULL, NULL,
289       gst_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GST_TYPE_PAD);
290   /**
291    * GstPad::unlinked:
292    * @pad: the pad that emitted the signal
293    * @peer: the peer pad that has been disconnected
294    *
295    * Signals that a pad has been unlinked from the peer pad.
296    */
297   gst_pad_signals[PAD_UNLINKED] =
298       g_signal_new ("unlinked", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
299       G_STRUCT_OFFSET (GstPadClass, unlinked), NULL, NULL,
300       gst_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GST_TYPE_PAD);
301   /**
302    * GstPad::request-link:
303    * @pad: the pad that emitted the signal
304    * @peer: the peer pad for which a connection is requested
305    *
306    * Signals that a pad connection has been requested.
307    */
308   gst_pad_signals[PAD_REQUEST_LINK] =
309       g_signal_new ("request-link", G_TYPE_FROM_CLASS (klass),
310       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstPadClass, request_link), NULL,
311       NULL, gst_marshal_VOID__OBJECT, G_TYPE_NONE, 0);
313   /**
314    * GstPad::have-data:
315    * @pad: the pad that emitted the signal
316    * @mini_obj: new data
317    *
318    * Signals that new data is available on the pad. This signal is used
319    * internally for implementing pad probes.
320    * See gst_pad_add_*_probe functions.
321    *
322    * Returns: %TRUE to keep the data, %FALSE to drop it
323    */
324   gst_pad_signals[PAD_HAVE_DATA] =
325       g_signal_new ("have-data", G_TYPE_FROM_CLASS (klass),
326       G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
327       G_STRUCT_OFFSET (GstPadClass, have_data),
328       _gst_do_pass_data_accumulator,
329       NULL, gst_marshal_BOOLEAN__POINTER, G_TYPE_BOOLEAN, 1,
330       GST_TYPE_MINI_OBJECT);
332   pspec_caps = g_param_spec_boxed ("caps", "Caps",
333       "The capabilities of the pad", GST_TYPE_CAPS,
334       G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
335   g_object_class_install_property (gobject_class, PAD_PROP_CAPS, pspec_caps);
337   g_object_class_install_property (gobject_class, PAD_PROP_DIRECTION,
338       g_param_spec_enum ("direction", "Direction", "The direction of the pad",
339           GST_TYPE_PAD_DIRECTION, GST_PAD_UNKNOWN,
340           G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
341   /* FIXME, Make G_PARAM_CONSTRUCT_ONLY when we fix ghostpads. */
342   g_object_class_install_property (gobject_class, PAD_PROP_TEMPLATE,
343       g_param_spec_object ("template", "Template",
344           "The GstPadTemplate of this pad", GST_TYPE_PAD_TEMPLATE,
345           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
347 #if !defined(GST_DISABLE_LOADSAVE) && !defined(GST_REMOVE_DEPRECATED)
348   gstobject_class->save_thyself =
349       ((gpointer (*)(GstObject * object,
350               gpointer self)) * GST_DEBUG_FUNCPTR (gst_pad_save_thyself));
351 #endif
352   gstobject_class->path_string_separator = ".";
354   /* Register common function pointer descriptions */
355   GST_DEBUG_REGISTER_FUNCPTR (gst_pad_activate_default);
356   GST_DEBUG_REGISTER_FUNCPTR (gst_pad_event_default);
357   GST_DEBUG_REGISTER_FUNCPTR (gst_pad_get_query_types_default);
358   GST_DEBUG_REGISTER_FUNCPTR (gst_pad_query_default);
359 #ifndef GST_REMOVE_DEPRECATED
360   GST_DEBUG_REGISTER_FUNCPTR (gst_pad_get_internal_links_default);
361 #endif
362   GST_DEBUG_REGISTER_FUNCPTR (gst_pad_iterate_internal_links_default);
363   GST_DEBUG_REGISTER_FUNCPTR (gst_pad_acceptcaps_default);
365   /* from gstutils.c */
366   GST_DEBUG_REGISTER_FUNCPTR (gst_pad_get_fixed_caps_func);
368   klass->have_data = default_have_data;
371 static void
372 gst_pad_init (GstPad * pad)
374   pad->abidata.ABI.priv = GST_PAD_GET_PRIVATE (pad);
376   GST_PAD_DIRECTION (pad) = GST_PAD_UNKNOWN;
377   GST_PAD_PEER (pad) = NULL;
379   GST_PAD_CHAINFUNC (pad) = NULL;
381   GST_PAD_LINKFUNC (pad) = NULL;
383   GST_PAD_CAPS (pad) = NULL;
384   GST_PAD_GETCAPSFUNC (pad) = NULL;
386   GST_PAD_ACTIVATEFUNC (pad) = gst_pad_activate_default;
387   GST_PAD_EVENTFUNC (pad) = gst_pad_event_default;
388   GST_PAD_QUERYTYPEFUNC (pad) = gst_pad_get_query_types_default;
389   GST_PAD_QUERYFUNC (pad) = gst_pad_query_default;
390 #ifndef GST_REMOVE_DEPRECATED
391   GST_PAD_INTLINKFUNC (pad) = gst_pad_get_internal_links_default;
392 #endif
393   GST_PAD_ITERINTLINKFUNC (pad) = gst_pad_iterate_internal_links_default;
395   GST_PAD_ACCEPTCAPSFUNC (pad) = gst_pad_acceptcaps_default;
397   pad->do_buffer_signals = 0;
398   pad->do_event_signals = 0;
400   GST_PAD_SET_FLUSHING (pad);
402   pad->preroll_lock = g_mutex_new ();
403   pad->preroll_cond = g_cond_new ();
405   /* FIXME 0.11: Store this directly in the instance struct */
406   pad->stream_rec_lock = g_slice_new (GStaticRecMutex);
407   g_static_rec_mutex_init (pad->stream_rec_lock);
409   pad->block_cond = g_cond_new ();
412 static void
413 gst_pad_dispose (GObject * object)
415   GstPad *pad = GST_PAD_CAST (object);
416   GstPad *peer;
418   GST_CAT_DEBUG_OBJECT (GST_CAT_REFCOUNTING, pad, "dispose");
420   /* unlink the peer pad */
421   if ((peer = gst_pad_get_peer (pad))) {
422     /* window for MT unsafeness, someone else could unlink here
423      * and then we call unlink with wrong pads. The unlink
424      * function would catch this and safely return failed. */
425     if (GST_PAD_IS_SRC (pad))
426       gst_pad_unlink (pad, peer);
427     else
428       gst_pad_unlink (peer, pad);
430     gst_object_unref (peer);
431   }
433   /* clear the caps */
434   gst_caps_replace (&GST_PAD_CAPS (pad), NULL);
436   gst_pad_set_pad_template (pad, NULL);
438   if (pad->block_destroy_data && pad->block_data) {
439     pad->block_destroy_data (pad->block_data);
440     pad->block_data = NULL;
441   }
443   G_OBJECT_CLASS (parent_class)->dispose (object);
446 static void
447 gst_pad_finalize (GObject * object)
449   GstPad *pad = GST_PAD_CAST (object);
450   GstTask *task;
452   /* in case the task is still around, clean it up */
453   if ((task = GST_PAD_TASK (pad))) {
454     gst_task_join (task);
455     GST_PAD_TASK (pad) = NULL;
456     gst_object_unref (task);
457   }
459   if (pad->stream_rec_lock) {
460     g_static_rec_mutex_free (pad->stream_rec_lock);
461     g_slice_free (GStaticRecMutex, pad->stream_rec_lock);
462     pad->stream_rec_lock = NULL;
463   }
464   if (pad->preroll_lock) {
465     g_mutex_free (pad->preroll_lock);
466     g_cond_free (pad->preroll_cond);
467     pad->preroll_lock = NULL;
468     pad->preroll_cond = NULL;
469   }
470   if (pad->block_cond) {
471     g_cond_free (pad->block_cond);
472     pad->block_cond = NULL;
473   }
475   G_OBJECT_CLASS (parent_class)->finalize (object);
478 static void
479 gst_pad_set_property (GObject * object, guint prop_id,
480     const GValue * value, GParamSpec * pspec)
482   g_return_if_fail (GST_IS_PAD (object));
484   switch (prop_id) {
485     case PAD_PROP_DIRECTION:
486       GST_PAD_DIRECTION (object) = (GstPadDirection) g_value_get_enum (value);
487       break;
488     case PAD_PROP_TEMPLATE:
489       gst_pad_set_pad_template (GST_PAD_CAST (object),
490           (GstPadTemplate *) g_value_get_object (value));
491       break;
492     default:
493       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
494       break;
495   }
498 static void
499 gst_pad_get_property (GObject * object, guint prop_id,
500     GValue * value, GParamSpec * pspec)
502   g_return_if_fail (GST_IS_PAD (object));
504   switch (prop_id) {
505     case PAD_PROP_CAPS:
506       GST_OBJECT_LOCK (object);
507       g_value_set_boxed (value, GST_PAD_CAPS (object));
508       GST_OBJECT_UNLOCK (object);
509       break;
510     case PAD_PROP_DIRECTION:
511       g_value_set_enum (value, GST_PAD_DIRECTION (object));
512       break;
513     case PAD_PROP_TEMPLATE:
514       g_value_set_object (value, GST_PAD_PAD_TEMPLATE (object));
515       break;
516     default:
517       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
518       break;
519   }
522 /**
523  * gst_pad_new:
524  * @name: the name of the new pad.
525  * @direction: the #GstPadDirection of the pad.
526  *
527  * Creates a new pad with the given name in the given direction.
528  * If name is NULL, a guaranteed unique name (across all pads)
529  * will be assigned.
530  * This function makes a copy of the name so you can safely free the name.
531  *
532  * Returns: (transfer full): a new #GstPad, or NULL in case of an error.
533  *
534  * MT safe.
535  */
536 GstPad *
537 gst_pad_new (const gchar * name, GstPadDirection direction)
539   return g_object_new (GST_TYPE_PAD,
540       "name", name, "direction", direction, NULL);
543 /**
544  * gst_pad_new_from_template:
545  * @templ: the pad template to use
546  * @name: the name of the element
547  *
548  * Creates a new pad with the given name from the given template.
549  * If name is NULL, a guaranteed unique name (across all pads)
550  * will be assigned.
551  * This function makes a copy of the name so you can safely free the name.
552  *
553  * Returns: (transfer full): a new #GstPad, or NULL in case of an error.
554  */
555 GstPad *
556 gst_pad_new_from_template (GstPadTemplate * templ, const gchar * name)
558   g_return_val_if_fail (GST_IS_PAD_TEMPLATE (templ), NULL);
560   return g_object_new (GST_TYPE_PAD,
561       "name", name, "direction", templ->direction, "template", templ, NULL);
564 /**
565  * gst_pad_new_from_static_template:
566  * @templ: the #GstStaticPadTemplate to use
567  * @name: the name of the element
568  *
569  * Creates a new pad with the given name from the given static template.
570  * If name is NULL, a guaranteed unique name (across all pads)
571  * will be assigned.
572  * This function makes a copy of the name so you can safely free the name.
573  *
574  * Returns: (transfer full): a new #GstPad, or NULL in case of an error.
575  */
576 GstPad *
577 gst_pad_new_from_static_template (GstStaticPadTemplate * templ,
578     const gchar * name)
580   GstPad *pad;
581   GstPadTemplate *template;
583   template = gst_static_pad_template_get (templ);
584   pad = gst_pad_new_from_template (template, name);
585   gst_object_unref (template);
586   return pad;
589 /**
590  * gst_pad_get_direction:
591  * @pad: a #GstPad to get the direction of.
592  *
593  * Gets the direction of the pad. The direction of the pad is
594  * decided at construction time so this function does not take
595  * the LOCK.
596  *
597  * Returns: the #GstPadDirection of the pad.
598  *
599  * MT safe.
600  */
601 GstPadDirection
602 gst_pad_get_direction (GstPad * pad)
604   GstPadDirection result;
606   /* PAD_UNKNOWN is a little silly but we need some sort of
607    * error return value */
608   g_return_val_if_fail (GST_IS_PAD (pad), GST_PAD_UNKNOWN);
610   result = GST_PAD_DIRECTION (pad);
612   return result;
615 static gboolean
616 gst_pad_activate_default (GstPad * pad)
618   return gst_pad_activate_push (pad, TRUE);
621 static void
622 pre_activate (GstPad * pad, GstActivateMode new_mode)
624   switch (new_mode) {
625     case GST_ACTIVATE_PUSH:
626     case GST_ACTIVATE_PULL:
627       GST_OBJECT_LOCK (pad);
628       GST_DEBUG_OBJECT (pad, "setting ACTIVATE_MODE %d, unset flushing",
629           new_mode);
630       GST_PAD_UNSET_FLUSHING (pad);
631       GST_PAD_ACTIVATE_MODE (pad) = new_mode;
632       GST_OBJECT_UNLOCK (pad);
633       break;
634     case GST_ACTIVATE_NONE:
635       GST_OBJECT_LOCK (pad);
636       GST_DEBUG_OBJECT (pad, "setting ACTIVATE_MODE NONE, set flushing");
637       _priv_gst_pad_invalidate_cache (pad);
638       GST_PAD_SET_FLUSHING (pad);
639       GST_PAD_ACTIVATE_MODE (pad) = new_mode;
640       /* unlock blocked pads so element can resume and stop */
641       GST_PAD_BLOCK_BROADCAST (pad);
642       GST_OBJECT_UNLOCK (pad);
643       break;
644   }
647 static void
648 post_activate (GstPad * pad, GstActivateMode new_mode)
650   switch (new_mode) {
651     case GST_ACTIVATE_PUSH:
652     case GST_ACTIVATE_PULL:
653       /* nop */
654       break;
655     case GST_ACTIVATE_NONE:
656       /* ensures that streaming stops */
657       GST_PAD_STREAM_LOCK (pad);
658       GST_DEBUG_OBJECT (pad, "stopped streaming");
659       GST_PAD_STREAM_UNLOCK (pad);
660       break;
661   }
664 /**
665  * gst_pad_set_active:
666  * @pad: the #GstPad to activate or deactivate.
667  * @active: whether or not the pad should be active.
668  *
669  * Activates or deactivates the given pad.
670  * Normally called from within core state change functions.
671  *
672  * If @active, makes sure the pad is active. If it is already active, either in
673  * push or pull mode, just return. Otherwise dispatches to the pad's activate
674  * function to perform the actual activation.
675  *
676  * If not @active, checks the pad's current mode and calls
677  * gst_pad_activate_push() or gst_pad_activate_pull(), as appropriate, with a
678  * FALSE argument.
679  *
680  * Returns: #TRUE if the operation was successful.
681  *
682  * MT safe.
683  */
684 gboolean
685 gst_pad_set_active (GstPad * pad, gboolean active)
687   GstActivateMode old;
688   gboolean ret = FALSE;
690   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
692   GST_OBJECT_LOCK (pad);
693   old = GST_PAD_ACTIVATE_MODE (pad);
694   GST_OBJECT_UNLOCK (pad);
696   if (active) {
697     switch (old) {
698       case GST_ACTIVATE_PUSH:
699         GST_DEBUG_OBJECT (pad, "activating pad from push");
700         ret = TRUE;
701         break;
702       case GST_ACTIVATE_PULL:
703         GST_DEBUG_OBJECT (pad, "activating pad from pull");
704         ret = TRUE;
705         break;
706       case GST_ACTIVATE_NONE:
707         GST_DEBUG_OBJECT (pad, "activating pad from none");
708         ret = (GST_PAD_ACTIVATEFUNC (pad)) (pad);
709         break;
710     }
711   } else {
712     switch (old) {
713       case GST_ACTIVATE_PUSH:
714         GST_DEBUG_OBJECT (pad, "deactivating pad from push");
715         ret = gst_pad_activate_push (pad, FALSE);
716         break;
717       case GST_ACTIVATE_PULL:
718         GST_DEBUG_OBJECT (pad, "deactivating pad from pull");
719         ret = gst_pad_activate_pull (pad, FALSE);
720         break;
721       case GST_ACTIVATE_NONE:
722         GST_DEBUG_OBJECT (pad, "deactivating pad from none");
723         ret = TRUE;
724         break;
725     }
726   }
728   if (!ret) {
729     GST_OBJECT_LOCK (pad);
730     if (!active) {
731       g_critical ("Failed to deactivate pad %s:%s, very bad",
732           GST_DEBUG_PAD_NAME (pad));
733     } else {
734       GST_WARNING_OBJECT (pad, "Failed to activate pad");
735     }
736     GST_OBJECT_UNLOCK (pad);
737   }
739   return ret;
742 /**
743  * gst_pad_activate_pull:
744  * @pad: the #GstPad to activate or deactivate.
745  * @active: whether or not the pad should be active.
746  *
747  * Activates or deactivates the given pad in pull mode via dispatching to the
748  * pad's activatepullfunc. For use from within pad activation functions only.
749  * When called on sink pads, will first proxy the call to the peer pad, which
750  * is expected to activate its internally linked pads from within its
751  * activate_pull function.
752  *
753  * If you don't know what this is, you probably don't want to call it.
754  *
755  * Returns: TRUE if the operation was successful.
756  *
757  * MT safe.
758  */
759 gboolean
760 gst_pad_activate_pull (GstPad * pad, gboolean active)
762   GstActivateMode old, new;
763   GstPad *peer;
765   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
767   GST_OBJECT_LOCK (pad);
768   old = GST_PAD_ACTIVATE_MODE (pad);
769   GST_OBJECT_UNLOCK (pad);
771   if (active) {
772     switch (old) {
773       case GST_ACTIVATE_PULL:
774         GST_DEBUG_OBJECT (pad, "activating pad from pull, was ok");
775         goto was_ok;
776       case GST_ACTIVATE_PUSH:
777         GST_DEBUG_OBJECT (pad,
778             "activating pad from push, deactivate push first");
779         /* pad was activate in the wrong direction, deactivate it
780          * and reactivate it in pull mode */
781         if (G_UNLIKELY (!gst_pad_activate_push (pad, FALSE)))
782           goto deactivate_failed;
783         /* fallthrough, pad is deactivated now. */
784       case GST_ACTIVATE_NONE:
785         GST_DEBUG_OBJECT (pad, "activating pad from none");
786         break;
787     }
788   } else {
789     switch (old) {
790       case GST_ACTIVATE_NONE:
791         GST_DEBUG_OBJECT (pad, "deactivating pad from none, was ok");
792         goto was_ok;
793       case GST_ACTIVATE_PUSH:
794         GST_DEBUG_OBJECT (pad, "deactivating pad from push, weird");
795         /* pad was activated in the other direction, deactivate it
796          * in push mode, this should not happen... */
797         if (G_UNLIKELY (!gst_pad_activate_push (pad, FALSE)))
798           goto deactivate_failed;
799         /* everything is fine now */
800         goto was_ok;
801       case GST_ACTIVATE_PULL:
802         GST_DEBUG_OBJECT (pad, "deactivating pad from pull");
803         break;
804     }
805   }
807   if (gst_pad_get_direction (pad) == GST_PAD_SINK) {
808     if ((peer = gst_pad_get_peer (pad))) {
809       GST_DEBUG_OBJECT (pad, "calling peer");
810       if (G_UNLIKELY (!gst_pad_activate_pull (peer, active)))
811         goto peer_failed;
812       gst_object_unref (peer);
813     } else {
814       /* there is no peer, this is only fatal when we activate. When we
815        * deactivate, we must assume the application has unlinked the peer and
816        * will deactivate it eventually. */
817       if (active)
818         goto not_linked;
819       else
820         GST_DEBUG_OBJECT (pad, "deactivating unlinked pad");
821     }
822   } else {
823     if (G_UNLIKELY (GST_PAD_GETRANGEFUNC (pad) == NULL))
824       goto failure;             /* Can't activate pull on a src without a
825                                    getrange function */
826   }
828   new = active ? GST_ACTIVATE_PULL : GST_ACTIVATE_NONE;
829   pre_activate (pad, new);
831   if (GST_PAD_ACTIVATEPULLFUNC (pad)) {
832     if (G_UNLIKELY (!GST_PAD_ACTIVATEPULLFUNC (pad) (pad, active)))
833       goto failure;
834   } else {
835     /* can happen for sinks of passthrough elements */
836   }
838   post_activate (pad, new);
840   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "%s in pull mode",
841       active ? "activated" : "deactivated");
843   return TRUE;
845 was_ok:
846   {
847     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "already %s in pull mode",
848         active ? "activated" : "deactivated");
849     return TRUE;
850   }
851 deactivate_failed:
852   {
853     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
854         "failed to %s in switch to pull from mode %d",
855         (active ? "activate" : "deactivate"), old);
856     return FALSE;
857   }
858 peer_failed:
859   {
860     GST_OBJECT_LOCK (peer);
861     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
862         "activate_pull on peer (%s:%s) failed", GST_DEBUG_PAD_NAME (peer));
863     GST_OBJECT_UNLOCK (peer);
864     gst_object_unref (peer);
865     return FALSE;
866   }
867 not_linked:
868   {
869     GST_CAT_INFO_OBJECT (GST_CAT_PADS, pad, "can't activate unlinked sink "
870         "pad in pull mode");
871     return FALSE;
872   }
873 failure:
874   {
875     GST_OBJECT_LOCK (pad);
876     GST_CAT_INFO_OBJECT (GST_CAT_PADS, pad, "failed to %s in pull mode",
877         active ? "activate" : "deactivate");
878     _priv_gst_pad_invalidate_cache (pad);
879     GST_PAD_SET_FLUSHING (pad);
880     GST_PAD_ACTIVATE_MODE (pad) = old;
881     GST_OBJECT_UNLOCK (pad);
882     return FALSE;
883   }
886 /**
887  * gst_pad_activate_push:
888  * @pad: the #GstPad to activate or deactivate.
889  * @active: whether the pad should be active or not.
890  *
891  * Activates or deactivates the given pad in push mode via dispatching to the
892  * pad's activatepushfunc. For use from within pad activation functions only.
893  *
894  * If you don't know what this is, you probably don't want to call it.
895  *
896  * Returns: %TRUE if the operation was successful.
897  *
898  * MT safe.
899  */
900 gboolean
901 gst_pad_activate_push (GstPad * pad, gboolean active)
903   GstActivateMode old, new;
905   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
906   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "trying to set %s in push mode",
907       active ? "activated" : "deactivated");
909   GST_OBJECT_LOCK (pad);
910   old = GST_PAD_ACTIVATE_MODE (pad);
911   GST_OBJECT_UNLOCK (pad);
913   if (active) {
914     switch (old) {
915       case GST_ACTIVATE_PUSH:
916         GST_DEBUG_OBJECT (pad, "activating pad from push, was ok");
917         goto was_ok;
918       case GST_ACTIVATE_PULL:
919         GST_DEBUG_OBJECT (pad,
920             "activating pad from push, deactivating pull first");
921         /* pad was activate in the wrong direction, deactivate it
922          * an reactivate it in push mode */
923         if (G_UNLIKELY (!gst_pad_activate_pull (pad, FALSE)))
924           goto deactivate_failed;
925         /* fallthrough, pad is deactivated now. */
926       case GST_ACTIVATE_NONE:
927         GST_DEBUG_OBJECT (pad, "activating pad from none");
928         break;
929     }
930   } else {
931     switch (old) {
932       case GST_ACTIVATE_NONE:
933         GST_DEBUG_OBJECT (pad, "deactivating pad from none, was ok");
934         goto was_ok;
935       case GST_ACTIVATE_PULL:
936         GST_DEBUG_OBJECT (pad, "deactivating pad from pull, weird");
937         /* pad was activated in the other direction, deactivate it
938          * in pull mode, this should not happen... */
939         if (G_UNLIKELY (!gst_pad_activate_pull (pad, FALSE)))
940           goto deactivate_failed;
941         /* everything is fine now */
942         goto was_ok;
943       case GST_ACTIVATE_PUSH:
944         GST_DEBUG_OBJECT (pad, "deactivating pad from push");
945         break;
946     }
947   }
949   new = active ? GST_ACTIVATE_PUSH : GST_ACTIVATE_NONE;
950   pre_activate (pad, new);
952   if (GST_PAD_ACTIVATEPUSHFUNC (pad)) {
953     if (G_UNLIKELY (!GST_PAD_ACTIVATEPUSHFUNC (pad) (pad, active))) {
954       goto failure;
955     }
956   } else {
957     /* quite ok, element relies on state change func to prepare itself */
958   }
960   post_activate (pad, new);
962   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "%s in push mode",
963       active ? "activated" : "deactivated");
964   return TRUE;
966 was_ok:
967   {
968     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "already %s in push mode",
969         active ? "activated" : "deactivated");
970     return TRUE;
971   }
972 deactivate_failed:
973   {
974     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
975         "failed to %s in switch to push from mode %d",
976         (active ? "activate" : "deactivate"), old);
977     return FALSE;
978   }
979 failure:
980   {
981     GST_OBJECT_LOCK (pad);
982     GST_CAT_INFO_OBJECT (GST_CAT_PADS, pad, "failed to %s in push mode",
983         active ? "activate" : "deactivate");
984     _priv_gst_pad_invalidate_cache (pad);
985     GST_PAD_SET_FLUSHING (pad);
986     GST_PAD_ACTIVATE_MODE (pad) = old;
987     GST_OBJECT_UNLOCK (pad);
988     return FALSE;
989   }
992 /**
993  * gst_pad_is_active:
994  * @pad: the #GstPad to query
995  *
996  * Query if a pad is active
997  *
998  * Returns: TRUE if the pad is active.
999  *
1000  * MT safe.
1001  */
1002 gboolean
1003 gst_pad_is_active (GstPad * pad)
1005   gboolean result = FALSE;
1007   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1009   GST_OBJECT_LOCK (pad);
1010   result = GST_PAD_MODE_ACTIVATE (GST_PAD_ACTIVATE_MODE (pad));
1011   GST_OBJECT_UNLOCK (pad);
1013   return result;
1016 /**
1017  * gst_pad_set_blocked_async_full:
1018  * @pad: the #GstPad to block or unblock
1019  * @blocked: boolean indicating whether the pad should be blocked or unblocked
1020  * @callback: #GstPadBlockCallback that will be called when the
1021  *            operation succeeds
1022  * @user_data: (closure): user data passed to the callback
1023  * @destroy_data: #GDestroyNotify for user_data
1024  *
1025  * Blocks or unblocks the dataflow on a pad. The provided callback
1026  * is called when the operation succeeds; this happens right before the next
1027  * attempt at pushing a buffer on the pad.
1028  *
1029  * This can take a while as the pad can only become blocked when real dataflow
1030  * is happening.
1031  * When the pipeline is stalled, for example in PAUSED, this can
1032  * take an indeterminate amount of time.
1033  * You can pass NULL as the callback to make this call block. Be careful with
1034  * this blocking call as it might not return for reasons stated above.
1035  *
1036  * <note>
1037  *  Pad block handlers are only called for source pads in push mode
1038  *  and sink pads in pull mode.
1039  * </note>
1040  *
1041  * Returns: %TRUE if the pad could be blocked. This function can fail if the
1042  * wrong parameters were passed or the pad was already in the requested state.
1043  *
1044  * MT safe.
1045  *
1046  * Since: 0.10.23
1047  */
1048 gboolean
1049 gst_pad_set_blocked_async_full (GstPad * pad, gboolean blocked,
1050     GstPadBlockCallback callback, gpointer user_data,
1051     GDestroyNotify destroy_data)
1053   gboolean was_blocked = FALSE;
1055   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1057   GST_OBJECT_LOCK (pad);
1059   was_blocked = GST_PAD_IS_BLOCKED (pad);
1061   if (G_UNLIKELY (was_blocked == blocked))
1062     goto had_right_state;
1064   if (G_UNLIKELY (
1065           (GST_PAD_ACTIVATE_MODE (pad) == GST_ACTIVATE_PUSH) &&
1066           (GST_PAD_DIRECTION (pad) != GST_PAD_SRC)))
1067     goto wrong_direction;
1068   if (G_UNLIKELY (
1069           (GST_PAD_ACTIVATE_MODE (pad) == GST_ACTIVATE_PULL) &&
1070           (GST_PAD_DIRECTION (pad) != GST_PAD_SINK)))
1071     goto wrong_direction;
1073   if (blocked) {
1074     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "blocking pad");
1076     _priv_gst_pad_invalidate_cache (pad);
1077     GST_OBJECT_FLAG_SET (pad, GST_PAD_BLOCKED);
1079     if (pad->block_destroy_data && pad->block_data)
1080       pad->block_destroy_data (pad->block_data);
1082     pad->block_callback = callback;
1083     pad->block_data = user_data;
1084     pad->block_destroy_data = destroy_data;
1085     pad->abidata.ABI.block_callback_called = FALSE;
1086     if (!callback) {
1087       GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "waiting for block");
1088       GST_PAD_BLOCK_WAIT (pad);
1089       GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "blocked");
1090     }
1091   } else {
1092     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "unblocking pad");
1094     GST_OBJECT_FLAG_UNSET (pad, GST_PAD_BLOCKED);
1096     if (pad->block_destroy_data && pad->block_data)
1097       pad->block_destroy_data (pad->block_data);
1099     pad->block_callback = callback;
1100     pad->block_data = user_data;
1101     pad->block_destroy_data = destroy_data;
1102     pad->abidata.ABI.block_callback_called = FALSE;
1104     GST_PAD_BLOCK_BROADCAST (pad);
1105     if (!callback) {
1106       /* no callback, wait for the unblock to happen */
1107       GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "waiting for unblock");
1108       GST_PAD_BLOCK_WAIT (pad);
1109       GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "unblocked");
1110     }
1111   }
1112   GST_OBJECT_UNLOCK (pad);
1114   return TRUE;
1116 /* Errors */
1118 had_right_state:
1119   {
1120     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
1121         "pad was in right state (%d)", was_blocked);
1122     GST_OBJECT_UNLOCK (pad);
1124     return FALSE;
1125   }
1126 wrong_direction:
1127   {
1128     GST_CAT_INFO_OBJECT (GST_CAT_SCHEDULING, pad, "pad block on the wrong pad, "
1129         "block src pads in push mode and sink pads in pull mode.");
1130     GST_OBJECT_UNLOCK (pad);
1132     return FALSE;
1133   }
1136 /**
1137  * gst_pad_set_blocked_async:
1138  * @pad: the #GstPad to block or unblock
1139  * @blocked: boolean indicating whether the pad should be blocked or unblocked
1140  * @callback: #GstPadBlockCallback that will be called when the
1141  *            operation succeeds
1142  * @user_data: (closure): user data passed to the callback
1143  *
1144  * Blocks or unblocks the dataflow on a pad. The provided callback
1145  * is called when the operation succeeds; this happens right before the next
1146  * attempt at pushing a buffer on the pad.
1147  *
1148  * This can take a while as the pad can only become blocked when real dataflow
1149  * is happening.
1150  * When the pipeline is stalled, for example in PAUSED, this can
1151  * take an indeterminate amount of time.
1152  * You can pass NULL as the callback to make this call block. Be careful with
1153  * this blocking call as it might not return for reasons stated above.
1154  *
1155  * <note>
1156  *  Pad block handlers are only called for source pads in push mode
1157  *  and sink pads in pull mode.
1158  * </note>
1159  *
1160  * Returns: TRUE if the pad could be blocked. This function can fail if the
1161  * wrong parameters were passed or the pad was already in the requested state.
1162  *
1163  * MT safe.
1164  */
1165 gboolean
1166 gst_pad_set_blocked_async (GstPad * pad, gboolean blocked,
1167     GstPadBlockCallback callback, gpointer user_data)
1169   return gst_pad_set_blocked_async_full (pad, blocked,
1170       callback, user_data, NULL);
1173 /**
1174  * gst_pad_set_blocked:
1175  * @pad: the #GstPad to block or unblock
1176  * @blocked: boolean indicating we should block or unblock
1177  *
1178  * Blocks or unblocks the dataflow on a pad. This function is
1179  * a shortcut for gst_pad_set_blocked_async() with a NULL
1180  * callback.
1181  *
1182  * <note>
1183  *  Pad blocks are only possible for source pads in push mode
1184  *  and sink pads in pull mode.
1185  * </note>
1186  *
1187  * Returns: TRUE if the pad could be blocked. This function can fail if the
1188  * wrong parameters were passed or the pad was already in the requested state.
1189  *
1190  * MT safe.
1191  */
1192 gboolean
1193 gst_pad_set_blocked (GstPad * pad, gboolean blocked)
1195   return gst_pad_set_blocked_async (pad, blocked, NULL, NULL);
1198 /**
1199  * gst_pad_is_blocked:
1200  * @pad: the #GstPad to query
1201  *
1202  * Checks if the pad is blocked or not. This function returns the
1203  * last requested state of the pad. It is not certain that the pad
1204  * is actually blocking at this point (see gst_pad_is_blocking()).
1205  *
1206  * Returns: TRUE if the pad is blocked.
1207  *
1208  * MT safe.
1209  */
1210 gboolean
1211 gst_pad_is_blocked (GstPad * pad)
1213   gboolean result = FALSE;
1215   g_return_val_if_fail (GST_IS_PAD (pad), result);
1217   GST_OBJECT_LOCK (pad);
1218   result = GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_BLOCKED);
1219   GST_OBJECT_UNLOCK (pad);
1221   return result;
1224 /**
1225  * gst_pad_is_blocking:
1226  * @pad: the #GstPad to query
1227  *
1228  * Checks if the pad is blocking or not. This is a guaranteed state
1229  * of whether the pad is actually blocking on a #GstBuffer or a #GstEvent.
1230  *
1231  * Returns: TRUE if the pad is blocking.
1232  *
1233  * MT safe.
1234  *
1235  * Since: 0.10.11
1236  */
1237 gboolean
1238 gst_pad_is_blocking (GstPad * pad)
1240   gboolean result = FALSE;
1242   g_return_val_if_fail (GST_IS_PAD (pad), result);
1244   GST_OBJECT_LOCK (pad);
1245   /* the blocking flag is only valid if the pad is not flushing */
1246   result = GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_BLOCKING) &&
1247       !GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLUSHING);
1248   GST_OBJECT_UNLOCK (pad);
1250   return result;
1253 /**
1254  * gst_pad_set_activate_function:
1255  * @pad: a #GstPad.
1256  * @activate: the #GstPadActivateFunction to set.
1257  *
1258  * Sets the given activate function for @pad. The activate function will
1259  * dispatch to gst_pad_activate_push() or gst_pad_activate_pull() to perform
1260  * the actual activation. Only makes sense to set on sink pads.
1261  *
1262  * Call this function if your sink pad can start a pull-based task.
1263  */
1264 void
1265 gst_pad_set_activate_function (GstPad * pad, GstPadActivateFunction activate)
1267   g_return_if_fail (GST_IS_PAD (pad));
1269   GST_PAD_ACTIVATEFUNC (pad) = activate;
1270   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "activatefunc set to %s",
1271       GST_DEBUG_FUNCPTR_NAME (activate));
1274 /**
1275  * gst_pad_set_activatepull_function:
1276  * @pad: a #GstPad.
1277  * @activatepull: the #GstPadActivateModeFunction to set.
1278  *
1279  * Sets the given activate_pull function for the pad. An activate_pull function
1280  * prepares the element and any upstream connections for pulling. See XXX
1281  * part-activation.txt for details.
1282  */
1283 void
1284 gst_pad_set_activatepull_function (GstPad * pad,
1285     GstPadActivateModeFunction activatepull)
1287   g_return_if_fail (GST_IS_PAD (pad));
1289   GST_PAD_ACTIVATEPULLFUNC (pad) = activatepull;
1290   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "activatepullfunc set to %s",
1291       GST_DEBUG_FUNCPTR_NAME (activatepull));
1294 /**
1295  * gst_pad_set_activatepush_function:
1296  * @pad: a #GstPad.
1297  * @activatepush: the #GstPadActivateModeFunction to set.
1298  *
1299  * Sets the given activate_push function for the pad. An activate_push function
1300  * prepares the element for pushing. See XXX part-activation.txt for details.
1301  */
1302 void
1303 gst_pad_set_activatepush_function (GstPad * pad,
1304     GstPadActivateModeFunction activatepush)
1306   g_return_if_fail (GST_IS_PAD (pad));
1308   GST_PAD_ACTIVATEPUSHFUNC (pad) = activatepush;
1309   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "activatepushfunc set to %s",
1310       GST_DEBUG_FUNCPTR_NAME (activatepush));
1313 /**
1314  * gst_pad_set_chain_function:
1315  * @pad: a sink #GstPad.
1316  * @chain: the #GstPadChainFunction to set.
1317  *
1318  * Sets the given chain function for the pad. The chain function is called to
1319  * process a #GstBuffer input buffer. see #GstPadChainFunction for more details.
1320  */
1321 void
1322 gst_pad_set_chain_function (GstPad * pad, GstPadChainFunction chain)
1324   g_return_if_fail (GST_IS_PAD (pad));
1325   g_return_if_fail (GST_PAD_IS_SINK (pad));
1327   GST_PAD_CHAINFUNC (pad) = chain;
1328   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "chainfunc set to %s",
1329       GST_DEBUG_FUNCPTR_NAME (chain));
1332 /**
1333  * gst_pad_set_chain_list_function:
1334  * @pad: a sink #GstPad.
1335  * @chainlist: the #GstPadChainListFunction to set.
1336  *
1337  * Sets the given chain list function for the pad. The chainlist function is
1338  * called to process a #GstBufferList input buffer list. See
1339  * #GstPadChainListFunction for more details.
1340  *
1341  * Since: 0.10.24
1342  */
1343 void
1344 gst_pad_set_chain_list_function (GstPad * pad,
1345     GstPadChainListFunction chainlist)
1347   g_return_if_fail (GST_IS_PAD (pad));
1348   g_return_if_fail (GST_PAD_IS_SINK (pad));
1350   GST_PAD_CHAINLISTFUNC (pad) = chainlist;
1351   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "chainlistfunc set to %s",
1352       GST_DEBUG_FUNCPTR_NAME (chainlist));
1355 /**
1356  * gst_pad_set_getrange_function:
1357  * @pad: a source #GstPad.
1358  * @get: the #GstPadGetRangeFunction to set.
1359  *
1360  * Sets the given getrange function for the pad. The getrange function is
1361  * called to produce a new #GstBuffer to start the processing pipeline. see
1362  * #GstPadGetRangeFunction for a description of the getrange function.
1363  */
1364 void
1365 gst_pad_set_getrange_function (GstPad * pad, GstPadGetRangeFunction get)
1367   g_return_if_fail (GST_IS_PAD (pad));
1368   g_return_if_fail (GST_PAD_IS_SRC (pad));
1370   GST_PAD_GETRANGEFUNC (pad) = get;
1372   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "getrangefunc set to %s",
1373       GST_DEBUG_FUNCPTR_NAME (get));
1376 /**
1377  * gst_pad_set_checkgetrange_function:
1378  * @pad: a source #GstPad.
1379  * @check: the #GstPadCheckGetRangeFunction to set.
1380  *
1381  * Sets the given checkgetrange function for the pad. Implement this function
1382  * on a pad if you dynamically support getrange based scheduling on the pad.
1383  */
1384 void
1385 gst_pad_set_checkgetrange_function (GstPad * pad,
1386     GstPadCheckGetRangeFunction check)
1388   g_return_if_fail (GST_IS_PAD (pad));
1389   g_return_if_fail (GST_PAD_IS_SRC (pad));
1391   GST_PAD_CHECKGETRANGEFUNC (pad) = check;
1393   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "checkgetrangefunc set to %s",
1394       GST_DEBUG_FUNCPTR_NAME (check));
1397 /**
1398  * gst_pad_set_event_function:
1399  * @pad: a #GstPad of either direction.
1400  * @event: the #GstPadEventFunction to set.
1401  *
1402  * Sets the given event handler for the pad.
1403  */
1404 void
1405 gst_pad_set_event_function (GstPad * pad, GstPadEventFunction event)
1407   g_return_if_fail (GST_IS_PAD (pad));
1409   GST_PAD_EVENTFUNC (pad) = event;
1411   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "eventfunc for set to %s",
1412       GST_DEBUG_FUNCPTR_NAME (event));
1415 /**
1416  * gst_pad_set_query_function:
1417  * @pad: a #GstPad of either direction.
1418  * @query: the #GstPadQueryFunction to set.
1419  *
1420  * Set the given query function for the pad.
1421  */
1422 void
1423 gst_pad_set_query_function (GstPad * pad, GstPadQueryFunction query)
1425   g_return_if_fail (GST_IS_PAD (pad));
1427   GST_PAD_QUERYFUNC (pad) = query;
1429   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "queryfunc set to %s",
1430       GST_DEBUG_FUNCPTR_NAME (query));
1433 /**
1434  * gst_pad_set_query_type_function:
1435  * @pad: a #GstPad of either direction.
1436  * @type_func: the #GstPadQueryTypeFunction to set.
1437  *
1438  * Set the given query type function for the pad.
1439  */
1440 void
1441 gst_pad_set_query_type_function (GstPad * pad,
1442     GstPadQueryTypeFunction type_func)
1444   g_return_if_fail (GST_IS_PAD (pad));
1446   GST_PAD_QUERYTYPEFUNC (pad) = type_func;
1448   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "querytypefunc set to %s",
1449       GST_DEBUG_FUNCPTR_NAME (type_func));
1452 /**
1453  * gst_pad_get_query_types:
1454  * @pad: a #GstPad.
1455  *
1456  * Get an array of supported queries that can be performed
1457  * on this pad.
1458  *
1459  * Returns: (transfer none) (array zero-terminated=1): a zero-terminated array
1460  *     of #GstQueryType.
1461  */
1462 const GstQueryType *
1463 gst_pad_get_query_types (GstPad * pad)
1465   GstPadQueryTypeFunction func;
1467   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
1469   if (G_UNLIKELY ((func = GST_PAD_QUERYTYPEFUNC (pad)) == NULL))
1470     goto no_func;
1472   return func (pad);
1474 no_func:
1475   {
1476     return NULL;
1477   }
1480 static gboolean
1481 gst_pad_get_query_types_dispatcher (GstPad * pad, const GstQueryType ** data)
1483   *data = gst_pad_get_query_types (pad);
1485   return TRUE;
1488 /**
1489  * gst_pad_get_query_types_default:
1490  * @pad: a #GstPad.
1491  *
1492  * Invoke the default dispatcher for the query types on
1493  * the pad.
1494  *
1495  * Returns: (transfer none) (array zero-terminated=1): a zero-terminated array
1496  *     of #GstQueryType, or NULL if none of the internally-linked pads has a
1497  *     query types function.
1498  */
1499 const GstQueryType *
1500 gst_pad_get_query_types_default (GstPad * pad)
1502   GstQueryType *result = NULL;
1504   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
1506   gst_pad_dispatcher (pad, (GstPadDispatcherFunction)
1507       gst_pad_get_query_types_dispatcher, &result);
1509   return result;
1512 /**
1513  * gst_pad_set_iterate_internal_links_function:
1514  * @pad: a #GstPad of either direction.
1515  * @iterintlink: the #GstPadIterIntLinkFunction to set.
1516  *
1517  * Sets the given internal link iterator function for the pad.
1518  *
1519  * Since: 0.10.21
1520  */
1521 void
1522 gst_pad_set_iterate_internal_links_function (GstPad * pad,
1523     GstPadIterIntLinkFunction iterintlink)
1525   g_return_if_fail (GST_IS_PAD (pad));
1527   GST_PAD_ITERINTLINKFUNC (pad) = iterintlink;
1528   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "internal link iterator set to %s",
1529       GST_DEBUG_FUNCPTR_NAME (iterintlink));
1532 /**
1533  * gst_pad_set_internal_link_function:
1534  * @pad: a #GstPad of either direction.
1535  * @intlink: the #GstPadIntLinkFunction to set.
1536  *
1537  * Sets the given internal link function for the pad.
1538  *
1539  * Deprecated: Use the thread-safe gst_pad_set_iterate_internal_links_function()
1540  */
1541 #ifndef GST_REMOVE_DEPRECATED
1542 #ifdef GST_DISABLE_DEPRECATED
1543 void
1544 gst_pad_set_internal_link_function (GstPad * pad,
1545     GstPadIntLinkFunction intlink);
1546 #endif
1547 void
1548 gst_pad_set_internal_link_function (GstPad * pad, GstPadIntLinkFunction intlink)
1550   g_return_if_fail (GST_IS_PAD (pad));
1552   GST_PAD_INTLINKFUNC (pad) = intlink;
1553   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "internal link set to %s",
1554       GST_DEBUG_FUNCPTR_NAME (intlink));
1556 #endif /* GST_REMOVE_DEPRECATED */
1558 /**
1559  * gst_pad_set_link_function:
1560  * @pad: a #GstPad.
1561  * @link: the #GstPadLinkFunction to set.
1562  *
1563  * Sets the given link function for the pad. It will be called when
1564  * the pad is linked with another pad.
1565  *
1566  * The return value #GST_PAD_LINK_OK should be used when the connection can be
1567  * made.
1568  *
1569  * The return value #GST_PAD_LINK_REFUSED should be used when the connection
1570  * cannot be made for some reason.
1571  *
1572  * If @link is installed on a source pad, it should call the #GstPadLinkFunction
1573  * of the peer sink pad, if present.
1574  */
1575 void
1576 gst_pad_set_link_function (GstPad * pad, GstPadLinkFunction link)
1578   g_return_if_fail (GST_IS_PAD (pad));
1580   GST_PAD_LINKFUNC (pad) = link;
1581   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "linkfunc set to %s",
1582       GST_DEBUG_FUNCPTR_NAME (link));
1585 /**
1586  * gst_pad_set_unlink_function:
1587  * @pad: a #GstPad.
1588  * @unlink: the #GstPadUnlinkFunction to set.
1589  *
1590  * Sets the given unlink function for the pad. It will be called
1591  * when the pad is unlinked.
1592  */
1593 void
1594 gst_pad_set_unlink_function (GstPad * pad, GstPadUnlinkFunction unlink)
1596   g_return_if_fail (GST_IS_PAD (pad));
1598   GST_PAD_UNLINKFUNC (pad) = unlink;
1599   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "unlinkfunc set to %s",
1600       GST_DEBUG_FUNCPTR_NAME (unlink));
1603 /**
1604  * gst_pad_set_getcaps_function:
1605  * @pad: a #GstPad.
1606  * @getcaps: the #GstPadGetCapsFunction to set.
1607  *
1608  * Sets the given getcaps function for the pad. @getcaps should return the
1609  * allowable caps for a pad in the context of the element's state, its link to
1610  * other elements, and the devices or files it has opened. These caps must be a
1611  * subset of the pad template caps. In the NULL state with no links, @getcaps
1612  * should ideally return the same caps as the pad template. In rare
1613  * circumstances, an object property can affect the caps returned by @getcaps,
1614  * but this is discouraged.
1615  *
1616  * You do not need to call this function if @pad's allowed caps are always the
1617  * same as the pad template caps. This can only be true if the padtemplate
1618  * has fixed simple caps.
1619  *
1620  * For most filters, the caps returned by @getcaps is directly affected by the
1621  * allowed caps on other pads. For demuxers and decoders, the caps returned by
1622  * the srcpad's getcaps function is directly related to the stream data. Again,
1623  * @getcaps should return the most specific caps it reasonably can, since this
1624  * helps with autoplugging.
1625  *
1626  * Note that the return value from @getcaps is owned by the caller, so the
1627  * caller should unref the caps after usage.
1628  */
1629 void
1630 gst_pad_set_getcaps_function (GstPad * pad, GstPadGetCapsFunction getcaps)
1632   g_return_if_fail (GST_IS_PAD (pad));
1634   GST_PAD_GETCAPSFUNC (pad) = getcaps;
1635   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "getcapsfunc set to %s",
1636       GST_DEBUG_FUNCPTR_NAME (getcaps));
1639 /**
1640  * gst_pad_set_acceptcaps_function:
1641  * @pad: a #GstPad.
1642  * @acceptcaps: the #GstPadAcceptCapsFunction to set.
1643  *
1644  * Sets the given acceptcaps function for the pad.  The acceptcaps function
1645  * will be called to check if the pad can accept the given caps. Setting the
1646  * acceptcaps function to NULL restores the default behaviour of allowing
1647  * any caps that matches the caps from gst_pad_get_caps().
1648  */
1649 void
1650 gst_pad_set_acceptcaps_function (GstPad * pad,
1651     GstPadAcceptCapsFunction acceptcaps)
1653   g_return_if_fail (GST_IS_PAD (pad));
1655   GST_PAD_ACCEPTCAPSFUNC (pad) = acceptcaps;
1656   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "acceptcapsfunc set to %s",
1657       GST_DEBUG_FUNCPTR_NAME (acceptcaps));
1660 /**
1661  * gst_pad_set_fixatecaps_function:
1662  * @pad: a #GstPad.
1663  * @fixatecaps: the #GstPadFixateCapsFunction to set.
1664  *
1665  * Sets the given fixatecaps function for the pad.  The fixatecaps function
1666  * will be called whenever the default values for a GstCaps needs to be
1667  * filled in.
1668  */
1669 void
1670 gst_pad_set_fixatecaps_function (GstPad * pad,
1671     GstPadFixateCapsFunction fixatecaps)
1673   g_return_if_fail (GST_IS_PAD (pad));
1675   GST_PAD_FIXATECAPSFUNC (pad) = fixatecaps;
1676   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "fixatecapsfunc set to %s",
1677       GST_DEBUG_FUNCPTR_NAME (fixatecaps));
1680 /**
1681  * gst_pad_set_setcaps_function:
1682  * @pad: a #GstPad.
1683  * @setcaps: the #GstPadSetCapsFunction to set.
1684  *
1685  * Sets the given setcaps function for the pad.  The setcaps function
1686  * will be called whenever a buffer with a new media type is pushed or
1687  * pulled from the pad. The pad/element needs to update its internal
1688  * structures to process the new media type. If this new type is not
1689  * acceptable, the setcaps function should return FALSE.
1690  */
1691 void
1692 gst_pad_set_setcaps_function (GstPad * pad, GstPadSetCapsFunction setcaps)
1694   g_return_if_fail (GST_IS_PAD (pad));
1696   GST_PAD_SETCAPSFUNC (pad) = setcaps;
1697   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "setcapsfunc set to %s",
1698       GST_DEBUG_FUNCPTR_NAME (setcaps));
1701 /**
1702  * gst_pad_set_bufferalloc_function:
1703  * @pad: a sink #GstPad.
1704  * @bufalloc: the #GstPadBufferAllocFunction to set.
1705  *
1706  * Sets the given bufferalloc function for the pad. Note that the
1707  * bufferalloc function can only be set on sinkpads.
1708  */
1709 void
1710 gst_pad_set_bufferalloc_function (GstPad * pad,
1711     GstPadBufferAllocFunction bufalloc)
1713   g_return_if_fail (GST_IS_PAD (pad));
1714   g_return_if_fail (GST_PAD_IS_SINK (pad));
1716   GST_PAD_BUFFERALLOCFUNC (pad) = bufalloc;
1717   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "bufferallocfunc set to %s",
1718       GST_DEBUG_FUNCPTR_NAME (bufalloc));
1721 /**
1722  * gst_pad_unlink:
1723  * @srcpad: the source #GstPad to unlink.
1724  * @sinkpad: the sink #GstPad to unlink.
1725  *
1726  * Unlinks the source pad from the sink pad. Will emit the #GstPad::unlinked
1727  * signal on both pads.
1728  *
1729  * Returns: TRUE if the pads were unlinked. This function returns FALSE if
1730  * the pads were not linked together.
1731  *
1732  * MT safe.
1733  */
1734 gboolean
1735 gst_pad_unlink (GstPad * srcpad, GstPad * sinkpad)
1737   gboolean result = FALSE;
1738   GstElement *parent = NULL;
1740   g_return_val_if_fail (GST_IS_PAD (srcpad), FALSE);
1741   g_return_val_if_fail (GST_PAD_IS_SRC (srcpad), FALSE);
1742   g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
1743   g_return_val_if_fail (GST_PAD_IS_SINK (sinkpad), FALSE);
1745   GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "unlinking %s:%s(%p) and %s:%s(%p)",
1746       GST_DEBUG_PAD_NAME (srcpad), srcpad,
1747       GST_DEBUG_PAD_NAME (sinkpad), sinkpad);
1749   /* We need to notify the parent before taking any pad locks as the bin in
1750    * question might be waiting for a lock on the pad while holding its lock
1751    * that our message will try to take. */
1752   if ((parent = GST_ELEMENT_CAST (gst_pad_get_parent (srcpad)))) {
1753     if (GST_IS_ELEMENT (parent)) {
1754       gst_element_post_message (parent,
1755           gst_message_new_structure_change (GST_OBJECT_CAST (sinkpad),
1756               GST_STRUCTURE_CHANGE_TYPE_PAD_UNLINK, parent, TRUE));
1757     } else {
1758       gst_object_unref (parent);
1759       parent = NULL;
1760     }
1761   }
1763   GST_OBJECT_LOCK (srcpad);
1765   GST_OBJECT_LOCK (sinkpad);
1767   if (G_UNLIKELY (GST_PAD_PEER (srcpad) != sinkpad))
1768     goto not_linked_together;
1770   if (GST_PAD_UNLINKFUNC (srcpad)) {
1771     GST_PAD_UNLINKFUNC (srcpad) (srcpad);
1772   }
1773   if (GST_PAD_UNLINKFUNC (sinkpad)) {
1774     GST_PAD_UNLINKFUNC (sinkpad) (sinkpad);
1775   }
1777   _priv_gst_pad_invalidate_cache (srcpad);
1779   /* first clear peers */
1780   GST_PAD_PEER (srcpad) = NULL;
1781   GST_PAD_PEER (sinkpad) = NULL;
1783   GST_OBJECT_UNLOCK (sinkpad);
1784   GST_OBJECT_UNLOCK (srcpad);
1786   /* fire off a signal to each of the pads telling them
1787    * that they've been unlinked */
1788   g_signal_emit (srcpad, gst_pad_signals[PAD_UNLINKED], 0, sinkpad);
1789   g_signal_emit (sinkpad, gst_pad_signals[PAD_UNLINKED], 0, srcpad);
1791   GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "unlinked %s:%s and %s:%s",
1792       GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
1794   result = TRUE;
1796 done:
1797   if (parent != NULL) {
1798     gst_element_post_message (parent,
1799         gst_message_new_structure_change (GST_OBJECT_CAST (sinkpad),
1800             GST_STRUCTURE_CHANGE_TYPE_PAD_UNLINK, parent, FALSE));
1801     gst_object_unref (parent);
1802   }
1803   return result;
1805   /* ERRORS */
1806 not_linked_together:
1807   {
1808     /* we do not emit a warning in this case because unlinking cannot
1809      * be made MT safe.*/
1810     GST_OBJECT_UNLOCK (sinkpad);
1811     GST_OBJECT_UNLOCK (srcpad);
1812     goto done;
1813   }
1816 /**
1817  * gst_pad_is_linked:
1818  * @pad: pad to check
1819  *
1820  * Checks if a @pad is linked to another pad or not.
1821  *
1822  * Returns: TRUE if the pad is linked, FALSE otherwise.
1823  *
1824  * MT safe.
1825  */
1826 gboolean
1827 gst_pad_is_linked (GstPad * pad)
1829   gboolean result;
1831   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1833   GST_OBJECT_LOCK (pad);
1834   result = (GST_PAD_PEER (pad) != NULL);
1835   GST_OBJECT_UNLOCK (pad);
1837   return result;
1840 /* get the caps from both pads and see if the intersection
1841  * is not empty.
1842  *
1843  * This function should be called with the pad LOCK on both
1844  * pads
1845  */
1846 static gboolean
1847 gst_pad_link_check_compatible_unlocked (GstPad * src, GstPad * sink,
1848     GstPadLinkCheck flags)
1850   GstCaps *srccaps = NULL;
1851   GstCaps *sinkcaps = NULL;
1852   gboolean compatible = FALSE;
1854   if (!(flags & (GST_PAD_LINK_CHECK_CAPS | GST_PAD_LINK_CHECK_TEMPLATE_CAPS)))
1855     return TRUE;
1857   /* Doing the expensive caps checking takes priority over only checking the template caps */
1858   if (flags & GST_PAD_LINK_CHECK_CAPS) {
1859     srccaps = gst_pad_get_caps_unlocked (src);
1860     sinkcaps = gst_pad_get_caps_unlocked (sink);
1861   } else {
1862     /* If one of the two pads doesn't have a template, consider the intersection
1863      * as valid.*/
1864     if (G_UNLIKELY ((GST_PAD_PAD_TEMPLATE (src) == NULL)
1865             || (GST_PAD_PAD_TEMPLATE (sink) == NULL))) {
1866       compatible = TRUE;
1867       goto done;
1868     }
1869     srccaps = gst_caps_ref (GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (src)));
1870     sinkcaps =
1871         gst_caps_ref (GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (sink)));
1872   }
1874   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, src, "src caps %" GST_PTR_FORMAT,
1875       srccaps);
1876   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, sink, "sink caps %" GST_PTR_FORMAT,
1877       sinkcaps);
1879   /* if we have caps on both pads we can check the intersection. If one
1880    * of the caps is NULL, we return TRUE. */
1881   if (G_UNLIKELY (srccaps == NULL || sinkcaps == NULL)) {
1882     if (srccaps)
1883       gst_caps_unref (srccaps);
1884     if (sinkcaps)
1885       gst_caps_unref (sinkcaps);
1886     goto done;
1887   }
1889   compatible = gst_caps_can_intersect (srccaps, sinkcaps);
1890   gst_caps_unref (srccaps);
1891   gst_caps_unref (sinkcaps);
1893 done:
1894   GST_CAT_DEBUG (GST_CAT_CAPS, "caps are %scompatible",
1895       (compatible ? "" : "not"));
1897   return compatible;
1900 /* check if the grandparents of both pads are the same.
1901  * This check is required so that we don't try to link
1902  * pads from elements in different bins without ghostpads.
1903  *
1904  * The LOCK should be held on both pads
1905  */
1906 static gboolean
1907 gst_pad_link_check_hierarchy (GstPad * src, GstPad * sink)
1909   GstObject *psrc, *psink;
1911   psrc = GST_OBJECT_PARENT (src);
1912   psink = GST_OBJECT_PARENT (sink);
1914   /* if one of the pads has no parent, we allow the link */
1915   if (G_UNLIKELY (psrc == NULL || psink == NULL))
1916     goto no_parent;
1918   /* only care about parents that are elements */
1919   if (G_UNLIKELY (!GST_IS_ELEMENT (psrc) || !GST_IS_ELEMENT (psink)))
1920     goto no_element_parent;
1922   /* if the parents are the same, we have a loop */
1923   if (G_UNLIKELY (psrc == psink))
1924     goto same_parents;
1926   /* if they both have a parent, we check the grandparents. We can not lock
1927    * the parent because we hold on the child (pad) and the locking order is
1928    * parent >> child. */
1929   psrc = GST_OBJECT_PARENT (psrc);
1930   psink = GST_OBJECT_PARENT (psink);
1932   /* if they have grandparents but they are not the same */
1933   if (G_UNLIKELY (psrc != psink))
1934     goto wrong_grandparents;
1936   return TRUE;
1938   /* ERRORS */
1939 no_parent:
1940   {
1941     GST_CAT_DEBUG (GST_CAT_CAPS,
1942         "one of the pads has no parent %" GST_PTR_FORMAT " and %"
1943         GST_PTR_FORMAT, psrc, psink);
1944     return TRUE;
1945   }
1946 no_element_parent:
1947   {
1948     GST_CAT_DEBUG (GST_CAT_CAPS,
1949         "one of the pads has no element parent %" GST_PTR_FORMAT " and %"
1950         GST_PTR_FORMAT, psrc, psink);
1951     return TRUE;
1952   }
1953 same_parents:
1954   {
1955     GST_CAT_DEBUG (GST_CAT_CAPS, "pads have same parent %" GST_PTR_FORMAT,
1956         psrc);
1957     return FALSE;
1958   }
1959 wrong_grandparents:
1960   {
1961     GST_CAT_DEBUG (GST_CAT_CAPS,
1962         "pads have different grandparents %" GST_PTR_FORMAT " and %"
1963         GST_PTR_FORMAT, psrc, psink);
1964     return FALSE;
1965   }
1968 /* FIXME leftover from an attempt at refactoring... */
1969 /* call with the two pads unlocked, when this function returns GST_PAD_LINK_OK,
1970  * the two pads will be locked in the srcpad, sinkpad order. */
1971 static GstPadLinkReturn
1972 gst_pad_link_prepare (GstPad * srcpad, GstPad * sinkpad, GstPadLinkCheck flags)
1974   GST_CAT_INFO (GST_CAT_PADS, "trying to link %s:%s and %s:%s",
1975       GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
1977   GST_OBJECT_LOCK (srcpad);
1979   if (G_UNLIKELY (GST_PAD_PEER (srcpad) != NULL))
1980     goto src_was_linked;
1982   GST_OBJECT_LOCK (sinkpad);
1984   if (G_UNLIKELY (GST_PAD_PEER (sinkpad) != NULL))
1985     goto sink_was_linked;
1987   /* check hierarchy, pads can only be linked if the grandparents
1988    * are the same. */
1989   if ((flags & GST_PAD_LINK_CHECK_HIERARCHY)
1990       && !gst_pad_link_check_hierarchy (srcpad, sinkpad))
1991     goto wrong_hierarchy;
1993   /* check pad caps for non-empty intersection */
1994   if (!gst_pad_link_check_compatible_unlocked (srcpad, sinkpad, flags))
1995     goto no_format;
1997   /* FIXME check pad scheduling for non-empty intersection */
1999   return GST_PAD_LINK_OK;
2001 src_was_linked:
2002   {
2003     GST_CAT_INFO (GST_CAT_PADS, "src %s:%s was already linked to %s:%s",
2004         GST_DEBUG_PAD_NAME (srcpad),
2005         GST_DEBUG_PAD_NAME (GST_PAD_PEER (srcpad)));
2006     /* we do not emit a warning in this case because unlinking cannot
2007      * be made MT safe.*/
2008     GST_OBJECT_UNLOCK (srcpad);
2009     return GST_PAD_LINK_WAS_LINKED;
2010   }
2011 sink_was_linked:
2012   {
2013     GST_CAT_INFO (GST_CAT_PADS, "sink %s:%s was already linked to %s:%s",
2014         GST_DEBUG_PAD_NAME (sinkpad),
2015         GST_DEBUG_PAD_NAME (GST_PAD_PEER (sinkpad)));
2016     /* we do not emit a warning in this case because unlinking cannot
2017      * be made MT safe.*/
2018     GST_OBJECT_UNLOCK (sinkpad);
2019     GST_OBJECT_UNLOCK (srcpad);
2020     return GST_PAD_LINK_WAS_LINKED;
2021   }
2022 wrong_hierarchy:
2023   {
2024     GST_CAT_INFO (GST_CAT_PADS, "pads have wrong hierarchy");
2025     GST_OBJECT_UNLOCK (sinkpad);
2026     GST_OBJECT_UNLOCK (srcpad);
2027     return GST_PAD_LINK_WRONG_HIERARCHY;
2028   }
2029 no_format:
2030   {
2031     GST_CAT_INFO (GST_CAT_PADS, "caps are incompatible");
2032     GST_OBJECT_UNLOCK (sinkpad);
2033     GST_OBJECT_UNLOCK (srcpad);
2034     return GST_PAD_LINK_NOFORMAT;
2035   }
2038 /**
2039  * gst_pad_can_link:
2040  * @srcpad: the source #GstPad.
2041  * @sinkpad: the sink #GstPad.
2042  *
2043  * Checks if the source pad and the sink pad are compatible so they can be
2044  * linked.
2045  *
2046  * Returns: TRUE if the pads can be linked.
2047  */
2048 gboolean
2049 gst_pad_can_link (GstPad * srcpad, GstPad * sinkpad)
2051   GstPadLinkReturn result;
2053   /* generic checks */
2054   g_return_val_if_fail (GST_IS_PAD (srcpad), FALSE);
2055   g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
2057   GST_CAT_INFO (GST_CAT_PADS, "check if %s:%s can link with %s:%s",
2058       GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
2060   /* gst_pad_link_prepare does everything for us, we only release the locks
2061    * on the pads that it gets us. If this function returns !OK the locks are not
2062    * taken anymore. */
2063   result = gst_pad_link_prepare (srcpad, sinkpad, GST_PAD_LINK_CHECK_DEFAULT);
2064   if (result != GST_PAD_LINK_OK)
2065     goto done;
2067   GST_OBJECT_UNLOCK (srcpad);
2068   GST_OBJECT_UNLOCK (sinkpad);
2070 done:
2071   return result == GST_PAD_LINK_OK;
2074 /**
2075  * gst_pad_link_full:
2076  * @srcpad: the source #GstPad to link.
2077  * @sinkpad: the sink #GstPad to link.
2078  * @flags: the checks to validate when linking
2079  *
2080  * Links the source pad and the sink pad.
2081  *
2082  * This variant of #gst_pad_link provides a more granular control on the
2083  * checks being done when linking. While providing some considerable speedups
2084  * the caller of this method must be aware that wrong usage of those flags
2085  * can cause severe issues. Refer to the documentation of #GstPadLinkCheck
2086  * for more information.
2087  *
2088  * MT Safe.
2089  *
2090  * Returns: A result code indicating if the connection worked or
2091  *          what went wrong.
2092  *
2093  * Since: 0.10.30
2094  */
2095 GstPadLinkReturn
2096 gst_pad_link_full (GstPad * srcpad, GstPad * sinkpad, GstPadLinkCheck flags)
2098   GstPadLinkReturn result;
2099   GstElement *parent;
2101   g_return_val_if_fail (GST_IS_PAD (srcpad), GST_PAD_LINK_REFUSED);
2102   g_return_val_if_fail (GST_PAD_IS_SRC (srcpad), GST_PAD_LINK_WRONG_DIRECTION);
2103   g_return_val_if_fail (GST_IS_PAD (sinkpad), GST_PAD_LINK_REFUSED);
2104   g_return_val_if_fail (GST_PAD_IS_SINK (sinkpad),
2105       GST_PAD_LINK_WRONG_DIRECTION);
2107   /* Notify the parent early. See gst_pad_unlink for details. */
2108   if ((parent = GST_ELEMENT_CAST (gst_pad_get_parent (srcpad)))) {
2109     if (GST_IS_ELEMENT (parent)) {
2110       gst_element_post_message (parent,
2111           gst_message_new_structure_change (GST_OBJECT_CAST (sinkpad),
2112               GST_STRUCTURE_CHANGE_TYPE_PAD_LINK, parent, TRUE));
2113     } else {
2114       gst_object_unref (parent);
2115       parent = NULL;
2116     }
2117   }
2119   /* prepare will also lock the two pads */
2120   result = gst_pad_link_prepare (srcpad, sinkpad, flags);
2122   if (result != GST_PAD_LINK_OK)
2123     goto done;
2125   /* must set peers before calling the link function */
2126   GST_PAD_PEER (srcpad) = sinkpad;
2127   GST_PAD_PEER (sinkpad) = srcpad;
2129   GST_OBJECT_UNLOCK (sinkpad);
2130   GST_OBJECT_UNLOCK (srcpad);
2132   /* FIXME released the locks here, concurrent thread might link
2133    * something else. */
2134   if (GST_PAD_LINKFUNC (srcpad)) {
2135     /* this one will call the peer link function */
2136     result = GST_PAD_LINKFUNC (srcpad) (srcpad, sinkpad);
2137   } else if (GST_PAD_LINKFUNC (sinkpad)) {
2138     /* if no source link function, we need to call the sink link
2139      * function ourselves. */
2140     result = GST_PAD_LINKFUNC (sinkpad) (sinkpad, srcpad);
2141   } else {
2142     result = GST_PAD_LINK_OK;
2143   }
2145   GST_OBJECT_LOCK (srcpad);
2146   GST_OBJECT_LOCK (sinkpad);
2148   if (result == GST_PAD_LINK_OK) {
2149     GST_OBJECT_UNLOCK (sinkpad);
2150     GST_OBJECT_UNLOCK (srcpad);
2152     /* fire off a signal to each of the pads telling them
2153      * that they've been linked */
2154     g_signal_emit (srcpad, gst_pad_signals[PAD_LINKED], 0, sinkpad);
2155     g_signal_emit (sinkpad, gst_pad_signals[PAD_LINKED], 0, srcpad);
2157     GST_CAT_INFO (GST_CAT_PADS, "linked %s:%s and %s:%s, successful",
2158         GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
2159   } else {
2160     GST_CAT_INFO (GST_CAT_PADS, "link between %s:%s and %s:%s failed",
2161         GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
2163     GST_PAD_PEER (srcpad) = NULL;
2164     GST_PAD_PEER (sinkpad) = NULL;
2166     GST_OBJECT_UNLOCK (sinkpad);
2167     GST_OBJECT_UNLOCK (srcpad);
2168   }
2170 done:
2171   if (parent) {
2172     gst_element_post_message (parent,
2173         gst_message_new_structure_change (GST_OBJECT_CAST (sinkpad),
2174             GST_STRUCTURE_CHANGE_TYPE_PAD_LINK, parent, FALSE));
2175     gst_object_unref (parent);
2176   }
2178   return result;
2181 /**
2182  * gst_pad_link:
2183  * @srcpad: the source #GstPad to link.
2184  * @sinkpad: the sink #GstPad to link.
2185  *
2186  * Links the source pad and the sink pad.
2187  *
2188  * Returns: A result code indicating if the connection worked or
2189  *          what went wrong.
2190  *
2191  * MT Safe.
2192  */
2193 GstPadLinkReturn
2194 gst_pad_link (GstPad * srcpad, GstPad * sinkpad)
2196   return gst_pad_link_full (srcpad, sinkpad, GST_PAD_LINK_CHECK_DEFAULT);
2199 static void
2200 gst_pad_set_pad_template (GstPad * pad, GstPadTemplate * templ)
2202   GstPadTemplate **template_p;
2204   /* this function would need checks if it weren't static */
2206   GST_OBJECT_LOCK (pad);
2207   template_p = &pad->padtemplate;
2208   gst_object_replace ((GstObject **) template_p, (GstObject *) templ);
2209   GST_OBJECT_UNLOCK (pad);
2211   if (templ)
2212     gst_pad_template_pad_created (templ, pad);
2215 /**
2216  * gst_pad_get_pad_template:
2217  * @pad: a #GstPad.
2218  *
2219  * Gets the template for @pad.
2220  *
2221  * Returns: (transfer none): the #GstPadTemplate from which this pad was
2222  *     instantiated, or %NULL if this pad has no template.
2223  *
2224  * FIXME: currently returns an unrefcounted padtemplate.
2225  */
2226 GstPadTemplate *
2227 gst_pad_get_pad_template (GstPad * pad)
2229   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2231   return GST_PAD_PAD_TEMPLATE (pad);
2235 /* should be called with the pad LOCK held */
2236 /* refs the caps, so caller is responsible for getting it unreffed */
2237 static GstCaps *
2238 gst_pad_get_caps_unlocked (GstPad * pad)
2240   GstCaps *result = NULL;
2241   GstPadTemplate *templ;
2243   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "get pad caps");
2245   if (GST_PAD_GETCAPSFUNC (pad)) {
2246     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2247         "dispatching to pad getcaps function");
2249     GST_OBJECT_FLAG_SET (pad, GST_PAD_IN_GETCAPS);
2250     GST_OBJECT_UNLOCK (pad);
2251     result = GST_PAD_GETCAPSFUNC (pad) (pad);
2252     GST_OBJECT_LOCK (pad);
2253     GST_OBJECT_FLAG_UNSET (pad, GST_PAD_IN_GETCAPS);
2255     if (result == NULL) {
2256       g_critical ("pad %s:%s returned NULL caps from getcaps function",
2257           GST_DEBUG_PAD_NAME (pad));
2258     } else {
2259       GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2260           "pad getcaps returned %" GST_PTR_FORMAT, result);
2261 #ifndef G_DISABLE_ASSERT
2262       /* check that the returned caps are a real subset of the template caps */
2263       if (GST_PAD_PAD_TEMPLATE (pad)) {
2264         const GstCaps *templ_caps =
2265             GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (pad));
2266         if (!gst_caps_is_subset (result, templ_caps)) {
2267           GstCaps *temp;
2269           GST_CAT_ERROR_OBJECT (GST_CAT_CAPS, pad,
2270               "pad returned caps %" GST_PTR_FORMAT
2271               " which are not a real subset of its template caps %"
2272               GST_PTR_FORMAT, result, templ_caps);
2273           g_warning
2274               ("pad %s:%s returned caps which are not a real "
2275               "subset of its template caps", GST_DEBUG_PAD_NAME (pad));
2276           temp = gst_caps_intersect (templ_caps, result);
2277           gst_caps_unref (result);
2278           result = temp;
2279         }
2280       }
2281 #endif
2282       goto done;
2283     }
2284   }
2285   if ((templ = GST_PAD_PAD_TEMPLATE (pad))) {
2286     result = GST_PAD_TEMPLATE_CAPS (templ);
2287     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2288         "using pad template %p with caps %p %" GST_PTR_FORMAT, templ, result,
2289         result);
2291     result = gst_caps_ref (result);
2292     goto done;
2293   }
2294   if ((result = GST_PAD_CAPS (pad))) {
2295     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2296         "using pad caps %p %" GST_PTR_FORMAT, result, result);
2298     result = gst_caps_ref (result);
2299     goto done;
2300   }
2302   /* this almost never happens */
2303   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "pad has no caps");
2304   result = gst_caps_new_empty ();
2306 done:
2307   return result;
2310 /* FIXME-0.11: what about making this the default and using
2311  * gst_caps_make_writable() explicitly where needed
2312  */
2313 /**
2314  * gst_pad_get_caps_reffed:
2315  * @pad: a  #GstPad to get the capabilities of.
2316  *
2317  * Gets the capabilities this pad can produce or consume. Preferred function if
2318  * one only wants to read or intersect the caps.
2319  *
2320  * Returns: (transfer full): the caps of the pad with incremented ref-count.
2321  *
2322  * Since: 0.10.26
2323  */
2324 GstCaps *
2325 gst_pad_get_caps_reffed (GstPad * pad)
2327   GstCaps *result = NULL;
2329   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2331   GST_OBJECT_LOCK (pad);
2333   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "get pad caps");
2335   result = gst_pad_get_caps_unlocked (pad);
2337   GST_OBJECT_UNLOCK (pad);
2339   return result;
2342 /**
2343  * gst_pad_get_caps:
2344  * @pad: a  #GstPad to get the capabilities of.
2345  *
2346  * Gets the capabilities this pad can produce or consume.
2347  * Note that this method doesn't necessarily return the caps set by
2348  * gst_pad_set_caps() - use GST_PAD_CAPS() for that instead.
2349  * gst_pad_get_caps returns all possible caps a pad can operate with, using
2350  * the pad's get_caps function;
2351  * this returns the pad template caps if not explicitly set.
2352  *
2353  * Returns: (transfer full): a newly allocated copy of the #GstCaps of this pad
2354  *
2355  * MT safe.
2356  */
2357 GstCaps *
2358 gst_pad_get_caps (GstPad * pad)
2360   GstCaps *result = gst_pad_get_caps_reffed (pad);
2362   /* be sure that we have a copy */
2363   if (G_LIKELY (result))
2364     result = gst_caps_make_writable (result);
2366   return result;
2369 /* FIXME-0.11: what about making this the default and using
2370  * gst_caps_make_writable() explicitly where needed
2371  */
2372 /**
2373  * gst_pad_peer_get_caps_reffed:
2374  * @pad: a  #GstPad to get the capabilities of.
2375  *
2376  * Gets the capabilities of the peer connected to this pad. Preferred function
2377  * if one only wants to read or intersect the caps.
2378  *
2379  * Returns: (transfer full): the caps of the pad with incremented ref-count
2380  *
2381  * Since: 0.10.26
2382  */
2383 GstCaps *
2384 gst_pad_peer_get_caps_reffed (GstPad * pad)
2386   GstPad *peerpad;
2387   GstCaps *result = NULL;
2389   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2391   GST_OBJECT_LOCK (pad);
2393   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "get peer caps");
2395   peerpad = GST_PAD_PEER (pad);
2396   if (G_UNLIKELY (peerpad == NULL))
2397     goto no_peer;
2399   gst_object_ref (peerpad);
2400   GST_OBJECT_UNLOCK (pad);
2402   result = gst_pad_get_caps_reffed (peerpad);
2404   gst_object_unref (peerpad);
2406   return result;
2408 no_peer:
2409   {
2410     GST_OBJECT_UNLOCK (pad);
2411     return NULL;
2412   }
2415 /**
2416  * gst_pad_peer_get_caps:
2417  * @pad: a  #GstPad to get the peer capabilities of.
2418  *
2419  * Gets the capabilities of the peer connected to this pad. Similar to
2420  * gst_pad_get_caps().
2421  *
2422  * Returns: (transfer full): a newly allocated copy of the #GstCaps of the
2423  *     peer pad. Use gst_caps_unref() to get rid of it. This function
2424  *     returns %NULL if there is no peer pad.
2425  */
2426 GstCaps *
2427 gst_pad_peer_get_caps (GstPad * pad)
2429   GstPad *peerpad;
2430   GstCaps *result = NULL;
2432   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2434   GST_OBJECT_LOCK (pad);
2436   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "get peer caps");
2438   peerpad = GST_PAD_PEER (pad);
2439   if (G_UNLIKELY (peerpad == NULL))
2440     goto no_peer;
2442   gst_object_ref (peerpad);
2443   GST_OBJECT_UNLOCK (pad);
2445   result = gst_pad_get_caps (peerpad);
2447   gst_object_unref (peerpad);
2449   return result;
2451 no_peer:
2452   {
2453     GST_OBJECT_UNLOCK (pad);
2454     return NULL;
2455   }
2458 static gboolean
2459 fixate_value (GValue * dest, const GValue * src)
2461   if (G_VALUE_TYPE (src) == GST_TYPE_INT_RANGE) {
2462     g_value_init (dest, G_TYPE_INT);
2463     g_value_set_int (dest, gst_value_get_int_range_min (src));
2464   } else if (G_VALUE_TYPE (src) == GST_TYPE_DOUBLE_RANGE) {
2465     g_value_init (dest, G_TYPE_DOUBLE);
2466     g_value_set_double (dest, gst_value_get_double_range_min (src));
2467   } else if (G_VALUE_TYPE (src) == GST_TYPE_FRACTION_RANGE) {
2468     gst_value_init_and_copy (dest, gst_value_get_fraction_range_min (src));
2469   } else if (G_VALUE_TYPE (src) == GST_TYPE_LIST) {
2470     GValue temp = { 0 };
2472     /* list could be empty */
2473     if (gst_value_list_get_size (src) <= 0)
2474       return FALSE;
2476     gst_value_init_and_copy (&temp, gst_value_list_get_value (src, 0));
2478     if (!fixate_value (dest, &temp))
2479       gst_value_init_and_copy (dest, &temp);
2480     g_value_unset (&temp);
2481   } else if (G_VALUE_TYPE (src) == GST_TYPE_ARRAY) {
2482     gboolean res = FALSE;
2483     guint n, len;
2485     len = gst_value_array_get_size (src);
2486     g_value_init (dest, GST_TYPE_ARRAY);
2487     for (n = 0; n < len; n++) {
2488       GValue kid = { 0 };
2489       const GValue *orig_kid = gst_value_array_get_value (src, n);
2491       if (!fixate_value (&kid, orig_kid))
2492         gst_value_init_and_copy (&kid, orig_kid);
2493       else
2494         res = TRUE;
2495       gst_value_array_append_value (dest, &kid);
2496       g_value_unset (&kid);
2497     }
2499     if (!res)
2500       g_value_unset (dest);
2502     return res;
2503   } else {
2504     return FALSE;
2505   }
2507   return TRUE;
2510 static gboolean
2511 gst_pad_default_fixate (GQuark field_id, const GValue * value, gpointer data)
2513   GstStructure *s = data;
2514   GValue v = { 0 };
2516   if (fixate_value (&v, value)) {
2517     gst_structure_id_set_value (s, field_id, &v);
2518     g_value_unset (&v);
2519   }
2521   return TRUE;
2524 /**
2525  * gst_pad_fixate_caps:
2526  * @pad: a  #GstPad to fixate
2527  * @caps: the  #GstCaps to fixate
2528  *
2529  * Fixate a caps on the given pad. Modifies the caps in place, so you should
2530  * make sure that the caps are actually writable (see gst_caps_make_writable()).
2531  */
2532 void
2533 gst_pad_fixate_caps (GstPad * pad, GstCaps * caps)
2535   GstPadFixateCapsFunction fixatefunc;
2536   GstStructure *s;
2538   g_return_if_fail (GST_IS_PAD (pad));
2539   g_return_if_fail (caps != NULL);
2540   g_return_if_fail (!gst_caps_is_empty (caps));
2541   /* FIXME-0.11: do not allow fixating any-caps
2542    * g_return_if_fail (!gst_caps_is_any (caps));
2543    */
2545   if (gst_caps_is_fixed (caps) || gst_caps_is_any (caps))
2546     return;
2548   fixatefunc = GST_PAD_FIXATECAPSFUNC (pad);
2549   if (fixatefunc) {
2550     fixatefunc (pad, caps);
2551   }
2553   /* default fixation */
2554   gst_caps_truncate (caps);
2555   s = gst_caps_get_structure (caps, 0);
2556   gst_structure_foreach (s, gst_pad_default_fixate, s);
2559 /* Default accept caps implementation just checks against
2560  * against the allowed caps for the pad */
2561 static gboolean
2562 gst_pad_acceptcaps_default (GstPad * pad, GstCaps * caps)
2564   /* get the caps and see if it intersects to something not empty */
2565   GstCaps *allowed;
2566   gboolean result = FALSE;
2568   GST_DEBUG_OBJECT (pad, "caps %" GST_PTR_FORMAT, caps);
2570   allowed = gst_pad_get_caps_reffed (pad);
2571   if (!allowed)
2572     goto nothing_allowed;
2574   GST_DEBUG_OBJECT (pad, "allowed caps %" GST_PTR_FORMAT, allowed);
2576   result = gst_caps_can_intersect (allowed, caps);
2578   gst_caps_unref (allowed);
2580   return result;
2582   /* ERRORS */
2583 nothing_allowed:
2584   {
2585     GST_DEBUG_OBJECT (pad, "no caps allowed on the pad");
2586     return FALSE;
2587   }
2590 /**
2591  * gst_pad_accept_caps:
2592  * @pad: a #GstPad to check
2593  * @caps: a #GstCaps to check on the pad
2594  *
2595  * Check if the given pad accepts the caps.
2596  *
2597  * Returns: TRUE if the pad can accept the caps.
2598  */
2599 gboolean
2600 gst_pad_accept_caps (GstPad * pad, GstCaps * caps)
2602   gboolean result;
2603   GstPadAcceptCapsFunction acceptfunc;
2604   GstCaps *existing = NULL;
2606   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2608   /* any pad can be unnegotiated */
2609   if (caps == NULL)
2610     return TRUE;
2612   /* lock for checking the existing caps */
2613   GST_OBJECT_LOCK (pad);
2614   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "accept caps of %p", caps);
2615   /* The current caps on a pad are trivially acceptable */
2616   if (G_LIKELY ((existing = GST_PAD_CAPS (pad)))) {
2617     if (caps == existing || gst_caps_is_equal (caps, existing))
2618       goto is_same_caps;
2619   }
2620   acceptfunc = GST_PAD_ACCEPTCAPSFUNC (pad);
2621   GST_OBJECT_UNLOCK (pad);
2623   if (G_LIKELY (acceptfunc)) {
2624     /* we can call the function */
2625     result = acceptfunc (pad, caps);
2626     GST_DEBUG_OBJECT (pad, "acceptfunc returned %d", result);
2627   } else {
2628     /* Only null if the element explicitly unset it */
2629     result = gst_pad_acceptcaps_default (pad, caps);
2630     GST_DEBUG_OBJECT (pad, "default acceptcaps returned %d", result);
2631   }
2633 #ifndef G_DISABLE_ASSERT
2634   if (result) {
2635     GstCaps *padcaps;
2637     padcaps = gst_pad_get_caps_reffed (pad);
2638     if (!gst_caps_is_subset (caps, padcaps)) {
2639       gchar *padcaps_str, *caps_str;
2641       padcaps_str = gst_caps_to_string (padcaps);
2642       caps_str = gst_caps_to_string (caps);
2643       g_warning ("pad %s:%s accepted caps %s although "
2644           "they are not a subset of its caps %s",
2645           GST_DEBUG_PAD_NAME (pad), caps_str, padcaps_str);
2646       g_free (padcaps_str);
2647       g_free (caps_str);
2648     }
2649     gst_caps_unref (padcaps);
2650   }
2651 #endif
2653   return result;
2655 is_same_caps:
2656   {
2657     GST_DEBUG_OBJECT (pad, "pad had same caps");
2658     GST_OBJECT_UNLOCK (pad);
2659     return TRUE;
2660   }
2663 /**
2664  * gst_pad_peer_accept_caps:
2665  * @pad: a  #GstPad to check the peer of
2666  * @caps: a #GstCaps to check on the pad
2667  *
2668  * Check if the peer of @pad accepts @caps. If @pad has no peer, this function
2669  * returns TRUE.
2670  *
2671  * Returns: TRUE if the peer of @pad can accept the caps or @pad has no peer.
2672  */
2673 gboolean
2674 gst_pad_peer_accept_caps (GstPad * pad, GstCaps * caps)
2676   GstPad *peerpad;
2677   gboolean result;
2679   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2681   GST_OBJECT_LOCK (pad);
2683   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "peer accept caps of (%p)", pad);
2685   peerpad = GST_PAD_PEER (pad);
2686   if (G_UNLIKELY (peerpad == NULL))
2687     goto no_peer;
2689   gst_object_ref (peerpad);
2690   /* release lock before calling external methods but keep ref to pad */
2691   GST_OBJECT_UNLOCK (pad);
2693   result = gst_pad_accept_caps (peerpad, caps);
2695   gst_object_unref (peerpad);
2697   return result;
2699 no_peer:
2700   {
2701     GST_OBJECT_UNLOCK (pad);
2702     return TRUE;
2703   }
2706 /**
2707  * gst_pad_set_caps:
2708  * @pad: a  #GstPad to set the capabilities of.
2709  * @caps: (transfer none): a #GstCaps to set.
2710  *
2711  * Sets the capabilities of this pad. The caps must be fixed. Any previous
2712  * caps on the pad will be unreffed. This function refs the caps so you should
2713  * unref if as soon as you don't need it anymore.
2714  * It is possible to set NULL caps, which will make the pad unnegotiated
2715  * again.
2716  *
2717  * Returns: TRUE if the caps could be set. FALSE if the caps were not fixed
2718  * or bad parameters were provided to this function.
2719  *
2720  * MT safe.
2721  */
2722 gboolean
2723 gst_pad_set_caps (GstPad * pad, GstCaps * caps)
2725   GstPadSetCapsFunction setcaps;
2726   GstCaps *existing;
2728   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2729   g_return_val_if_fail (caps == NULL || gst_caps_is_fixed (caps), FALSE);
2731   GST_OBJECT_LOCK (pad);
2732   existing = GST_PAD_CAPS (pad);
2733   if (existing == caps)
2734     goto was_ok;
2736   if (gst_caps_is_equal (caps, existing))
2737     goto setting_same_caps;
2739   setcaps = GST_PAD_SETCAPSFUNC (pad);
2741   /* call setcaps function to configure the pad only if the
2742    * caps is not NULL */
2743   if (setcaps != NULL && caps) {
2744     if (!GST_PAD_IS_IN_SETCAPS (pad)) {
2745       GST_OBJECT_FLAG_SET (pad, GST_PAD_IN_SETCAPS);
2746       GST_OBJECT_UNLOCK (pad);
2747       if (!setcaps (pad, caps))
2748         goto could_not_set;
2749       GST_OBJECT_LOCK (pad);
2750       GST_OBJECT_FLAG_UNSET (pad, GST_PAD_IN_SETCAPS);
2751     } else {
2752       GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "pad was dispatching");
2753     }
2754   }
2756   gst_caps_replace (&GST_PAD_CAPS (pad), caps);
2757   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "caps %p %" GST_PTR_FORMAT, caps,
2758       caps);
2759   GST_OBJECT_UNLOCK (pad);
2761 #if GLIB_CHECK_VERSION(2,26,0)
2762   g_object_notify_by_pspec ((GObject *) pad, pspec_caps);
2763 #else
2764   g_object_notify ((GObject *) pad, "caps");
2765 #endif
2767   return TRUE;
2769 was_ok:
2770   {
2771     GST_OBJECT_UNLOCK (pad);
2772     return TRUE;
2773   }
2774 setting_same_caps:
2775   {
2776     gst_caps_replace (&GST_PAD_CAPS (pad), caps);
2777     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2778         "caps %p %" GST_PTR_FORMAT " same as existing, updating ptr only", caps,
2779         caps);
2780     GST_OBJECT_UNLOCK (pad);
2781     return TRUE;
2782   }
2784   /* ERRORS */
2785 could_not_set:
2786   {
2787     GST_OBJECT_LOCK (pad);
2788     GST_OBJECT_FLAG_UNSET (pad, GST_PAD_IN_SETCAPS);
2789     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2790         "caps %" GST_PTR_FORMAT " could not be set", caps);
2791     GST_OBJECT_UNLOCK (pad);
2793     return FALSE;
2794   }
2797 static gboolean
2798 gst_pad_configure_sink (GstPad * pad, GstCaps * caps)
2800   gboolean res;
2802   /* See if pad accepts the caps */
2803   if (!gst_caps_can_intersect (caps, gst_pad_get_pad_template_caps (pad)))
2804     goto not_accepted;
2806   /* set caps on pad if call succeeds */
2807   res = gst_pad_set_caps (pad, caps);
2808   /* no need to unref the caps here, set_caps takes a ref and
2809    * our ref goes away when we leave this function. */
2811   return res;
2813 not_accepted:
2814   {
2815     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2816         "caps %" GST_PTR_FORMAT " not accepted", caps);
2817     return FALSE;
2818   }
2821 /* returns TRUE if the src pad could be configured to accept the given caps */
2822 static gboolean
2823 gst_pad_configure_src (GstPad * pad, GstCaps * caps, gboolean dosetcaps)
2825   gboolean res;
2827   if (dosetcaps) {
2828     /* See if pad accepts the caps */
2829     if (!gst_pad_accept_caps (pad, caps))
2830       goto not_accepted;
2832     res = gst_pad_set_caps (pad, caps);
2833   } else {
2834     res = TRUE;
2835   }
2836   return res;
2838 not_accepted:
2839   {
2840     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2841         "caps %" GST_PTR_FORMAT " not accepted", caps);
2842     return FALSE;
2843   }
2846 /**
2847  * gst_pad_get_pad_template_caps:
2848  * @pad: a #GstPad to get the template capabilities from.
2849  *
2850  * Gets the capabilities for @pad's template.
2851  *
2852  * Returns: (transfer none): the #GstCaps of this pad template. If you intend
2853  *     to keep a reference on the caps, make a copy (see gst_caps_copy ()).
2854  */
2855 const GstCaps *
2856 gst_pad_get_pad_template_caps (GstPad * pad)
2858   static GstStaticCaps anycaps = GST_STATIC_CAPS ("ANY");
2860   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2862   if (GST_PAD_PAD_TEMPLATE (pad))
2863     return GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (pad));
2865   return gst_static_caps_get (&anycaps);
2868 /**
2869  * gst_pad_get_peer:
2870  * @pad: a #GstPad to get the peer of.
2871  *
2872  * Gets the peer of @pad. This function refs the peer pad so
2873  * you need to unref it after use.
2874  *
2875  * Returns: (transfer full): the peer #GstPad. Unref after usage.
2876  *
2877  * MT safe.
2878  */
2879 GstPad *
2880 gst_pad_get_peer (GstPad * pad)
2882   GstPad *result;
2884   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2886   GST_OBJECT_LOCK (pad);
2887   result = GST_PAD_PEER (pad);
2888   if (result)
2889     gst_object_ref (result);
2890   GST_OBJECT_UNLOCK (pad);
2892   return result;
2895 /**
2896  * gst_pad_get_allowed_caps:
2897  * @pad: a #GstPad.
2898  *
2899  * Gets the capabilities of the allowed media types that can flow through
2900  * @pad and its peer.
2901  *
2902  * The allowed capabilities is calculated as the intersection of the results of
2903  * calling gst_pad_get_caps() on @pad and its peer. The caller owns a reference
2904  * on the resulting caps.
2905  *
2906  * Returns: (transfer full): the allowed #GstCaps of the pad link. Unref the
2907  *     caps when you no longer need it. This function returns NULL when @pad
2908  *     has no peer.
2909  *
2910  * MT safe.
2911  */
2912 GstCaps *
2913 gst_pad_get_allowed_caps (GstPad * pad)
2915   GstCaps *mycaps;
2916   GstCaps *caps;
2917   GstCaps *peercaps;
2918   GstPad *peer;
2920   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2922   GST_OBJECT_LOCK (pad);
2924   peer = GST_PAD_PEER (pad);
2925   if (G_UNLIKELY (peer == NULL))
2926     goto no_peer;
2928   GST_CAT_DEBUG_OBJECT (GST_CAT_PROPERTIES, pad, "getting allowed caps");
2930   gst_object_ref (peer);
2931   GST_OBJECT_UNLOCK (pad);
2932   mycaps = gst_pad_get_caps_reffed (pad);
2934   peercaps = gst_pad_get_caps_reffed (peer);
2935   gst_object_unref (peer);
2937   caps = gst_caps_intersect (mycaps, peercaps);
2938   gst_caps_unref (peercaps);
2939   gst_caps_unref (mycaps);
2941   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "allowed caps %" GST_PTR_FORMAT,
2942       caps);
2944   return caps;
2946 no_peer:
2947   {
2948     GST_CAT_DEBUG_OBJECT (GST_CAT_PROPERTIES, pad, "no peer");
2949     GST_OBJECT_UNLOCK (pad);
2951     return NULL;
2952   }
2955 /**
2956  * gst_pad_get_negotiated_caps:
2957  * @pad: a #GstPad.
2958  *
2959  * Gets the capabilities of the media type that currently flows through @pad
2960  * and its peer.
2961  *
2962  * This function can be used on both src and sinkpads. Note that srcpads are
2963  * always negotiated before sinkpads so it is possible that the negotiated caps
2964  * on the srcpad do not match the negotiated caps of the peer.
2965  *
2966  * Returns: (transfer full): the negotiated #GstCaps of the pad link. Unref
2967  *     the caps when you no longer need it. This function returns NULL when
2968  *     the @pad has no peer or is not negotiated yet.
2969  *
2970  * MT safe.
2971  */
2972 GstCaps *
2973 gst_pad_get_negotiated_caps (GstPad * pad)
2975   GstCaps *caps;
2976   GstPad *peer;
2978   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2980   GST_OBJECT_LOCK (pad);
2982   if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
2983     goto no_peer;
2985   GST_CAT_DEBUG_OBJECT (GST_CAT_PROPERTIES, pad, "getting negotiated caps");
2987   caps = GST_PAD_CAPS (pad);
2988   if (caps)
2989     gst_caps_ref (caps);
2990   GST_OBJECT_UNLOCK (pad);
2992   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "negotiated caps %" GST_PTR_FORMAT,
2993       caps);
2995   return caps;
2997 no_peer:
2998   {
2999     GST_CAT_DEBUG_OBJECT (GST_CAT_PROPERTIES, pad, "no peer");
3000     GST_OBJECT_UNLOCK (pad);
3002     return NULL;
3003   }
3006 /* calls the buffer_alloc function on the given pad */
3007 static GstFlowReturn
3008 gst_pad_buffer_alloc_unchecked (GstPad * pad, guint64 offset, gint size,
3009     GstCaps * caps, GstBuffer ** buf)
3011   GstFlowReturn ret;
3012   GstPadBufferAllocFunction bufferallocfunc;
3014   GST_OBJECT_LOCK (pad);
3015   /* when the pad is flushing we cannot give a buffer */
3016   if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
3017     goto flushing;
3019   bufferallocfunc = pad->bufferallocfunc;
3021   if (offset == GST_BUFFER_OFFSET_NONE) {
3022     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
3023         "calling bufferallocfunc &%s (@%p) for size %d offset NONE",
3024         GST_DEBUG_FUNCPTR_NAME (bufferallocfunc), bufferallocfunc, size);
3025   } else {
3026     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
3027         "calling bufferallocfunc &%s (@%p) of for size %d offset %"
3028         G_GUINT64_FORMAT, GST_DEBUG_FUNCPTR_NAME (bufferallocfunc),
3029         bufferallocfunc, size, offset);
3030   }
3031   GST_OBJECT_UNLOCK (pad);
3033   /* G_LIKELY for now since most elements don't implement a buffer alloc
3034    * function and there is no default alloc proxy function as this is usually
3035    * not possible. */
3036   if (G_LIKELY (bufferallocfunc == NULL))
3037     goto fallback;
3039   ret = bufferallocfunc (pad, offset, size, caps, buf);
3041   if (G_UNLIKELY (ret != GST_FLOW_OK))
3042     goto error;
3044   /* no error, but NULL buffer means fallback to the default */
3045   if (G_UNLIKELY (*buf == NULL))
3046     goto fallback;
3048   /* If the buffer alloc function didn't set up the caps like it should,
3049    * do it for it */
3050   if (G_UNLIKELY (caps && (GST_BUFFER_CAPS (*buf) == NULL))) {
3051     GST_WARNING_OBJECT (pad,
3052         "Buffer allocation function did not set caps. Setting");
3053     gst_buffer_set_caps (*buf, caps);
3054   }
3055   return ret;
3057 flushing:
3058   {
3059     /* pad was flushing */
3060     GST_OBJECT_UNLOCK (pad);
3061     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "pad was flushing");
3062     return GST_FLOW_WRONG_STATE;
3063   }
3064 error:
3065   {
3066     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
3067         "alloc function returned error (%d) %s", ret, gst_flow_get_name (ret));
3068     return ret;
3069   }
3070 fallback:
3071   {
3072     /* fallback case, allocate a buffer of our own, add pad caps. */
3073     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "fallback buffer alloc");
3075     if ((*buf = gst_buffer_try_new_and_alloc (size))) {
3076       GST_BUFFER_OFFSET (*buf) = offset;
3077       gst_buffer_set_caps (*buf, caps);
3078       return GST_FLOW_OK;
3079     } else {
3080       GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
3081           "out of memory allocating %d bytes", size);
3082       return GST_FLOW_ERROR;
3083     }
3084   }
3087 /* FIXME 0.11: size should be unsigned */
3088 static GstFlowReturn
3089 gst_pad_alloc_buffer_full (GstPad * pad, guint64 offset, gint size,
3090     GstCaps * caps, GstBuffer ** buf, gboolean setcaps)
3092   GstPad *peer;
3093   GstFlowReturn ret;
3094   GstCaps *newcaps;
3095   gboolean caps_changed;
3097   g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
3098   g_return_val_if_fail (GST_PAD_IS_SRC (pad), GST_FLOW_ERROR);
3099   g_return_val_if_fail (buf != NULL, GST_FLOW_ERROR);
3100   g_return_val_if_fail (size >= 0, GST_FLOW_ERROR);
3102   GST_DEBUG_OBJECT (pad, "offset %" G_GUINT64_FORMAT ", size %d, caps %"
3103       GST_PTR_FORMAT, offset, size, caps);
3105   GST_OBJECT_LOCK (pad);
3106   while (G_UNLIKELY (GST_PAD_IS_BLOCKED (pad)))
3107     if ((ret = handle_pad_block (pad)) != GST_FLOW_OK)
3108       goto flushed;
3110   if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
3111     goto no_peer;
3113   gst_object_ref (peer);
3114   GST_OBJECT_UNLOCK (pad);
3116   ret = gst_pad_buffer_alloc_unchecked (peer, offset, size, caps, buf);
3117   gst_object_unref (peer);
3119   if (G_UNLIKELY (ret != GST_FLOW_OK))
3120     goto peer_error;
3122   /* FIXME, move capnego this into a base class? */
3123   newcaps = GST_BUFFER_CAPS (*buf);
3125   /* Lock for checking caps, pretty pointless as the _pad_push() function might
3126    * change it concurrently, one of the problems with automatic caps setting in
3127    * pad_alloc_and_set_caps. Worst case, if does a check too much, but only
3128    * when there is heavy renegotiation going on in both directions. */
3129   GST_OBJECT_LOCK (pad);
3130   caps_changed = newcaps && newcaps != GST_PAD_CAPS (pad);
3131   GST_OBJECT_UNLOCK (pad);
3133   /* we got a new datatype on the pad, see if it can handle it */
3134   if (G_UNLIKELY (caps_changed)) {
3135     GST_DEBUG_OBJECT (pad,
3136         "caps changed from %" GST_PTR_FORMAT " to %p %" GST_PTR_FORMAT,
3137         GST_PAD_CAPS (pad), newcaps, newcaps);
3138     if (G_UNLIKELY (!gst_pad_configure_src (pad, newcaps, setcaps)))
3139       goto not_negotiated;
3140   }
3142   /* sanity check (only if caps are the same) */
3143   if (G_LIKELY (newcaps == caps) && G_UNLIKELY (GST_BUFFER_SIZE (*buf) < size))
3144     goto wrong_size_fallback;
3146   return ret;
3148 flushed:
3149   {
3150     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "pad block stopped by flush");
3151     GST_OBJECT_UNLOCK (pad);
3152     return ret;
3153   }
3154 no_peer:
3155   {
3156     /* pad has no peer */
3157     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
3158         "called bufferallocfunc but had no peer");
3159     GST_OBJECT_UNLOCK (pad);
3160     return GST_FLOW_NOT_LINKED;
3161   }
3162 peer_error:
3163   {
3164     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3165         "alloc function returned error %s", gst_flow_get_name (ret));
3166     return ret;
3167   }
3168 not_negotiated:
3169   {
3170     gst_buffer_unref (*buf);
3171     *buf = NULL;
3172     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3173         "alloc function returned unacceptable buffer");
3174     return GST_FLOW_NOT_NEGOTIATED;
3175   }
3176 wrong_size_fallback:
3177   {
3178     GST_CAT_ERROR_OBJECT (GST_CAT_PADS, pad, "buffer returned by alloc "
3179         "function is too small (%u < %d), doing fallback buffer alloc",
3180         GST_BUFFER_SIZE (*buf), size);
3182     gst_buffer_unref (*buf);
3184     if ((*buf = gst_buffer_try_new_and_alloc (size))) {
3185       GST_BUFFER_OFFSET (*buf) = offset;
3186       gst_buffer_set_caps (*buf, caps);
3187       return GST_FLOW_OK;
3188     } else {
3189       GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
3190           "out of memory allocating %d bytes", size);
3191       return GST_FLOW_ERROR;
3192     }
3193   }
3196 /**
3197  * gst_pad_alloc_buffer:
3198  * @pad: a source #GstPad
3199  * @offset: the offset of the new buffer in the stream
3200  * @size: the size of the new buffer
3201  * @caps: the caps of the new buffer
3202  * @buf: a newly allocated buffer
3203  *
3204  * Allocates a new, empty buffer optimized to push to pad @pad.  This
3205  * function only works if @pad is a source pad and has a peer.
3206  *
3207  * A new, empty #GstBuffer will be put in the @buf argument.
3208  * You need to check the caps of the buffer after performing this
3209  * function and renegotiate to the format if needed. If the caps changed, it is
3210  * possible that the buffer returned in @buf is not of the right size for the
3211  * new format, @buf needs to be unreffed and reallocated if this is the case.
3212  *
3213  * Returns: a result code indicating success of the operation. Any
3214  * result code other than #GST_FLOW_OK is an error and @buf should
3215  * not be used.
3216  * An error can occur if the pad is not connected or when the downstream
3217  * peer elements cannot provide an acceptable buffer.
3218  *
3219  * MT safe.
3220  */
3222 /* FIXME 0.11: size should be unsigned */
3223 GstFlowReturn
3224 gst_pad_alloc_buffer (GstPad * pad, guint64 offset, gint size, GstCaps * caps,
3225     GstBuffer ** buf)
3227   return gst_pad_alloc_buffer_full (pad, offset, size, caps, buf, FALSE);
3230 /**
3231  * gst_pad_alloc_buffer_and_set_caps:
3232  * @pad: a source #GstPad
3233  * @offset: the offset of the new buffer in the stream
3234  * @size: the size of the new buffer
3235  * @caps: (transfer none): the caps of the new buffer
3236  * @buf: (out callee-allocates): a newly allocated buffer
3237  *
3238  * In addition to the function gst_pad_alloc_buffer(), this function
3239  * automatically calls gst_pad_set_caps() when the caps of the
3240  * newly allocated buffer are different from the @pad caps.
3241  *
3242  * After a renegotiation, the size of the new buffer returned in @buf could
3243  * be of the wrong size for the new format and must be unreffed an reallocated
3244  * in that case.
3245  *
3246  * Returns: a result code indicating success of the operation. Any
3247  * result code other than #GST_FLOW_OK is an error and @buf should
3248  * not be used.
3249  * An error can occur if the pad is not connected or when the downstream
3250  * peer elements cannot provide an acceptable buffer.
3251  *
3252  * MT safe.
3253  */
3255 /* FIXME 0.11: size should be unsigned */
3256 GstFlowReturn
3257 gst_pad_alloc_buffer_and_set_caps (GstPad * pad, guint64 offset, gint size,
3258     GstCaps * caps, GstBuffer ** buf)
3260   return gst_pad_alloc_buffer_full (pad, offset, size, caps, buf, TRUE);
3264 #ifndef GST_REMOVE_DEPRECATED
3265 typedef struct
3267   GList *list;
3268   guint32 cookie;
3269 } IntLinkIterData;
3271 static void
3272 int_link_iter_data_free (IntLinkIterData * data)
3274   g_list_free (data->list);
3275   g_slice_free (IntLinkIterData, data);
3277 #endif
3279 static GstIteratorItem
3280 iterate_pad (GstIterator * it, GstPad * pad)
3282   gst_object_ref (pad);
3283   return GST_ITERATOR_ITEM_PASS;
3286 /**
3287  * gst_pad_iterate_internal_links_default:
3288  * @pad: the #GstPad to get the internal links of.
3289  *
3290  * Iterate the list of pads to which the given pad is linked to inside of
3291  * the parent element.
3292  * This is the default handler, and thus returns an iterator of all of the
3293  * pads inside the parent element with opposite direction.
3294  *
3295  * The caller must free this iterator after use with gst_iterator_free().
3296  *
3297  * Returns: a #GstIterator of #GstPad, or NULL if @pad has no parent. Unref each
3298  * returned pad with gst_object_unref().
3299  *
3300  * Since: 0.10.21
3301  */
3302 GstIterator *
3303 gst_pad_iterate_internal_links_default (GstPad * pad)
3305   GstIterator *res;
3306   GList **padlist;
3307   guint32 *cookie;
3308   GMutex *lock;
3309   gpointer owner;
3310   GstIteratorDisposeFunction dispose;
3312   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
3314 #ifndef GST_REMOVE_DEPRECATED
3315   /* when we get here, the default handler for the iterate links is called,
3316    * which means that the user has not installed a custom one. We first check if
3317    * there is maybe a custom legacy function we can call. */
3318   if (GST_PAD_INTLINKFUNC (pad) &&
3319       GST_PAD_INTLINKFUNC (pad) != gst_pad_get_internal_links_default) {
3320     IntLinkIterData *data;
3322     /* make an iterator for the list. We can't protect the list with a
3323      * cookie. If we would take the cookie of the parent element, we need to
3324      * have a parent, which is not required for GST_PAD_INTLINKFUNC(). We could
3325      * cache the per-pad list and invalidate the list when a new call to
3326      * INTLINKFUNC() returned a different list but then this would only work if
3327      * two concurrent iterators were used and the last iterator would still be
3328      * thread-unsafe. Just don't use this method anymore. */
3329     data = g_slice_new (IntLinkIterData);
3330     data->list = ((GstPadIntLinkFunction) GST_PAD_INTLINKFUNC (pad)) (pad);
3331     data->cookie = 0;
3333     GST_WARNING_OBJECT (pad, "Making unsafe iterator");
3335     cookie = &data->cookie;
3336     padlist = &data->list;
3337     owner = data;
3338     dispose = (GstIteratorDisposeFunction) int_link_iter_data_free;
3339     /* reuse the pad lock, it's all we have here */
3340     lock = GST_OBJECT_GET_LOCK (pad);
3341   } else
3342 #endif
3343   {
3344     GstElement *parent;
3346     GST_OBJECT_LOCK (pad);
3347     parent = GST_PAD_PARENT (pad);
3348     if (!parent || !GST_IS_ELEMENT (parent))
3349       goto no_parent;
3351     gst_object_ref (parent);
3352     GST_OBJECT_UNLOCK (pad);
3354     if (pad->direction == GST_PAD_SRC)
3355       padlist = &parent->sinkpads;
3356     else
3357       padlist = &parent->srcpads;
3359     GST_DEBUG_OBJECT (pad, "Making iterator");
3361     cookie = &parent->pads_cookie;
3362     owner = parent;
3363     dispose = (GstIteratorDisposeFunction) gst_object_unref;
3364     lock = GST_OBJECT_GET_LOCK (parent);
3365   }
3367   res = gst_iterator_new_list (GST_TYPE_PAD,
3368       lock, cookie, padlist, owner, (GstIteratorItemFunction) iterate_pad,
3369       dispose);
3371   return res;
3373   /* ERRORS */
3374 no_parent:
3375   {
3376     GST_OBJECT_UNLOCK (pad);
3377     GST_DEBUG_OBJECT (pad, "no parent element");
3378     return NULL;
3379   }
3382 /**
3383  * gst_pad_iterate_internal_links:
3384  * @pad: the GstPad to get the internal links of.
3385  *
3386  * Gets an iterator for the pads to which the given pad is linked to inside
3387  * of the parent element.
3388  *
3389  * Each #GstPad element yielded by the iterator will have its refcount increased,
3390  * so unref after use.
3391  *
3392  * Free-function: gst_iterator_free
3393  *
3394  * Returns: (transfer full): a new #GstIterator of #GstPad or %NULL when the
3395  *     pad does not have an iterator function configured. Use
3396  *     gst_iterator_free() after usage.
3397  *
3398  * Since: 0.10.21
3399  */
3400 GstIterator *
3401 gst_pad_iterate_internal_links (GstPad * pad)
3403   GstIterator *res = NULL;
3405   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
3407   if (GST_PAD_ITERINTLINKFUNC (pad))
3408     res = GST_PAD_ITERINTLINKFUNC (pad) (pad);
3410   return res;
3413 #ifndef GST_REMOVE_DEPRECATED
3414 static void
3415 add_unref_pad_to_list (GstPad * pad, GList ** list)
3417   *list = g_list_prepend (*list, pad);
3418   gst_object_unref (pad);
3420 #endif
3422 /**
3423  * gst_pad_get_internal_links_default:
3424  * @pad: the #GstPad to get the internal links of.
3425  *
3426  * Gets a list of pads to which the given pad is linked to
3427  * inside of the parent element.
3428  * This is the default handler, and thus returns a list of all of the
3429  * pads inside the parent element with opposite direction.
3430  *
3431  * The caller must free this list after use with g_list_free().
3432  *
3433  * Returns: (transfer full) (element-type Gst.Pad): a newly allocated #GList
3434  *     of pads, or NULL if the pad has no parent.
3435  *
3436  * Not MT safe.
3437  *
3438  * Deprecated: This function does not ref the pads in the list so that they
3439  * could become invalid by the time the application accesses them. It's also
3440  * possible that the list changes while handling the pads, which the caller of
3441  * this function is unable to know. Use the thread-safe
3442  * gst_pad_iterate_internal_links_default() instead.
3443  */
3444 #ifndef GST_REMOVE_DEPRECATED
3445 GList *
3446 gst_pad_get_internal_links_default (GstPad * pad)
3448   GList *res = NULL;
3449   GstElement *parent;
3451   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
3453   GST_WARNING_OBJECT (pad, "Unsafe internal links used");
3455   /* when we get here, the default handler for get_internal_links is called,
3456    * which means that the user has not installed a custom one. We first check if
3457    * there is maybe a custom iterate function we can call. */
3458   if (GST_PAD_ITERINTLINKFUNC (pad) &&
3459       GST_PAD_ITERINTLINKFUNC (pad) != gst_pad_iterate_internal_links_default) {
3460     GstIterator *it;
3461     GstIteratorResult ires;
3462     gboolean done = FALSE;
3464     it = gst_pad_iterate_internal_links (pad);
3465     /* loop over the iterator and put all elements into a list, we also
3466      * immediately unref them, which is bad. */
3467     do {
3468       ires = gst_iterator_foreach (it, (GFunc) add_unref_pad_to_list, &res);
3469       switch (ires) {
3470         case GST_ITERATOR_OK:
3471         case GST_ITERATOR_DONE:
3472         case GST_ITERATOR_ERROR:
3473           done = TRUE;
3474           break;
3475         case GST_ITERATOR_RESYNC:
3476           /* restart, discard previous list */
3477           gst_iterator_resync (it);
3478           g_list_free (res);
3479           res = NULL;
3480           break;
3481       }
3482     } while (!done);
3484     gst_iterator_free (it);
3485   } else {
3486     /* lock pad, check and ref parent */
3487     GST_OBJECT_LOCK (pad);
3488     parent = GST_PAD_PARENT (pad);
3489     if (!parent || !GST_IS_ELEMENT (parent))
3490       goto no_parent;
3492     parent = gst_object_ref (parent);
3493     GST_OBJECT_UNLOCK (pad);
3495     /* now lock the parent while we copy the pads */
3496     GST_OBJECT_LOCK (parent);
3497     if (pad->direction == GST_PAD_SRC)
3498       res = g_list_copy (parent->sinkpads);
3499     else
3500       res = g_list_copy (parent->srcpads);
3501     GST_OBJECT_UNLOCK (parent);
3503     gst_object_unref (parent);
3504   }
3506   /* At this point pads can be changed and unreffed. Nothing we can do about it
3507    * because for compatibility reasons this function cannot ref the pads or
3508    * notify the app that the list changed. */
3510   return res;
3512 no_parent:
3513   {
3514     GST_DEBUG_OBJECT (pad, "no parent");
3515     GST_OBJECT_UNLOCK (pad);
3516     return NULL;
3517   }
3519 #endif /* GST_REMOVE_DEPRECATED */
3521 /**
3522  * gst_pad_get_internal_links:
3523  * @pad: the #GstPad to get the internal links of.
3524  *
3525  * Gets a list of pads to which the given pad is linked to
3526  * inside of the parent element.
3527  * The caller must free this list after use.
3528  *
3529  * Not MT safe.
3530  *
3531  * Returns: (transfer full) (element-type Gst.Pad): a newly allocated #GList
3532  *     of pads, free with g_list_free().
3533  *
3534  * Deprecated: This function does not ref the pads in the list so that they
3535  * could become invalid by the time the application accesses them. It's also
3536  * possible that the list changes while handling the pads, which the caller of
3537  * this function is unable to know. Use the thread-safe
3538  * gst_pad_iterate_internal_links() instead.
3539  */
3540 #ifndef GST_REMOVE_DEPRECATED
3541 #ifdef GST_DISABLE_DEPRECATED
3542 GList *gst_pad_get_internal_links (GstPad * pad);
3543 #endif
3544 GList *
3545 gst_pad_get_internal_links (GstPad * pad)
3547   GList *res = NULL;
3549   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
3551   GST_WARNING_OBJECT (pad, "Calling unsafe internal links");
3553   if (GST_PAD_INTLINKFUNC (pad))
3554     res = ((GstPadIntLinkFunction) GST_PAD_INTLINKFUNC (pad)) (pad);
3556   return res;
3558 #endif /* GST_REMOVE_DEPRECATED */
3560 static gboolean
3561 gst_pad_event_default_dispatch (GstPad * pad, GstEvent * event)
3563   gboolean result = FALSE;
3564   GstIterator *iter;
3565   gboolean done = FALSE;
3566   gpointer item;
3567   GstPad *eventpad;
3568   GList *pushed_pads = NULL;
3570   GST_INFO_OBJECT (pad, "Sending event %p (%s) to all internally linked pads",
3571       event, GST_EVENT_TYPE_NAME (event));
3573   iter = gst_pad_iterate_internal_links (pad);
3575   if (!iter)
3576     goto no_iter;
3578   while (!done) {
3579     switch (gst_iterator_next (iter, &item)) {
3580       case GST_ITERATOR_OK:
3581         eventpad = GST_PAD_CAST (item);
3583         /* if already pushed,  skip */
3584         if (g_list_find (pushed_pads, eventpad)) {
3585           gst_object_unref (item);
3586           break;
3587         }
3589         if (GST_PAD_IS_SRC (eventpad)) {
3590           /* for each pad we send to, we should ref the event; it's up
3591            * to downstream to unref again when handled. */
3592           GST_LOG_OBJECT (pad, "Reffing and sending event %p (%s) to %s:%s",
3593               event, GST_EVENT_TYPE_NAME (event),
3594               GST_DEBUG_PAD_NAME (eventpad));
3595           gst_event_ref (event);
3596           result |= gst_pad_push_event (eventpad, event);
3597         } else {
3598           /* we only send the event on one pad, multi-sinkpad elements
3599            * should implement a handler */
3600           GST_LOG_OBJECT (pad, "sending event %p (%s) to one sink pad %s:%s",
3601               event, GST_EVENT_TYPE_NAME (event),
3602               GST_DEBUG_PAD_NAME (eventpad));
3603           result = gst_pad_push_event (eventpad, event);
3604           done = TRUE;
3605           event = NULL;
3606         }
3608         pushed_pads = g_list_prepend (pushed_pads, eventpad);
3610         gst_object_unref (item);
3611         break;
3612       case GST_ITERATOR_RESYNC:
3613         /* We don't reset the result here because we don't push the event
3614          * again on pads that got the event already and because we need
3615          * to consider the result of the previous pushes */
3616         gst_iterator_resync (iter);
3617         break;
3618       case GST_ITERATOR_ERROR:
3619         GST_ERROR_OBJECT (pad, "Could not iterate over internally linked pads");
3620         done = TRUE;
3621         break;
3622       case GST_ITERATOR_DONE:
3623         done = TRUE;
3624         break;
3625     }
3626   }
3627   gst_iterator_free (iter);
3629 no_iter:
3631   /* If this is a sinkpad and we don't have pads to send the event to, we
3632    * return TRUE. This is so that when using the default handler on a sink
3633    * element, we don't fail to push it. */
3634   if (!pushed_pads)
3635     result = GST_PAD_IS_SINK (pad);
3637   g_list_free (pushed_pads);
3639   /* we handled the incoming event so we unref once */
3640   if (event) {
3641     GST_LOG_OBJECT (pad, "handled event %p, unreffing", event);
3642     gst_event_unref (event);
3643   }
3645   return result;
3648 /**
3649  * gst_pad_event_default:
3650  * @pad: a #GstPad to call the default event handler on.
3651  * @event: (transfer full): the #GstEvent to handle.
3652  *
3653  * Invokes the default event handler for the given pad. End-of-stream and
3654  * discontinuity events are handled specially, and then the event is sent to all
3655  * pads internally linked to @pad. Note that if there are many possible sink
3656  * pads that are internally linked to @pad, only one will be sent an event.
3657  * Multi-sinkpad elements should implement custom event handlers.
3658  *
3659  * Returns: TRUE if the event was sent successfully.
3660  */
3661 gboolean
3662 gst_pad_event_default (GstPad * pad, GstEvent * event)
3664   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3665   g_return_val_if_fail (event != NULL, FALSE);
3667   GST_LOG_OBJECT (pad, "default event handler");
3669   switch (GST_EVENT_TYPE (event)) {
3670     case GST_EVENT_EOS:
3671     {
3672       GST_DEBUG_OBJECT (pad, "pausing task because of eos");
3673       gst_pad_pause_task (pad);
3674     }
3675       /* fall thru */
3676     default:
3677       break;
3678   }
3680   return gst_pad_event_default_dispatch (pad, event);
3683 /**
3684  * gst_pad_dispatcher:
3685  * @pad: a #GstPad to dispatch.
3686  * @dispatch: the #GstPadDispatcherFunction to call.
3687  * @data: (closure): gpointer user data passed to the dispatcher function.
3688  *
3689  * Invokes the given dispatcher function on each respective peer of
3690  * all pads that are internally linked to the given pad.
3691  * The GstPadDispatcherFunction should return TRUE when no further pads
3692  * need to be processed.
3693  *
3694  * Returns: TRUE if one of the dispatcher functions returned TRUE.
3695  */
3696 gboolean
3697 gst_pad_dispatcher (GstPad * pad, GstPadDispatcherFunction dispatch,
3698     gpointer data)
3700   gboolean res = FALSE;
3701   GstIterator *iter = NULL;
3702   gboolean done = FALSE;
3703   gpointer item;
3705   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3706   g_return_val_if_fail (dispatch != NULL, FALSE);
3708   iter = gst_pad_iterate_internal_links (pad);
3710   if (!iter)
3711     goto no_iter;
3713   while (!done) {
3714     switch (gst_iterator_next (iter, &item)) {
3715       case GST_ITERATOR_OK:
3716       {
3717         GstPad *int_pad = GST_PAD_CAST (item);
3718         GstPad *int_peer = gst_pad_get_peer (int_pad);
3720         if (int_peer) {
3721           GST_DEBUG_OBJECT (int_pad, "dispatching to peer %s:%s",
3722               GST_DEBUG_PAD_NAME (int_peer));
3723           done = res = dispatch (int_peer, data);
3724           gst_object_unref (int_peer);
3725         } else {
3726           GST_DEBUG_OBJECT (int_pad, "no peer");
3727         }
3728       }
3729         gst_object_unref (item);
3730         break;
3731       case GST_ITERATOR_RESYNC:
3732         gst_iterator_resync (iter);
3733         break;
3734       case GST_ITERATOR_ERROR:
3735         done = TRUE;
3736         GST_ERROR_OBJECT (pad, "Could not iterate internally linked pads");
3737         break;
3738       case GST_ITERATOR_DONE:
3739         done = TRUE;
3740         break;
3741     }
3742   }
3743   gst_iterator_free (iter);
3745   GST_DEBUG_OBJECT (pad, "done, result %d", res);
3747 no_iter:
3749   return res;
3752 /**
3753  * gst_pad_query:
3754  * @pad: a #GstPad to invoke the default query on.
3755  * @query: (transfer none): the #GstQuery to perform.
3756  *
3757  * Dispatches a query to a pad. The query should have been allocated by the
3758  * caller via one of the type-specific allocation functions. The element that
3759  * the pad belongs to is responsible for filling the query with an appropriate
3760  * response, which should then be parsed with a type-specific query parsing
3761  * function.
3762  *
3763  * Again, the caller is responsible for both the allocation and deallocation of
3764  * the query structure.
3765  *
3766  * Please also note that some queries might need a running pipeline to work.
3767  *
3768  * Returns: TRUE if the query could be performed.
3769  */
3770 gboolean
3771 gst_pad_query (GstPad * pad, GstQuery * query)
3773   GstPadQueryFunction func;
3775   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3776   g_return_val_if_fail (GST_IS_QUERY (query), FALSE);
3778   GST_DEBUG_OBJECT (pad, "sending query %p", query);
3780   if ((func = GST_PAD_QUERYFUNC (pad)) == NULL)
3781     goto no_func;
3783   return func (pad, query);
3785 no_func:
3786   {
3787     GST_DEBUG_OBJECT (pad, "had no query function");
3788     return FALSE;
3789   }
3792 /**
3793  * gst_pad_peer_query:
3794  * @pad: a #GstPad to invoke the peer query on.
3795  * @query: (transfer none): the #GstQuery to perform.
3796  *
3797  * Performs gst_pad_query() on the peer of @pad.
3798  *
3799  * The caller is responsible for both the allocation and deallocation of
3800  * the query structure.
3801  *
3802  * Returns: TRUE if the query could be performed. This function returns %FALSE
3803  * if @pad has no peer.
3804  *
3805  * Since: 0.10.15
3806  */
3807 gboolean
3808 gst_pad_peer_query (GstPad * pad, GstQuery * query)
3810   GstPad *peerpad;
3811   gboolean result;
3813   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3814   g_return_val_if_fail (GST_IS_QUERY (query), FALSE);
3816   GST_OBJECT_LOCK (pad);
3818   GST_DEBUG_OBJECT (pad, "peer query");
3820   peerpad = GST_PAD_PEER (pad);
3821   if (G_UNLIKELY (peerpad == NULL))
3822     goto no_peer;
3824   gst_object_ref (peerpad);
3825   GST_OBJECT_UNLOCK (pad);
3827   result = gst_pad_query (peerpad, query);
3829   gst_object_unref (peerpad);
3831   return result;
3833   /* ERRORS */
3834 no_peer:
3835   {
3836     GST_WARNING_OBJECT (pad, "pad has no peer");
3837     GST_OBJECT_UNLOCK (pad);
3838     return FALSE;
3839   }
3842 /**
3843  * gst_pad_query_default:
3844  * @pad: a #GstPad to call the default query handler on.
3845  * @query: (transfer none): the #GstQuery to handle.
3846  *
3847  * Invokes the default query handler for the given pad.
3848  * The query is sent to all pads internally linked to @pad. Note that
3849  * if there are many possible sink pads that are internally linked to
3850  * @pad, only one will be sent the query.
3851  * Multi-sinkpad elements should implement custom query handlers.
3852  *
3853  * Returns: TRUE if the query was performed successfully.
3854  */
3855 gboolean
3856 gst_pad_query_default (GstPad * pad, GstQuery * query)
3858   switch (GST_QUERY_TYPE (query)) {
3859     case GST_QUERY_POSITION:
3860     case GST_QUERY_SEEKING:
3861     case GST_QUERY_FORMATS:
3862     case GST_QUERY_LATENCY:
3863     case GST_QUERY_JITTER:
3864     case GST_QUERY_RATE:
3865     case GST_QUERY_CONVERT:
3866     default:
3867       return gst_pad_dispatcher
3868           (pad, (GstPadDispatcherFunction) gst_pad_query, query);
3869   }
3872 #if !defined(GST_DISABLE_LOADSAVE) && !defined(GST_REMOVE_DEPRECATED)
3873 /* FIXME: why isn't this on a GstElement ? */
3874 /**
3875  * gst_pad_load_and_link:
3876  * @self: an #xmlNodePtr to read the description from.
3877  * @parent: the #GstObject element that owns the pad.
3878  *
3879  * Reads the pad definition from the XML node and links the given pad
3880  * in the element to a pad of an element up in the hierarchy.
3881  */
3882 void
3883 gst_pad_load_and_link (xmlNodePtr self, GstObject * parent)
3885   xmlNodePtr field = self->xmlChildrenNode;
3886   GstPad *pad = NULL, *targetpad;
3887   GstPadTemplate *tmpl;
3888   gchar *peer = NULL;
3889   gchar **split;
3890   GstElement *target;
3891   GstObject *grandparent;
3892   gchar *name = NULL;
3894   while (field) {
3895     if (!strcmp ((char *) field->name, "name")) {
3896       name = (gchar *) xmlNodeGetContent (field);
3897       pad = gst_element_get_static_pad (GST_ELEMENT (parent), name);
3898       if ((!pad) || ((tmpl = gst_pad_get_pad_template (pad))
3899               && (GST_PAD_REQUEST == GST_PAD_TEMPLATE_PRESENCE (tmpl))))
3900         pad = gst_element_get_request_pad (GST_ELEMENT (parent), name);
3901       g_free (name);
3902     } else if (!strcmp ((char *) field->name, "peer")) {
3903       peer = (gchar *) xmlNodeGetContent (field);
3904     }
3905     field = field->next;
3906   }
3907   g_return_if_fail (pad != NULL);
3909   if (peer == NULL)
3910     return;
3912   split = g_strsplit (peer, ".", 2);
3914   if (split[0] == NULL || split[1] == NULL) {
3915     GST_CAT_DEBUG_OBJECT (GST_CAT_XML, pad,
3916         "Could not parse peer '%s', leaving unlinked", peer);
3918     g_free (peer);
3919     return;
3920   }
3921   g_free (peer);
3923   g_return_if_fail (split[0] != NULL);
3924   g_return_if_fail (split[1] != NULL);
3926   grandparent = gst_object_get_parent (parent);
3928   if (grandparent && GST_IS_BIN (grandparent)) {
3929     target = gst_bin_get_by_name_recurse_up (GST_BIN (grandparent), split[0]);
3930   } else
3931     goto cleanup;
3933   if (target == NULL)
3934     goto cleanup;
3936   targetpad = gst_element_get_static_pad (target, split[1]);
3937   if (!targetpad)
3938     targetpad = gst_element_get_request_pad (target, split[1]);
3940   if (targetpad == NULL)
3941     goto cleanup;
3943   if (gst_pad_get_direction (pad) == GST_PAD_SRC)
3944     gst_pad_link (pad, targetpad);
3945   else
3946     gst_pad_link (targetpad, pad);
3948 cleanup:
3949   g_strfreev (split);
3952 /**
3953  * gst_pad_save_thyself:
3954  * @pad: a #GstPad to save.
3955  * @parent: the parent #xmlNodePtr to save the description in.
3956  *
3957  * Saves the pad into an xml representation.
3958  *
3959  * Returns: the #xmlNodePtr representation of the pad.
3960  */
3961 static xmlNodePtr
3962 gst_pad_save_thyself (GstObject * object, xmlNodePtr parent)
3964   GstPad *pad;
3965   GstPad *peer;
3967   g_return_val_if_fail (GST_IS_PAD (object), NULL);
3969   pad = GST_PAD_CAST (object);
3971   xmlNewChild (parent, NULL, (xmlChar *) "name",
3972       (xmlChar *) GST_PAD_NAME (pad));
3974   if (GST_PAD_IS_SRC (pad)) {
3975     xmlNewChild (parent, NULL, (xmlChar *) "direction", (xmlChar *) "source");
3976   } else if (GST_PAD_IS_SINK (pad)) {
3977     xmlNewChild (parent, NULL, (xmlChar *) "direction", (xmlChar *) "sink");
3978   } else {
3979     xmlNewChild (parent, NULL, (xmlChar *) "direction", (xmlChar *) "unknown");
3980   }
3982   if (GST_PAD_PEER (pad) != NULL) {
3983     gchar *content;
3985     peer = GST_PAD_PEER (pad);
3986     /* first check to see if the peer's parent's parent is the same */
3987     /* we just save it off */
3988     content = g_strdup_printf ("%s.%s",
3989         GST_OBJECT_NAME (GST_PAD_PARENT (peer)), GST_PAD_NAME (peer));
3990     xmlNewChild (parent, NULL, (xmlChar *) "peer", (xmlChar *) content);
3991     g_free (content);
3992   } else
3993     xmlNewChild (parent, NULL, (xmlChar *) "peer", NULL);
3995   return parent;
3998 #if 0
3999 /**
4000  * gst_ghost_pad_save_thyself:
4001  * @pad: a ghost #GstPad to save.
4002  * @parent: the parent #xmlNodePtr to save the description in.
4003  *
4004  * Saves the ghost pad into an xml representation.
4005  *
4006  * Returns: the #xmlNodePtr representation of the pad.
4007  */
4008 xmlNodePtr
4009 gst_ghost_pad_save_thyself (GstPad * pad, xmlNodePtr parent)
4011   xmlNodePtr self;
4013   g_return_val_if_fail (GST_IS_GHOST_PAD (pad), NULL);
4015   self = xmlNewChild (parent, NULL, (xmlChar *) "ghostpad", NULL);
4016   xmlNewChild (self, NULL, (xmlChar *) "name", (xmlChar *) GST_PAD_NAME (pad));
4017   xmlNewChild (self, NULL, (xmlChar *) "parent",
4018       (xmlChar *) GST_OBJECT_NAME (GST_PAD_PARENT (pad)));
4020   /* FIXME FIXME FIXME! */
4022   return self;
4024 #endif /* 0 */
4025 #endif /* GST_DISABLE_LOADSAVE */
4027 /*
4028  * should be called with pad OBJECT_LOCK and STREAM_LOCK held.
4029  * GST_PAD_IS_BLOCKED (pad) == TRUE when this function is
4030  * called.
4031  *
4032  * This function performs the pad blocking when an event, buffer push
4033  * or buffer_alloc is performed on a _SRC_ pad. It blocks the
4034  * streaming thread after informing the pad has been blocked.
4035  *
4036  * An application can with this method wait and block any streaming
4037  * thread and perform operations such as seeking or linking.
4038  *
4039  * Two methods are available for notifying the application of the
4040  * block:
4041  * - the callback method, which happens in the STREAMING thread with
4042  *   the STREAM_LOCK held. With this method, the most useful way of
4043  *   dealing with the callback is to post a message to the main thread
4044  *   where the pad block can then be handled outside of the streaming
4045  *   thread. With the last method one can perform all operations such
4046  *   as doing a state change, linking, unblocking, seeking etc on the
4047  *   pad.
4048  * - the GCond signal method, which makes any thread unblock when
4049  *   the pad block happens.
4050  *
4051  * During the actual blocking state, the GST_PAD_BLOCKING flag is set.
4052  * The GST_PAD_BLOCKING flag is unset when the pad was unblocked.
4053  *
4054  * MT safe.
4055  */
4056 static GstFlowReturn
4057 handle_pad_block (GstPad * pad)
4059   GstPadBlockCallback callback;
4060   gpointer user_data;
4061   GstFlowReturn ret = GST_FLOW_OK;
4063   GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "signal block taken");
4065   /* flushing, don't bother trying to block and return WRONG_STATE
4066    * right away */
4067   if (GST_PAD_IS_FLUSHING (pad))
4068     goto flushingnonref;
4070   /* we grab an extra ref for the callbacks, this is probably not
4071    * needed (callback code does not have a ref and cannot unref). I
4072    * think this was done to make it possible to unref the element in
4073    * the callback, which is in the end totally impossible as it
4074    * requires grabbing the STREAM_LOCK and OBJECT_LOCK which are
4075    * all taken when calling this function. */
4076   gst_object_ref (pad);
4078   while (GST_PAD_IS_BLOCKED (pad)) {
4079     do {
4080       /* we either have a callback installed to notify the block or
4081        * some other thread is doing a GCond wait. */
4082       callback = pad->block_callback;
4083       pad->abidata.ABI.block_callback_called = TRUE;
4084       if (callback) {
4085         /* there is a callback installed, call it. We release the
4086          * lock so that the callback can do something useful with the
4087          * pad */
4088         user_data = pad->block_data;
4089         GST_OBJECT_UNLOCK (pad);
4090         callback (pad, TRUE, user_data);
4091         GST_OBJECT_LOCK (pad);
4093         /* we released the lock, recheck flushing */
4094         if (GST_PAD_IS_FLUSHING (pad))
4095           goto flushing;
4096       } else {
4097         /* no callback, signal the thread that is doing a GCond wait
4098          * if any. */
4099         GST_PAD_BLOCK_BROADCAST (pad);
4100       }
4101     } while (pad->abidata.ABI.block_callback_called == FALSE
4102         && GST_PAD_IS_BLOCKED (pad));
4104     /* OBJECT_LOCK could have been released when we did the callback, which
4105      * then could have made the pad unblock so we need to check the blocking
4106      * condition again.   */
4107     if (!GST_PAD_IS_BLOCKED (pad))
4108       break;
4110     /* now we block the streaming thread. It can be unlocked when we
4111      * deactivate the pad (which will also set the FLUSHING flag) or
4112      * when the pad is unblocked. A flushing event will also unblock
4113      * the pad after setting the FLUSHING flag. */
4114     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4115         "Waiting to be unblocked or set flushing");
4116     GST_OBJECT_FLAG_SET (pad, GST_PAD_BLOCKING);
4117     GST_PAD_BLOCK_WAIT (pad);
4118     GST_OBJECT_FLAG_UNSET (pad, GST_PAD_BLOCKING);
4120     /* see if we got unblocked by a flush or not */
4121     if (GST_PAD_IS_FLUSHING (pad))
4122       goto flushing;
4123   }
4125   GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "got unblocked");
4127   /* when we get here, the pad is unblocked again and we perform
4128    * the needed unblock code. */
4129   callback = pad->block_callback;
4130   if (callback) {
4131     /* we need to call the callback */
4132     user_data = pad->block_data;
4133     GST_OBJECT_UNLOCK (pad);
4134     callback (pad, FALSE, user_data);
4135     GST_OBJECT_LOCK (pad);
4136   } else {
4137     /* we need to signal the thread waiting on the GCond */
4138     GST_PAD_BLOCK_BROADCAST (pad);
4139   }
4141   gst_object_unref (pad);
4143   return ret;
4145 flushingnonref:
4146   {
4147     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "pad was flushing");
4148     return GST_FLOW_WRONG_STATE;
4149   }
4150 flushing:
4151   {
4152     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "pad became flushing");
4153     gst_object_unref (pad);
4154     return GST_FLOW_WRONG_STATE;
4155   }
4158 /**********************************************************************
4159  * Data passing functions
4160  */
4162 static gboolean
4163 gst_pad_emit_have_data_signal (GstPad * pad, GstMiniObject * obj)
4165   GValue ret = { 0 };
4166   GValue args[2] = { {0}, {0} };
4167   gboolean res;
4168   GQuark detail;
4170   /* init */
4171   g_value_init (&ret, G_TYPE_BOOLEAN);
4172   g_value_set_boolean (&ret, TRUE);
4173   g_value_init (&args[0], GST_TYPE_PAD);
4174   g_value_set_object (&args[0], pad);
4175   g_value_init (&args[1], GST_TYPE_MINI_OBJECT);
4176   gst_value_set_mini_object (&args[1], obj);
4178   if (GST_IS_EVENT (obj))
4179     detail = event_quark;
4180   else
4181     detail = buffer_quark;
4183   /* actually emit */
4184   g_signal_emitv (args, gst_pad_signals[PAD_HAVE_DATA], detail, &ret);
4185   res = g_value_get_boolean (&ret);
4187   /* clean up */
4188   g_value_unset (&ret);
4189   g_value_unset (&args[0]);
4190   g_value_unset (&args[1]);
4192   return res;
4195 static void
4196 gst_pad_data_unref (gboolean is_buffer, void *data)
4198   if (G_LIKELY (is_buffer)) {
4199     gst_buffer_unref (data);
4200   } else {
4201     gst_buffer_list_unref (data);
4202   }
4205 static GstCaps *
4206 gst_pad_data_get_caps (gboolean is_buffer, void *data)
4208   GstCaps *caps;
4210   if (G_LIKELY (is_buffer)) {
4211     caps = GST_BUFFER_CAPS (data);
4212   } else {
4213     GstBuffer *buf;
4215     if ((buf = gst_buffer_list_get (GST_BUFFER_LIST_CAST (data), 0, 0)))
4216       caps = GST_BUFFER_CAPS (buf);
4217     else
4218       caps = NULL;
4219   }
4220   return caps;
4223 /* this is the chain function that does not perform the additional argument
4224  * checking for that little extra speed.
4225  */
4226 static inline GstFlowReturn
4227 gst_pad_chain_data_unchecked (GstPad * pad, gboolean is_buffer, void *data,
4228     GstPadPushCache * cache)
4230   GstCaps *caps;
4231   gboolean caps_changed;
4232   GstFlowReturn ret;
4233   gboolean emit_signal;
4235   GST_PAD_STREAM_LOCK (pad);
4237   GST_OBJECT_LOCK (pad);
4238   if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
4239     goto flushing;
4241   caps = gst_pad_data_get_caps (is_buffer, data);
4242   caps_changed = caps && caps != GST_PAD_CAPS (pad);
4244   emit_signal = GST_PAD_DO_BUFFER_SIGNALS (pad) > 0;
4245   GST_OBJECT_UNLOCK (pad);
4247   /* see if the signal should be emited, we emit before caps nego as
4248    * we might drop the buffer and do capsnego for nothing. */
4249   if (G_UNLIKELY (emit_signal)) {
4250     cache = NULL;
4251     if (G_LIKELY (is_buffer)) {
4252       if (!gst_pad_emit_have_data_signal (pad, GST_MINI_OBJECT (data)))
4253         goto dropping;
4254     } else {
4255       /* chain all groups in the buffer list one by one to avoid problems with
4256        * buffer probes that push buffers or events */
4257       goto chain_groups;
4258     }
4259   }
4261   /* we got a new datatype on the pad, see if it can handle it */
4262   if (G_UNLIKELY (caps_changed)) {
4263     GST_DEBUG_OBJECT (pad, "caps changed to %p %" GST_PTR_FORMAT, caps, caps);
4264     if (G_UNLIKELY (!gst_pad_configure_sink (pad, caps)))
4265       goto not_negotiated;
4266   }
4268   /* NOTE: we read the chainfunc unlocked.
4269    * we cannot hold the lock for the pad so we might send
4270    * the data to the wrong function. This is not really a
4271    * problem since functions are assigned at creation time
4272    * and don't change that often... */
4273   if (G_LIKELY (is_buffer)) {
4274     GstPadChainFunction chainfunc;
4276     if (G_UNLIKELY ((chainfunc = GST_PAD_CHAINFUNC (pad)) == NULL))
4277       goto no_function;
4279     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4280         "calling chainfunction &%s with buffer %" GST_PTR_FORMAT,
4281         GST_DEBUG_FUNCPTR_NAME (chainfunc), GST_BUFFER (data));
4283     if (cache) {
4284       cache->peer = gst_object_ref (pad);
4285       cache->caps = caps ? gst_caps_ref (caps) : NULL;
4286     }
4288     ret = chainfunc (pad, GST_BUFFER_CAST (data));
4290     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4291         "called chainfunction &%s with buffer %p, returned %s",
4292         GST_DEBUG_FUNCPTR_NAME (chainfunc), data, gst_flow_get_name (ret));
4293   } else {
4294     GstPadChainListFunction chainlistfunc;
4296     if (G_UNLIKELY ((chainlistfunc = GST_PAD_CHAINLISTFUNC (pad)) == NULL))
4297       goto chain_groups;
4299     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4300         "calling chainlistfunction &%s",
4301         GST_DEBUG_FUNCPTR_NAME (chainlistfunc));
4303     ret = chainlistfunc (pad, GST_BUFFER_LIST_CAST (data));
4305     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4306         "called chainlistfunction &%s, returned %s",
4307         GST_DEBUG_FUNCPTR_NAME (chainlistfunc), gst_flow_get_name (ret));
4308   }
4310   GST_PAD_STREAM_UNLOCK (pad);
4312   return ret;
4314 chain_groups:
4315   {
4316     GstBufferList *list;
4317     GstBufferListIterator *it;
4318     GstBuffer *group;
4320     GST_PAD_STREAM_UNLOCK (pad);
4322     GST_INFO_OBJECT (pad, "chaining each group in list as a merged buffer");
4324     list = GST_BUFFER_LIST_CAST (data);
4325     it = gst_buffer_list_iterate (list);
4327     if (gst_buffer_list_iterator_next_group (it)) {
4328       do {
4329         group = gst_buffer_list_iterator_merge_group (it);
4330         if (group == NULL) {
4331           group = gst_buffer_new ();
4332           GST_CAT_INFO_OBJECT (GST_CAT_SCHEDULING, pad, "chaining empty group");
4333         } else {
4334           GST_CAT_INFO_OBJECT (GST_CAT_SCHEDULING, pad, "chaining group");
4335         }
4336         ret = gst_pad_chain_data_unchecked (pad, TRUE, group, NULL);
4337       } while (ret == GST_FLOW_OK && gst_buffer_list_iterator_next_group (it));
4338     } else {
4339       GST_CAT_INFO_OBJECT (GST_CAT_SCHEDULING, pad, "chaining empty group");
4340       ret = gst_pad_chain_data_unchecked (pad, TRUE, gst_buffer_new (), NULL);
4341     }
4343     gst_buffer_list_iterator_free (it);
4344     gst_buffer_list_unref (list);
4346     return ret;
4347   }
4349   /* ERRORS */
4350 flushing:
4351   {
4352     gst_pad_data_unref (is_buffer, data);
4353     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4354         "pushing, but pad was flushing");
4355     GST_OBJECT_UNLOCK (pad);
4356     GST_PAD_STREAM_UNLOCK (pad);
4357     return GST_FLOW_WRONG_STATE;
4358   }
4359 dropping:
4360   {
4361     gst_pad_data_unref (is_buffer, data);
4362     GST_DEBUG_OBJECT (pad, "Dropping buffer due to FALSE probe return");
4363     GST_PAD_STREAM_UNLOCK (pad);
4364     return GST_FLOW_OK;
4365   }
4366 not_negotiated:
4367   {
4368     gst_pad_data_unref (is_buffer, data);
4369     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4370         "pushing data but pad did not accept");
4371     GST_PAD_STREAM_UNLOCK (pad);
4372     return GST_FLOW_NOT_NEGOTIATED;
4373   }
4374 no_function:
4375   {
4376     gst_pad_data_unref (is_buffer, data);
4377     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4378         "pushing, but not chainhandler");
4379     GST_ELEMENT_ERROR (GST_PAD_PARENT (pad), CORE, PAD, (NULL),
4380         ("push on pad %s:%s but it has no chainfunction",
4381             GST_DEBUG_PAD_NAME (pad)));
4382     GST_PAD_STREAM_UNLOCK (pad);
4383     return GST_FLOW_NOT_SUPPORTED;
4384   }
4387 /**
4388  * gst_pad_chain:
4389  * @pad: a sink #GstPad, returns GST_FLOW_ERROR if not.
4390  * @buffer: (transfer full): the #GstBuffer to send, return GST_FLOW_ERROR
4391  *     if not.
4392  *
4393  * Chain a buffer to @pad.
4394  *
4395  * The function returns #GST_FLOW_WRONG_STATE if the pad was flushing.
4396  *
4397  * If the caps on @buffer are different from the current caps on @pad, this
4398  * function will call any setcaps function (see gst_pad_set_setcaps_function())
4399  * installed on @pad. If the new caps are not acceptable for @pad, this
4400  * function returns #GST_FLOW_NOT_NEGOTIATED.
4401  *
4402  * The function proceeds calling the chain function installed on @pad (see
4403  * gst_pad_set_chain_function()) and the return value of that function is
4404  * returned to the caller. #GST_FLOW_NOT_SUPPORTED is returned if @pad has no
4405  * chain function.
4406  *
4407  * In all cases, success or failure, the caller loses its reference to @buffer
4408  * after calling this function.
4409  *
4410  * Returns: a #GstFlowReturn from the pad.
4411  *
4412  * MT safe.
4413  */
4414 GstFlowReturn
4415 gst_pad_chain (GstPad * pad, GstBuffer * buffer)
4417   g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
4418   g_return_val_if_fail (GST_PAD_IS_SINK (pad), GST_FLOW_ERROR);
4419   g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
4421   return gst_pad_chain_data_unchecked (pad, TRUE, buffer, NULL);
4424 /**
4425  * gst_pad_chain_list:
4426  * @pad: a sink #GstPad, returns GST_FLOW_ERROR if not.
4427  * @list: (transfer full): the #GstBufferList to send, return GST_FLOW_ERROR
4428  *     if not.
4429  *
4430  * Chain a bufferlist to @pad.
4431  *
4432  * The function returns #GST_FLOW_WRONG_STATE if the pad was flushing.
4433  *
4434  * If the caps on the first buffer of @list are different from the current
4435  * caps on @pad, this function will call any setcaps function
4436  * (see gst_pad_set_setcaps_function()) installed on @pad. If the new caps
4437  * are not acceptable for @pad, this function returns #GST_FLOW_NOT_NEGOTIATED.
4438  *
4439  * The function proceeds calling the chainlist function installed on @pad (see
4440  * gst_pad_set_chain_list_function()) and the return value of that function is
4441  * returned to the caller. #GST_FLOW_NOT_SUPPORTED is returned if @pad has no
4442  * chainlist function.
4443  *
4444  * In all cases, success or failure, the caller loses its reference to @list
4445  * after calling this function.
4446  *
4447  * MT safe.
4448  *
4449  * Returns: a #GstFlowReturn from the pad.
4450  *
4451  * Since: 0.10.24
4452  */
4453 GstFlowReturn
4454 gst_pad_chain_list (GstPad * pad, GstBufferList * list)
4456   g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
4457   g_return_val_if_fail (GST_PAD_IS_SINK (pad), GST_FLOW_ERROR);
4458   g_return_val_if_fail (GST_IS_BUFFER_LIST (list), GST_FLOW_ERROR);
4460   return gst_pad_chain_data_unchecked (pad, FALSE, list, NULL);
4463 static GstFlowReturn
4464 gst_pad_push_data (GstPad * pad, gboolean is_buffer, void *data,
4465     GstPadPushCache * cache)
4467   GstPad *peer;
4468   GstFlowReturn ret;
4469   GstCaps *caps;
4470   gboolean caps_changed;
4472   GST_OBJECT_LOCK (pad);
4474   /* FIXME: this check can go away; pad_set_blocked could be implemented with
4475    * probes completely or probes with an extended pad block. */
4476   while (G_UNLIKELY (GST_PAD_IS_BLOCKED (pad)))
4477     if ((ret = handle_pad_block (pad)) != GST_FLOW_OK)
4478       goto flushed;
4480   /* we emit signals on the pad arg, the peer will have a chance to
4481    * emit in the _chain() function */
4482   if (G_UNLIKELY (GST_PAD_DO_BUFFER_SIGNALS (pad) > 0)) {
4483     cache = NULL;
4484     /* unlock before emitting */
4485     GST_OBJECT_UNLOCK (pad);
4487     if (G_LIKELY (is_buffer)) {
4488       /* if the signal handler returned FALSE, it means we should just drop the
4489        * buffer */
4490       if (!gst_pad_emit_have_data_signal (pad, GST_MINI_OBJECT (data)))
4491         goto dropped;
4492     } else {
4493       /* push all buffers in the list */
4494       goto push_groups;
4495     }
4496     GST_OBJECT_LOCK (pad);
4497   }
4499   /* Before pushing the buffer to the peer pad, ensure that caps
4500    * are set on this pad */
4501   caps = gst_pad_data_get_caps (is_buffer, data);
4502   caps_changed = caps && caps != GST_PAD_CAPS (pad);
4504   /* we got a new datatype from the pad, it had better handle it */
4505   if (G_UNLIKELY (caps_changed)) {
4506     /* unlock before setting */
4507     GST_OBJECT_UNLOCK (pad);
4508     GST_DEBUG_OBJECT (pad,
4509         "caps changed from %" GST_PTR_FORMAT " to %p %" GST_PTR_FORMAT,
4510         GST_PAD_CAPS (pad), caps, caps);
4511     if (G_UNLIKELY (!gst_pad_set_caps (pad, caps)))
4512       goto not_negotiated;
4513     GST_OBJECT_LOCK (pad);
4514   }
4516   if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
4517     goto not_linked;
4519   /* take ref to peer pad before releasing the lock */
4520   gst_object_ref (peer);
4521   GST_OBJECT_UNLOCK (pad);
4523   ret = gst_pad_chain_data_unchecked (peer, is_buffer, data, cache);
4525   gst_object_unref (peer);
4527   return ret;
4529 push_groups:
4530   {
4531     GstBufferList *list;
4532     GstBufferListIterator *it;
4533     GstBuffer *group;
4535     GST_INFO_OBJECT (pad, "pushing each group in list as a merged buffer");
4537     list = GST_BUFFER_LIST_CAST (data);
4538     it = gst_buffer_list_iterate (list);
4540     if (gst_buffer_list_iterator_next_group (it)) {
4541       do {
4542         group = gst_buffer_list_iterator_merge_group (it);
4543         if (group == NULL) {
4544           group = gst_buffer_new ();
4545           GST_CAT_INFO_OBJECT (GST_CAT_SCHEDULING, pad, "pushing empty group");
4546         } else {
4547           GST_CAT_INFO_OBJECT (GST_CAT_SCHEDULING, pad, "pushing group");
4548         }
4549         ret = gst_pad_push_data (pad, TRUE, group, NULL);
4550       } while (ret == GST_FLOW_OK && gst_buffer_list_iterator_next_group (it));
4551     } else {
4552       GST_CAT_INFO_OBJECT (GST_CAT_SCHEDULING, pad, "pushing empty group");
4553       ret = gst_pad_push_data (pad, TRUE, gst_buffer_new (), NULL);
4554     }
4556     gst_buffer_list_iterator_free (it);
4557     gst_buffer_list_unref (list);
4559     return ret;
4560   }
4562   /* ERROR recovery here */
4563 flushed:
4564   {
4565     gst_pad_data_unref (is_buffer, data);
4566     GST_DEBUG_OBJECT (pad, "pad block stopped by flush");
4567     GST_OBJECT_UNLOCK (pad);
4568     return ret;
4569   }
4570 dropped:
4571   {
4572     gst_pad_data_unref (is_buffer, data);
4573     GST_DEBUG_OBJECT (pad, "Dropping buffer due to FALSE probe return");
4574     return GST_FLOW_OK;
4575   }
4576 not_linked:
4577   {
4578     gst_pad_data_unref (is_buffer, data);
4579     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4580         "pushing, but it was not linked");
4581     GST_OBJECT_UNLOCK (pad);
4582     return GST_FLOW_NOT_LINKED;
4583   }
4584 not_negotiated:
4585   {
4586     gst_pad_data_unref (is_buffer, data);
4587     GST_CAT_DEBUG_OBJECT (GST_CAT_SCHEDULING, pad,
4588         "element pushed data then refused to accept the caps");
4589     return GST_FLOW_NOT_NEGOTIATED;
4590   }
4593 static inline GstPadPushCache *
4594 pad_take_cache (GstPad * pad, gpointer * cache_ptr)
4596   GstPadPushCache *cache;
4598   /* try to get the cached data */
4599   do {
4600     cache = g_atomic_pointer_get (cache_ptr);
4601     /* now try to replace the pointer with NULL to mark that we are busy
4602      * with it */
4603   } while (!g_atomic_pointer_compare_and_exchange (cache_ptr, cache, NULL));
4605   /* we could have a leftover invalid entry */
4606   if (G_UNLIKELY (cache == PAD_CACHE_INVALID))
4607     cache = NULL;
4609   return cache;
4612 static inline void
4613 pad_free_cache (GstPadPushCache * cache)
4615   gst_object_unref (cache->peer);
4616   if (cache->caps)
4617     gst_caps_unref (cache->caps);
4618   g_slice_free (GstPadPushCache, cache);
4621 static inline void
4622 pad_put_cache (GstPad * pad, GstPadPushCache * cache, gpointer * cache_ptr)
4624   /* put it back */
4625   if (!g_atomic_pointer_compare_and_exchange (cache_ptr, NULL, cache)) {
4626     /* something changed, clean up our cache */
4627     pad_free_cache (cache);
4628   }
4631 /* must be called with the pad lock */
4632 void
4633 _priv_gst_pad_invalidate_cache (GstPad * pad)
4635   GstPadPushCache *cache;
4636   gpointer *cache_ptr;
4638   GST_LOG_OBJECT (pad, "Invalidating pad cache");
4640   /* we hold the pad lock here so we can get the peer and it stays
4641    * alive during this call */
4642   if (GST_PAD_IS_SINK (pad)) {
4643     if (!(pad = GST_PAD_PEER (pad)))
4644       return;
4645   }
4647   cache_ptr = (gpointer *) & pad->abidata.ABI.priv->cache_ptr;
4649   /* try to get the cached data */
4650   do {
4651     cache = g_atomic_pointer_get (cache_ptr);
4652     /* now try to replace the pointer with INVALID. If nothing is busy with this
4653      * caps, we get the cache and clean it up. If something is busy, we replace
4654      * with INVALID so that when the function finishes and tries to put the
4655      * cache back, it'll fail and cleanup */
4656   } while (!g_atomic_pointer_compare_and_exchange (cache_ptr, cache,
4657           PAD_CACHE_INVALID));
4659   if (G_LIKELY (cache && cache != PAD_CACHE_INVALID))
4660     pad_free_cache (cache);
4663 /**
4664  * gst_pad_push:
4665  * @pad: a source #GstPad, returns #GST_FLOW_ERROR if not.
4666  * @buffer: (transfer full): the #GstBuffer to push returns GST_FLOW_ERROR
4667  *     if not.
4668  *
4669  * Pushes a buffer to the peer of @pad.
4670  *
4671  * This function will call an installed pad block before triggering any
4672  * installed pad probes.
4673  *
4674  * If the caps on @buffer are different from the currently configured caps on
4675  * @pad, this function will call any installed setcaps function on @pad (see
4676  * gst_pad_set_setcaps_function()). In case of failure to renegotiate the new
4677  * format, this function returns #GST_FLOW_NOT_NEGOTIATED.
4678  *
4679  * The function proceeds calling gst_pad_chain() on the peer pad and returns
4680  * the value from that function. If @pad has no peer, #GST_FLOW_NOT_LINKED will
4681  * be returned.
4682  *
4683  * In all cases, success or failure, the caller loses its reference to @buffer
4684  * after calling this function.
4685  *
4686  * Returns: a #GstFlowReturn from the peer pad.
4687  *
4688  * MT safe.
4689  */
4690 GstFlowReturn
4691 gst_pad_push (GstPad * pad, GstBuffer * buffer)
4693   GstPadPushCache *cache;
4694   GstFlowReturn ret;
4695   gpointer *cache_ptr;
4696   GstPad *peer;
4697   GstCaps *caps;
4699   g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
4700   g_return_val_if_fail (GST_PAD_IS_SRC (pad), GST_FLOW_ERROR);
4701   g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
4703   cache_ptr = (gpointer *) & pad->abidata.ABI.priv->cache_ptr;
4705   cache = pad_take_cache (pad, cache_ptr);
4707   if (G_UNLIKELY (cache == NULL))
4708     goto slow_path;
4710   /* check caps */
4711   caps = GST_BUFFER_CAPS (buffer);
4712   if (G_UNLIKELY (caps && caps != cache->caps)) {
4713     pad_free_cache (cache);
4714     goto slow_path;
4715   }
4717   peer = cache->peer;
4719   GST_PAD_STREAM_LOCK (peer);
4720   if (G_UNLIKELY (g_atomic_pointer_get (cache_ptr) == PAD_CACHE_INVALID))
4721     goto invalid;
4723   GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4724       "calling chainfunction &%s with buffer %" GST_PTR_FORMAT,
4725       GST_DEBUG_FUNCPTR_NAME (GST_PAD_CHAINFUNC (peer)), buffer);
4727   ret = GST_PAD_CHAINFUNC (peer) (peer, buffer);
4729   GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4730       "called chainfunction &%s with buffer %p, returned %s",
4731       GST_DEBUG_FUNCPTR_NAME (GST_PAD_CHAINFUNC (peer)), buffer,
4732       gst_flow_get_name (ret));
4734   GST_PAD_STREAM_UNLOCK (peer);
4736   pad_put_cache (pad, cache, cache_ptr);
4738   return ret;
4740   /* slow path */
4741 slow_path:
4742   {
4743     GstPadPushCache scache = { NULL, };
4745     GST_LOG_OBJECT (pad, "Taking slow path");
4747     ret = gst_pad_push_data (pad, TRUE, buffer, &scache);
4749     if (scache.peer) {
4750       GstPadPushCache *ncache;
4752       GST_LOG_OBJECT (pad, "Caching push data");
4754       /* make cache structure */
4755       ncache = g_slice_new (GstPadPushCache);
4756       *ncache = scache;
4758       pad_put_cache (pad, ncache, cache_ptr);
4759     }
4760     return ret;
4761   }
4762 invalid:
4763   {
4764     GST_PAD_STREAM_UNLOCK (peer);
4765     pad_free_cache (cache);
4766     goto slow_path;
4767   }
4770 /**
4771  * gst_pad_push_list:
4772  * @pad: a source #GstPad, returns #GST_FLOW_ERROR if not.
4773  * @list: (transfer full): the #GstBufferList to push returns GST_FLOW_ERROR
4774  *     if not.
4775  *
4776  * Pushes a buffer list to the peer of @pad.
4777  *
4778  * This function will call an installed pad block before triggering any
4779  * installed pad probes.
4780  *
4781  * If the caps on the first buffer in the first group of @list are different
4782  * from the currently configured caps on @pad, this function will call any
4783  * installed setcaps function on @pad (see gst_pad_set_setcaps_function()). In
4784  * case of failure to renegotiate the new format, this function returns
4785  * #GST_FLOW_NOT_NEGOTIATED.
4786  *
4787  * If there are any probes installed on @pad every group of the buffer list
4788  * will be merged into a normal #GstBuffer and pushed via gst_pad_push and the
4789  * buffer list will be unreffed.
4790  *
4791  * The function proceeds calling the chain function on the peer pad and returns
4792  * the value from that function. If @pad has no peer, #GST_FLOW_NOT_LINKED will
4793  * be returned. If the peer pad does not have any installed chainlist function
4794  * every group buffer of the list will be merged into a normal #GstBuffer and
4795  * chained via gst_pad_chain().
4796  *
4797  * In all cases, success or failure, the caller loses its reference to @list
4798  * after calling this function.
4799  *
4800  * Returns: a #GstFlowReturn from the peer pad.
4801  *
4802  * MT safe.
4803  *
4804  * Since: 0.10.24
4805  */
4806 GstFlowReturn
4807 gst_pad_push_list (GstPad * pad, GstBufferList * list)
4809   GstBuffer *buf;
4810   GstPadPushCache *cache;
4811   GstFlowReturn ret;
4812   gpointer *cache_ptr;
4813   GstPad *peer;
4814   GstCaps *caps;
4816   g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
4817   g_return_val_if_fail (GST_PAD_IS_SRC (pad), GST_FLOW_ERROR);
4818   g_return_val_if_fail (GST_IS_BUFFER_LIST (list), GST_FLOW_ERROR);
4820   cache_ptr = (gpointer *) & pad->abidata.ABI.priv->cache_ptr;
4822   cache = pad_take_cache (pad, cache_ptr);
4824   if (G_UNLIKELY (cache == NULL))
4825     goto slow_path;
4827   /* check caps */
4828   if ((buf = gst_buffer_list_get (list, 0, 0)))
4829     caps = GST_BUFFER_CAPS (buf);
4830   else
4831     caps = NULL;
4833   if (G_UNLIKELY (caps && caps != cache->caps)) {
4834     pad_free_cache (cache);
4835     goto slow_path;
4836   }
4838   peer = cache->peer;
4840   GST_PAD_STREAM_LOCK (peer);
4841   if (G_UNLIKELY (g_atomic_pointer_get (cache_ptr) == PAD_CACHE_INVALID))
4842     goto invalid;
4844   ret = GST_PAD_CHAINLISTFUNC (peer) (peer, list);
4846   GST_PAD_STREAM_UNLOCK (peer);
4848   pad_put_cache (pad, cache, cache_ptr);
4850   return ret;
4852   /* slow path */
4853 slow_path:
4854   {
4855     GstPadPushCache scache = { NULL, };
4857     GST_LOG_OBJECT (pad, "Taking slow path");
4859     ret = gst_pad_push_data (pad, FALSE, list, &scache);
4861     if (scache.peer) {
4862       GstPadPushCache *ncache;
4864       GST_LOG_OBJECT (pad, "Caching push data");
4866       /* make cache structure */
4867       ncache = g_slice_new (GstPadPushCache);
4868       *ncache = scache;
4870       pad_put_cache (pad, ncache, cache_ptr);
4871     }
4872     return ret;
4873   }
4874 invalid:
4875   {
4876     GST_PAD_STREAM_UNLOCK (peer);
4877     pad_free_cache (cache);
4878     goto slow_path;
4879   }
4882 /**
4883  * gst_pad_check_pull_range:
4884  * @pad: a sink #GstPad.
4885  *
4886  * Checks if a gst_pad_pull_range() can be performed on the peer
4887  * source pad. This function is used by plugins that want to check
4888  * if they can use random access on the peer source pad.
4889  *
4890  * The peer sourcepad can implement a custom #GstPadCheckGetRangeFunction
4891  * if it needs to perform some logic to determine if pull_range is
4892  * possible.
4893  *
4894  * Returns: a gboolean with the result.
4895  *
4896  * MT safe.
4897  */
4898 gboolean
4899 gst_pad_check_pull_range (GstPad * pad)
4901   GstPad *peer;
4902   gboolean ret;
4903   GstPadCheckGetRangeFunction checkgetrangefunc;
4905   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
4907   GST_OBJECT_LOCK (pad);
4908   if (!GST_PAD_IS_SINK (pad))
4909     goto wrong_direction;
4911   if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
4912     goto not_connected;
4914   gst_object_ref (peer);
4915   GST_OBJECT_UNLOCK (pad);
4917   /* see note in above function */
4918   if (G_LIKELY ((checkgetrangefunc = peer->checkgetrangefunc) == NULL)) {
4919     /* FIXME, kindoff ghetto */
4920     ret = GST_PAD_GETRANGEFUNC (peer) != NULL;
4921     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4922         "no checkgetrangefunc, assuming %d", ret);
4923   } else {
4924     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4925         "calling checkgetrangefunc %s of peer pad %s:%s",
4926         GST_DEBUG_FUNCPTR_NAME (checkgetrangefunc), GST_DEBUG_PAD_NAME (peer));
4928     ret = checkgetrangefunc (peer);
4929   }
4931   gst_object_unref (peer);
4933   return ret;
4935   /* ERROR recovery here */
4936 wrong_direction:
4937   {
4938     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4939         "checking pull range, but pad must be a sinkpad");
4940     GST_OBJECT_UNLOCK (pad);
4941     return FALSE;
4942   }
4943 not_connected:
4944   {
4945     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4946         "checking pull range, but it was not linked");
4947     GST_OBJECT_UNLOCK (pad);
4948     return FALSE;
4949   }
4952 static GstFlowReturn
4953 gst_pad_get_range_unchecked (GstPad * pad, guint64 offset, guint size,
4954     GstBuffer ** buffer)
4956   GstFlowReturn ret;
4957   GstPadGetRangeFunction getrangefunc;
4958   gboolean emit_signal;
4959   GstCaps *caps;
4960   gboolean caps_changed;
4962   GST_PAD_STREAM_LOCK (pad);
4964   GST_OBJECT_LOCK (pad);
4965   if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
4966     goto flushing;
4968   emit_signal = GST_PAD_DO_BUFFER_SIGNALS (pad) > 0;
4969   GST_OBJECT_UNLOCK (pad);
4971   if (G_UNLIKELY ((getrangefunc = GST_PAD_GETRANGEFUNC (pad)) == NULL))
4972     goto no_function;
4974   GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4975       "calling getrangefunc %s, offset %"
4976       G_GUINT64_FORMAT ", size %u",
4977       GST_DEBUG_FUNCPTR_NAME (getrangefunc), offset, size);
4979   ret = getrangefunc (pad, offset, size, buffer);
4981   /* can only fire the signal if we have a valid buffer */
4982   if (G_UNLIKELY (emit_signal) && (ret == GST_FLOW_OK)) {
4983     if (!gst_pad_emit_have_data_signal (pad, GST_MINI_OBJECT (*buffer)))
4984       goto dropping;
4985   }
4987   GST_PAD_STREAM_UNLOCK (pad);
4989   if (G_UNLIKELY (ret != GST_FLOW_OK))
4990     goto get_range_failed;
4992   GST_OBJECT_LOCK (pad);
4993   /* Before pushing the buffer to the peer pad, ensure that caps
4994    * are set on this pad */
4995   caps = GST_BUFFER_CAPS (*buffer);
4996   caps_changed = caps && caps != GST_PAD_CAPS (pad);
4997   GST_OBJECT_UNLOCK (pad);
4999   if (G_UNLIKELY (caps_changed)) {
5000     GST_DEBUG_OBJECT (pad, "caps changed to %p %" GST_PTR_FORMAT, caps, caps);
5001     /* this should usually work because the element produced the buffer */
5002     if (G_UNLIKELY (!gst_pad_configure_src (pad, caps, TRUE)))
5003       goto not_negotiated;
5004   }
5005   return ret;
5007   /* ERRORS */
5008 flushing:
5009   {
5010     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
5011         "pulling range, but pad was flushing");
5012     GST_OBJECT_UNLOCK (pad);
5013     GST_PAD_STREAM_UNLOCK (pad);
5014     return GST_FLOW_WRONG_STATE;
5015   }
5016 no_function:
5017   {
5018     GST_ELEMENT_ERROR (GST_PAD_PARENT (pad), CORE, PAD, (NULL),
5019         ("pullrange on pad %s:%s but it has no getrangefunction",
5020             GST_DEBUG_PAD_NAME (pad)));
5021     GST_PAD_STREAM_UNLOCK (pad);
5022     return GST_FLOW_NOT_SUPPORTED;
5023   }
5024 dropping:
5025   {
5026     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
5027         "Dropping data after FALSE probe return");
5028     GST_PAD_STREAM_UNLOCK (pad);
5029     gst_buffer_unref (*buffer);
5030     *buffer = NULL;
5031     return GST_FLOW_UNEXPECTED;
5032   }
5033 get_range_failed:
5034   {
5035     *buffer = NULL;
5036     GST_CAT_LEVEL_LOG (GST_CAT_SCHEDULING,
5037         (ret >= GST_FLOW_UNEXPECTED) ? GST_LEVEL_INFO : GST_LEVEL_WARNING,
5038         pad, "getrange failed, flow: %s", gst_flow_get_name (ret));
5039     return ret;
5040   }
5041 not_negotiated:
5042   {
5043     gst_buffer_unref (*buffer);
5044     *buffer = NULL;
5045     GST_CAT_WARNING_OBJECT (GST_CAT_SCHEDULING, pad,
5046         "getrange returned buffer of unaccaptable caps");
5047     return GST_FLOW_NOT_NEGOTIATED;
5048   }
5051 /**
5052  * gst_pad_get_range:
5053  * @pad: a src #GstPad, returns #GST_FLOW_ERROR if not.
5054  * @offset: The start offset of the buffer
5055  * @size: The length of the buffer
5056  * @buffer: (out callee-allocates): a pointer to hold the #GstBuffer,
5057  *     returns #GST_FLOW_ERROR if %NULL.
5058  *
5059  * When @pad is flushing this function returns #GST_FLOW_WRONG_STATE
5060  * immediately and @buffer is %NULL.
5061  *
5062  * Calls the getrange function of @pad, see #GstPadGetRangeFunction for a
5063  * description of a getrange function. If @pad has no getrange function
5064  * installed (see gst_pad_set_getrange_function()) this function returns
5065  * #GST_FLOW_NOT_SUPPORTED.
5066  *
5067  * This is a lowlevel function. Usualy gst_pad_pull_range() is used.
5068  *
5069  * Returns: a #GstFlowReturn from the pad.
5070  *
5071  * MT safe.
5072  */
5073 GstFlowReturn
5074 gst_pad_get_range (GstPad * pad, guint64 offset, guint size,
5075     GstBuffer ** buffer)
5077   g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
5078   g_return_val_if_fail (GST_PAD_IS_SRC (pad), GST_FLOW_ERROR);
5079   g_return_val_if_fail (buffer != NULL, GST_FLOW_ERROR);
5081   return gst_pad_get_range_unchecked (pad, offset, size, buffer);
5084 /**
5085  * gst_pad_pull_range:
5086  * @pad: a sink #GstPad, returns GST_FLOW_ERROR if not.
5087  * @offset: The start offset of the buffer
5088  * @size: The length of the buffer
5089  * @buffer: (out callee-allocates): a pointer to hold the #GstBuffer, returns
5090  *     GST_FLOW_ERROR if %NULL.
5091  *
5092  * Pulls a @buffer from the peer pad.
5093  *
5094  * This function will first trigger the pad block signal if it was
5095  * installed.
5096  *
5097  * When @pad is not linked #GST_FLOW_NOT_LINKED is returned else this
5098  * function returns the result of gst_pad_get_range() on the peer pad.
5099  * See gst_pad_get_range() for a list of return values and for the
5100  * semantics of the arguments of this function.
5101  *
5102  * @buffer's caps must either be unset or the same as what is already
5103  * configured on @pad. Renegotiation within a running pull-mode pipeline is not
5104  * supported.
5105  *
5106  * Returns: a #GstFlowReturn from the peer pad.
5107  * When this function returns #GST_FLOW_OK, @buffer will contain a valid
5108  * #GstBuffer that should be freed with gst_buffer_unref() after usage.
5109  * @buffer may not be used or freed when any other return value than
5110  * #GST_FLOW_OK is returned.
5111  *
5112  * MT safe.
5113  */
5114 GstFlowReturn
5115 gst_pad_pull_range (GstPad * pad, guint64 offset, guint size,
5116     GstBuffer ** buffer)
5118   GstPad *peer;
5119   GstFlowReturn ret;
5120   gboolean emit_signal;
5121   GstCaps *caps;
5122   gboolean caps_changed;
5124   g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
5125   g_return_val_if_fail (GST_PAD_IS_SINK (pad), GST_FLOW_ERROR);
5126   g_return_val_if_fail (buffer != NULL, GST_FLOW_ERROR);
5128   GST_OBJECT_LOCK (pad);
5130   while (G_UNLIKELY (GST_PAD_IS_BLOCKED (pad)))
5131     handle_pad_block (pad);
5133   if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
5134     goto not_connected;
5136   /* signal emision for the pad, peer has chance to emit when
5137    * we call _get_range() */
5138   emit_signal = GST_PAD_DO_BUFFER_SIGNALS (pad) > 0;
5140   gst_object_ref (peer);
5141   GST_OBJECT_UNLOCK (pad);
5143   ret = gst_pad_get_range_unchecked (peer, offset, size, buffer);
5145   gst_object_unref (peer);
5147   if (G_UNLIKELY (ret != GST_FLOW_OK))
5148     goto pull_range_failed;
5150   /* can only fire the signal if we have a valid buffer */
5151   if (G_UNLIKELY (emit_signal)) {
5152     if (!gst_pad_emit_have_data_signal (pad, GST_MINI_OBJECT (*buffer)))
5153       goto dropping;
5154   }
5156   GST_OBJECT_LOCK (pad);
5157   /* Before pushing the buffer to the peer pad, ensure that caps
5158    * are set on this pad */
5159   caps = GST_BUFFER_CAPS (*buffer);
5160   caps_changed = caps && caps != GST_PAD_CAPS (pad);
5161   GST_OBJECT_UNLOCK (pad);
5163   /* we got a new datatype on the pad, see if it can handle it */
5164   if (G_UNLIKELY (caps_changed)) {
5165     GST_DEBUG_OBJECT (pad, "caps changed to %p %" GST_PTR_FORMAT, caps, caps);
5166     if (G_UNLIKELY (!gst_pad_configure_sink (pad, caps)))
5167       goto not_negotiated;
5168   }
5169   return ret;
5171   /* ERROR recovery here */
5172 not_connected:
5173   {
5174     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
5175         "pulling range, but it was not linked");
5176     GST_OBJECT_UNLOCK (pad);
5177     return GST_FLOW_NOT_LINKED;
5178   }
5179 pull_range_failed:
5180   {
5181     *buffer = NULL;
5182     GST_CAT_LEVEL_LOG (GST_CAT_SCHEDULING,
5183         (ret >= GST_FLOW_UNEXPECTED) ? GST_LEVEL_INFO : GST_LEVEL_WARNING,
5184         pad, "pullrange failed, flow: %s", gst_flow_get_name (ret));
5185     return ret;
5186   }
5187 dropping:
5188   {
5189     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
5190         "Dropping data after FALSE probe return");
5191     gst_buffer_unref (*buffer);
5192     *buffer = NULL;
5193     return GST_FLOW_UNEXPECTED;
5194   }
5195 not_negotiated:
5196   {
5197     gst_buffer_unref (*buffer);
5198     *buffer = NULL;
5199     GST_CAT_WARNING_OBJECT (GST_CAT_SCHEDULING, pad,
5200         "pullrange returned buffer of different caps");
5201     return GST_FLOW_NOT_NEGOTIATED;
5202   }
5205 /**
5206  * gst_pad_push_event:
5207  * @pad: a #GstPad to push the event to.
5208  * @event: (transfer full): the #GstEvent to send to the pad.
5209  *
5210  * Sends the event to the peer of the given pad. This function is
5211  * mainly used by elements to send events to their peer
5212  * elements.
5213  *
5214  * This function takes owership of the provided event so you should
5215  * gst_event_ref() it if you want to reuse the event after this call.
5216  *
5217  * Returns: TRUE if the event was handled.
5218  *
5219  * MT safe.
5220  */
5221 gboolean
5222 gst_pad_push_event (GstPad * pad, GstEvent * event)
5224   GstPad *peerpad;
5225   gboolean result;
5227   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
5228   g_return_val_if_fail (event != NULL, FALSE);
5229   g_return_val_if_fail (GST_IS_EVENT (event), FALSE);
5231   GST_LOG_OBJECT (pad, "event: %s", GST_EVENT_TYPE_NAME (event));
5233   GST_OBJECT_LOCK (pad);
5235   /* Two checks to be made:
5236    * . (un)set the FLUSHING flag for flushing events,
5237    * . handle pad blocking */
5238   switch (GST_EVENT_TYPE (event)) {
5239     case GST_EVENT_FLUSH_START:
5240       _priv_gst_pad_invalidate_cache (pad);
5241       GST_PAD_SET_FLUSHING (pad);
5243       if (G_UNLIKELY (GST_PAD_IS_BLOCKED (pad))) {
5244         /* flush start will have set the FLUSHING flag and will then
5245          * unlock all threads doing a GCond wait on the blocking pad. This
5246          * will typically unblock the STREAMING thread blocked on a pad. */
5247         GST_LOG_OBJECT (pad, "Pad is blocked, not forwarding flush-start, "
5248             "doing block signal.");
5249         GST_PAD_BLOCK_BROADCAST (pad);
5250         goto flushed;
5251       }
5252       break;
5253     case GST_EVENT_FLUSH_STOP:
5254       GST_PAD_UNSET_FLUSHING (pad);
5256       /* if we are blocked, flush away the FLUSH_STOP event */
5257       if (G_UNLIKELY (GST_PAD_IS_BLOCKED (pad))) {
5258         GST_LOG_OBJECT (pad, "Pad is blocked, not forwarding flush-stop");
5259         goto flushed;
5260       }
5261       break;
5262     default:
5263       while (G_UNLIKELY (GST_PAD_IS_BLOCKED (pad))) {
5264         /* block the event as long as the pad is blocked */
5265         if (handle_pad_block (pad) != GST_FLOW_OK)
5266           goto flushed;
5267       }
5268       break;
5269   }
5271   if (G_UNLIKELY (GST_EVENT_SRC (event) == NULL)) {
5272     GST_LOG_OBJECT (pad, "event had no source, setting pad as event source");
5273     GST_EVENT_SRC (event) = gst_object_ref (pad);
5274   }
5276   if (G_UNLIKELY (GST_PAD_DO_EVENT_SIGNALS (pad) > 0)) {
5277     GST_OBJECT_UNLOCK (pad);
5279     if (!gst_pad_emit_have_data_signal (pad, GST_MINI_OBJECT (event)))
5280       goto dropping;
5282     GST_OBJECT_LOCK (pad);
5283   }
5284   peerpad = GST_PAD_PEER (pad);
5285   if (peerpad == NULL)
5286     goto not_linked;
5288   GST_LOG_OBJECT (pad,
5289       "sending event %s (%" GST_PTR_FORMAT ") to peerpad %" GST_PTR_FORMAT,
5290       GST_EVENT_TYPE_NAME (event), event, peerpad);
5291   gst_object_ref (peerpad);
5292   GST_OBJECT_UNLOCK (pad);
5294   result = gst_pad_send_event (peerpad, event);
5296   /* Note: we gave away ownership of the event at this point */
5297   GST_LOG_OBJECT (pad, "sent event to peerpad %" GST_PTR_FORMAT ", result %d",
5298       peerpad, result);
5299   gst_object_unref (peerpad);
5301   return result;
5303   /* ERROR handling */
5304 dropping:
5305   {
5306     GST_DEBUG_OBJECT (pad, "Dropping event after FALSE probe return");
5307     gst_event_unref (event);
5308     return FALSE;
5309   }
5310 not_linked:
5311   {
5312     GST_DEBUG_OBJECT (pad, "Dropping event because pad is not linked");
5313     gst_event_unref (event);
5314     GST_OBJECT_UNLOCK (pad);
5315     return FALSE;
5316   }
5317 flushed:
5318   {
5319     GST_DEBUG_OBJECT (pad,
5320         "Not forwarding event since we're flushing and blocking");
5321     gst_event_unref (event);
5322     GST_OBJECT_UNLOCK (pad);
5323     return TRUE;
5324   }
5327 /**
5328  * gst_pad_send_event:
5329  * @pad: a #GstPad to send the event to.
5330  * @event: (transfer full): the #GstEvent to send to the pad.
5331  *
5332  * Sends the event to the pad. This function can be used
5333  * by applications to send events in the pipeline.
5334  *
5335  * If @pad is a source pad, @event should be an upstream event. If @pad is a
5336  * sink pad, @event should be a downstream event. For example, you would not
5337  * send a #GST_EVENT_EOS on a src pad; EOS events only propagate downstream.
5338  * Furthermore, some downstream events have to be serialized with data flow,
5339  * like EOS, while some can travel out-of-band, like #GST_EVENT_FLUSH_START. If
5340  * the event needs to be serialized with data flow, this function will take the
5341  * pad's stream lock while calling its event function.
5342  *
5343  * To find out whether an event type is upstream, downstream, or downstream and
5344  * serialized, see #GstEventTypeFlags, gst_event_type_get_flags(),
5345  * #GST_EVENT_IS_UPSTREAM, #GST_EVENT_IS_DOWNSTREAM, and
5346  * #GST_EVENT_IS_SERIALIZED. Note that in practice that an application or
5347  * plugin doesn't need to bother itself with this information; the core handles
5348  * all necessary locks and checks.
5349  *
5350  * This function takes owership of the provided event so you should
5351  * gst_event_ref() it if you want to reuse the event after this call.
5352  *
5353  * Returns: TRUE if the event was handled.
5354  */
5355 gboolean
5356 gst_pad_send_event (GstPad * pad, GstEvent * event)
5358   gboolean result = FALSE;
5359   GstPadEventFunction eventfunc;
5360   gboolean serialized, need_unlock = FALSE;
5362   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
5363   g_return_val_if_fail (event != NULL, FALSE);
5365   GST_OBJECT_LOCK (pad);
5366   if (GST_PAD_IS_SINK (pad)) {
5367     if (G_UNLIKELY (!GST_EVENT_IS_DOWNSTREAM (event)))
5368       goto wrong_direction;
5369     serialized = GST_EVENT_IS_SERIALIZED (event);
5370   } else if (GST_PAD_IS_SRC (pad)) {
5371     if (G_UNLIKELY (!GST_EVENT_IS_UPSTREAM (event)))
5372       goto wrong_direction;
5373     /* events on srcpad never are serialized */
5374     serialized = FALSE;
5375   } else
5376     goto unknown_direction;
5378   if (G_UNLIKELY (GST_EVENT_SRC (event) == NULL)) {
5379     GST_LOG_OBJECT (pad, "event had no source, setting pad as event source");
5380     GST_EVENT_SRC (event) = gst_object_ref (pad);
5381   }
5383   /* pad signals */
5384   if (G_UNLIKELY (GST_PAD_DO_EVENT_SIGNALS (pad) > 0)) {
5385     GST_OBJECT_UNLOCK (pad);
5387     if (!gst_pad_emit_have_data_signal (pad, GST_MINI_OBJECT_CAST (event)))
5388       goto dropping;
5390     GST_OBJECT_LOCK (pad);
5391   }
5393   switch (GST_EVENT_TYPE (event)) {
5394     case GST_EVENT_FLUSH_START:
5395       GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad,
5396           "have event type %d (FLUSH_START)", GST_EVENT_TYPE (event));
5398       /* can't even accept a flush begin event when flushing */
5399       if (GST_PAD_IS_FLUSHING (pad))
5400         goto flushing;
5402       _priv_gst_pad_invalidate_cache (pad);
5403       GST_PAD_SET_FLUSHING (pad);
5404       GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad, "set flush flag");
5405       break;
5406     case GST_EVENT_FLUSH_STOP:
5407       if (G_LIKELY (GST_PAD_ACTIVATE_MODE (pad) != GST_ACTIVATE_NONE)) {
5408         GST_PAD_UNSET_FLUSHING (pad);
5409         GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad, "cleared flush flag");
5410       }
5411       GST_OBJECT_UNLOCK (pad);
5412       /* grab stream lock */
5413       GST_PAD_STREAM_LOCK (pad);
5414       need_unlock = TRUE;
5415       GST_OBJECT_LOCK (pad);
5416       break;
5417     default:
5418       GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad, "have event type %s",
5419           GST_EVENT_TYPE_NAME (event));
5421       /* make this a little faster, no point in grabbing the lock
5422        * if the pad is already flushing. */
5423       if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
5424         goto flushing;
5426       if (serialized) {
5427         /* lock order: STREAM_LOCK, LOCK, recheck flushing. */
5428         GST_OBJECT_UNLOCK (pad);
5429         GST_PAD_STREAM_LOCK (pad);
5430         need_unlock = TRUE;
5431         GST_OBJECT_LOCK (pad);
5432         if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
5433           goto flushing;
5434       }
5435       break;
5436   }
5437   if (G_UNLIKELY ((eventfunc = GST_PAD_EVENTFUNC (pad)) == NULL))
5438     goto no_function;
5440   GST_OBJECT_UNLOCK (pad);
5442   result = eventfunc (pad, event);
5444   if (need_unlock)
5445     GST_PAD_STREAM_UNLOCK (pad);
5447   GST_DEBUG_OBJECT (pad, "sent event, result %d", result);
5449   return result;
5451   /* ERROR handling */
5452 wrong_direction:
5453   {
5454     g_warning ("pad %s:%s sending %s event in wrong direction",
5455         GST_DEBUG_PAD_NAME (pad), GST_EVENT_TYPE_NAME (event));
5456     GST_OBJECT_UNLOCK (pad);
5457     gst_event_unref (event);
5458     return FALSE;
5459   }
5460 unknown_direction:
5461   {
5462     g_warning ("pad %s:%s has invalid direction", GST_DEBUG_PAD_NAME (pad));
5463     GST_OBJECT_UNLOCK (pad);
5464     gst_event_unref (event);
5465     return FALSE;
5466   }
5467 no_function:
5468   {
5469     g_warning ("pad %s:%s has no event handler, file a bug.",
5470         GST_DEBUG_PAD_NAME (pad));
5471     GST_OBJECT_UNLOCK (pad);
5472     if (need_unlock)
5473       GST_PAD_STREAM_UNLOCK (pad);
5474     gst_event_unref (event);
5475     return FALSE;
5476   }
5477 flushing:
5478   {
5479     GST_OBJECT_UNLOCK (pad);
5480     if (need_unlock)
5481       GST_PAD_STREAM_UNLOCK (pad);
5482     GST_CAT_INFO_OBJECT (GST_CAT_EVENT, pad,
5483         "Received event on flushing pad. Discarding");
5484     gst_event_unref (event);
5485     return FALSE;
5486   }
5487 dropping:
5488   {
5489     GST_DEBUG_OBJECT (pad, "Dropping event after FALSE probe return");
5490     gst_event_unref (event);
5491     return FALSE;
5492   }
5495 /**
5496  * gst_pad_set_element_private:
5497  * @pad: the #GstPad to set the private data of.
5498  * @priv: The private data to attach to the pad.
5499  *
5500  * Set the given private data gpointer on the pad.
5501  * This function can only be used by the element that owns the pad.
5502  * No locking is performed in this function.
5503  */
5504 void
5505 gst_pad_set_element_private (GstPad * pad, gpointer priv)
5507   pad->element_private = priv;
5510 /**
5511  * gst_pad_get_element_private:
5512  * @pad: the #GstPad to get the private data of.
5513  *
5514  * Gets the private data of a pad.
5515  * No locking is performed in this function.
5516  *
5517  * Returns: (transfer none): a #gpointer to the private data.
5518  */
5519 gpointer
5520 gst_pad_get_element_private (GstPad * pad)
5522   return pad->element_private;
5525 static void
5526 do_stream_status (GstPad * pad, GstStreamStatusType type,
5527     GThread * thread, GstTask * task)
5529   GstElement *parent;
5531   GST_DEBUG_OBJECT (pad, "doing stream-status %d", type);
5533   if ((parent = GST_ELEMENT_CAST (gst_pad_get_parent (pad)))) {
5534     if (GST_IS_ELEMENT (parent)) {
5535       GstMessage *message;
5536       GValue value = { 0 };
5538       if (type == GST_STREAM_STATUS_TYPE_ENTER) {
5539         gchar *tname, *ename, *pname;
5541         /* create a good task name */
5542         ename = gst_element_get_name (parent);
5543         pname = gst_pad_get_name (pad);
5544         tname = g_strdup_printf ("%s:%s", ename, pname);
5545         g_free (ename);
5546         g_free (pname);
5548         gst_object_set_name (GST_OBJECT_CAST (task), tname);
5549         g_free (tname);
5550       }
5552       message = gst_message_new_stream_status (GST_OBJECT_CAST (pad),
5553           type, parent);
5555       g_value_init (&value, GST_TYPE_TASK);
5556       g_value_set_object (&value, task);
5557       gst_message_set_stream_status_object (message, &value);
5558       g_value_unset (&value);
5560       GST_DEBUG_OBJECT (pad, "posting stream-status %d", type);
5561       gst_element_post_message (parent, message);
5562     }
5563     gst_object_unref (parent);
5564   }
5567 static void
5568 pad_enter_thread (GstTask * task, GThread * thread, gpointer user_data)
5570   do_stream_status (GST_PAD_CAST (user_data), GST_STREAM_STATUS_TYPE_ENTER,
5571       thread, task);
5574 static void
5575 pad_leave_thread (GstTask * task, GThread * thread, gpointer user_data)
5577   do_stream_status (GST_PAD_CAST (user_data), GST_STREAM_STATUS_TYPE_LEAVE,
5578       thread, task);
5581 static GstTaskThreadCallbacks thr_callbacks = {
5582   pad_enter_thread,
5583   pad_leave_thread,
5584 };
5586 /**
5587  * gst_pad_start_task:
5588  * @pad: the #GstPad to start the task of
5589  * @func: the task function to call
5590  * @data: data passed to the task function
5591  *
5592  * Starts a task that repeatedly calls @func with @data. This function
5593  * is mostly used in pad activation functions to start the dataflow.
5594  * The #GST_PAD_STREAM_LOCK of @pad will automatically be acquired
5595  * before @func is called.
5596  *
5597  * Returns: a %TRUE if the task could be started.
5598  */
5599 gboolean
5600 gst_pad_start_task (GstPad * pad, GstTaskFunction func, gpointer data)
5602   GstTask *task;
5603   gboolean res;
5605   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
5606   g_return_val_if_fail (func != NULL, FALSE);
5608   GST_DEBUG_OBJECT (pad, "start task");
5610   GST_OBJECT_LOCK (pad);
5611   task = GST_PAD_TASK (pad);
5612   if (task == NULL) {
5613     task = gst_task_create (func, data);
5614     gst_task_set_lock (task, GST_PAD_GET_STREAM_LOCK (pad));
5615     gst_task_set_thread_callbacks (task, &thr_callbacks, pad, NULL);
5616     GST_DEBUG_OBJECT (pad, "created task");
5617     GST_PAD_TASK (pad) = task;
5618     gst_object_ref (task);
5619     /* release lock to post the message */
5620     GST_OBJECT_UNLOCK (pad);
5622     do_stream_status (pad, GST_STREAM_STATUS_TYPE_CREATE, NULL, task);
5624     gst_object_unref (task);
5626     GST_OBJECT_LOCK (pad);
5627     /* nobody else is supposed to have changed the pad now */
5628     if (GST_PAD_TASK (pad) != task)
5629       goto concurrent_stop;
5630   }
5631   res = gst_task_set_state (task, GST_TASK_STARTED);
5632   GST_OBJECT_UNLOCK (pad);
5634   return res;
5636   /* ERRORS */
5637 concurrent_stop:
5638   {
5639     GST_OBJECT_UNLOCK (pad);
5640     return TRUE;
5641   }
5644 /**
5645  * gst_pad_pause_task:
5646  * @pad: the #GstPad to pause the task of
5647  *
5648  * Pause the task of @pad. This function will also wait until the
5649  * function executed by the task is finished if this function is not
5650  * called from the task function.
5651  *
5652  * Returns: a TRUE if the task could be paused or FALSE when the pad
5653  * has no task.
5654  */
5655 gboolean
5656 gst_pad_pause_task (GstPad * pad)
5658   GstTask *task;
5659   gboolean res;
5661   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
5663   GST_DEBUG_OBJECT (pad, "pause task");
5665   GST_OBJECT_LOCK (pad);
5666   task = GST_PAD_TASK (pad);
5667   if (task == NULL)
5668     goto no_task;
5669   res = gst_task_set_state (task, GST_TASK_PAUSED);
5670   GST_OBJECT_UNLOCK (pad);
5672   /* wait for task function to finish, this lock is recursive so it does nothing
5673    * when the pause is called from the task itself */
5674   GST_PAD_STREAM_LOCK (pad);
5675   GST_PAD_STREAM_UNLOCK (pad);
5677   return res;
5679 no_task:
5680   {
5681     GST_DEBUG_OBJECT (pad, "pad has no task");
5682     GST_OBJECT_UNLOCK (pad);
5683     return FALSE;
5684   }
5687 /**
5688  * gst_pad_stop_task:
5689  * @pad: the #GstPad to stop the task of
5690  *
5691  * Stop the task of @pad. This function will also make sure that the
5692  * function executed by the task will effectively stop if not called
5693  * from the GstTaskFunction.
5694  *
5695  * This function will deadlock if called from the GstTaskFunction of
5696  * the task. Use gst_task_pause() instead.
5697  *
5698  * Regardless of whether the pad has a task, the stream lock is acquired and
5699  * released so as to ensure that streaming through this pad has finished.
5700  *
5701  * Returns: a TRUE if the task could be stopped or FALSE on error.
5702  */
5703 gboolean
5704 gst_pad_stop_task (GstPad * pad)
5706   GstTask *task;
5707   gboolean res;
5709   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
5711   GST_DEBUG_OBJECT (pad, "stop task");
5713   GST_OBJECT_LOCK (pad);
5714   task = GST_PAD_TASK (pad);
5715   if (task == NULL)
5716     goto no_task;
5717   GST_PAD_TASK (pad) = NULL;
5718   res = gst_task_set_state (task, GST_TASK_STOPPED);
5719   GST_OBJECT_UNLOCK (pad);
5721   GST_PAD_STREAM_LOCK (pad);
5722   GST_PAD_STREAM_UNLOCK (pad);
5724   if (!gst_task_join (task))
5725     goto join_failed;
5727   gst_object_unref (task);
5729   return res;
5731 no_task:
5732   {
5733     GST_DEBUG_OBJECT (pad, "no task");
5734     GST_OBJECT_UNLOCK (pad);
5736     GST_PAD_STREAM_LOCK (pad);
5737     GST_PAD_STREAM_UNLOCK (pad);
5739     /* this is not an error */
5740     return TRUE;
5741   }
5742 join_failed:
5743   {
5744     /* this is bad, possibly the application tried to join the task from
5745      * the task's thread. We install the task again so that it will be stopped
5746      * again from the right thread next time hopefully. */
5747     GST_OBJECT_LOCK (pad);
5748     GST_DEBUG_OBJECT (pad, "join failed");
5749     /* we can only install this task if there was no other task */
5750     if (GST_PAD_TASK (pad) == NULL)
5751       GST_PAD_TASK (pad) = task;
5752     GST_OBJECT_UNLOCK (pad);
5754     return FALSE;
5755   }