Be sure that we have a new copy of the caps and not reffed caps from a template
[platform/upstream/gstreamer.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  */
62
63 #include "gst_private.h"
64
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"
74
75 GST_DEBUG_CATEGORY_STATIC (debug_dataflow);
76 #define GST_CAT_DEFAULT GST_CAT_PADS
77
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 };
88
89 enum
90 {
91   PAD_PROP_0,
92   PAD_PROP_CAPS,
93   PAD_PROP_DIRECTION,
94   PAD_PROP_TEMPLATE,
95   /* FILL ME */
96 };
97
98 static void gst_pad_class_init (GstPadClass * klass);
99 static void gst_pad_init (GstPad * pad);
100 static void gst_pad_dispose (GObject * object);
101 static void gst_pad_finalize (GObject * object);
102 static void gst_pad_set_property (GObject * object, guint prop_id,
103     const GValue * value, GParamSpec * pspec);
104 static void gst_pad_get_property (GObject * object, guint prop_id,
105     GValue * value, GParamSpec * pspec);
106
107 static GstFlowReturn handle_pad_block (GstPad * pad);
108 static GstCaps *gst_pad_get_caps_unlocked (GstPad * pad);
109 static void gst_pad_set_pad_template (GstPad * pad, GstPadTemplate * templ);
110 static gboolean gst_pad_activate_default (GstPad * pad);
111 static gboolean gst_pad_acceptcaps_default (GstPad * pad, GstCaps * caps);
112
113 #ifndef GST_DISABLE_LOADSAVE
114 static xmlNodePtr gst_pad_save_thyself (GstObject * object, xmlNodePtr parent);
115 #endif
116
117 static GstObjectClass *parent_class = NULL;
118 static guint gst_pad_signals[LAST_SIGNAL] = { 0 };
119
120 /* quarks for probe signals */
121 static GQuark buffer_quark;
122 static GQuark event_quark;
123
124 typedef struct
125 {
126   const gint ret;
127   const gchar *name;
128   GQuark quark;
129 } GstFlowQuarks;
130
131 static GstFlowQuarks flow_quarks[] = {
132   {GST_FLOW_CUSTOM_SUCCESS, "custom-success", 0},
133   {GST_FLOW_RESEND, "resend", 0},
134   {GST_FLOW_OK, "ok", 0},
135   {GST_FLOW_NOT_LINKED, "not-linked", 0},
136   {GST_FLOW_WRONG_STATE, "wrong-state", 0},
137   {GST_FLOW_UNEXPECTED, "unexpected", 0},
138   {GST_FLOW_NOT_NEGOTIATED, "not-negotiated", 0},
139   {GST_FLOW_ERROR, "error", 0},
140   {GST_FLOW_NOT_SUPPORTED, "not-supported", 0},
141   {GST_FLOW_CUSTOM_ERROR, "custom-error", 0},
142
143   {0, NULL, 0}
144 };
145
146 /**
147  * gst_flow_get_name:
148  * @ret: a #GstFlowReturn to get the name of.
149  *
150  * Gets a string representing the given flow return.
151  *
152  * Returns: a static string with the name of the flow return.
153  */
154 G_CONST_RETURN gchar *
155 gst_flow_get_name (GstFlowReturn ret)
156 {
157   gint i;
158
159   ret = CLAMP (ret, GST_FLOW_CUSTOM_ERROR, GST_FLOW_CUSTOM_SUCCESS);
160
161   for (i = 0; flow_quarks[i].name; i++) {
162     if (ret == flow_quarks[i].ret)
163       return flow_quarks[i].name;
164   }
165   return "unknown";
166 }
167
168 /**
169  * gst_flow_to_quark:
170  * @ret: a #GstFlowReturn to get the quark of.
171  *
172  * Get the unique quark for the given GstFlowReturn.
173  *
174  * Returns: the quark associated with the flow return or 0 if an
175  * invalid return was specified.
176  */
177 GQuark
178 gst_flow_to_quark (GstFlowReturn ret)
179 {
180   gint i;
181
182   ret = CLAMP (ret, GST_FLOW_CUSTOM_ERROR, GST_FLOW_CUSTOM_SUCCESS);
183
184   for (i = 0; flow_quarks[i].name; i++) {
185     if (ret == flow_quarks[i].ret)
186       return flow_quarks[i].quark;
187   }
188   return 0;
189 }
190
191 GType
192 gst_pad_get_type (void)
193 {
194   static GType gst_pad_type = 0;
195
196   if (G_UNLIKELY (gst_pad_type == 0)) {
197     static const GTypeInfo pad_info = {
198       sizeof (GstPadClass), NULL, NULL,
199       (GClassInitFunc) gst_pad_class_init, NULL, NULL,
200       sizeof (GstPad),
201       0,
202       (GInstanceInitFunc) gst_pad_init, NULL
203     };
204     gint i;
205
206     gst_pad_type = g_type_register_static (GST_TYPE_OBJECT, "GstPad",
207         &pad_info, 0);
208
209     buffer_quark = g_quark_from_static_string ("buffer");
210     event_quark = g_quark_from_static_string ("event");
211
212     for (i = 0; flow_quarks[i].name; i++) {
213       flow_quarks[i].quark = g_quark_from_static_string (flow_quarks[i].name);
214     }
215
216     GST_DEBUG_CATEGORY_INIT (debug_dataflow, "GST_DATAFLOW",
217         GST_DEBUG_BOLD | GST_DEBUG_FG_GREEN, "dataflow inside pads");
218   }
219   return gst_pad_type;
220 }
221
222 static gboolean
223 _gst_do_pass_data_accumulator (GSignalInvocationHint * ihint,
224     GValue * return_accu, const GValue * handler_return, gpointer dummy)
225 {
226   gboolean ret = g_value_get_boolean (handler_return);
227
228   GST_DEBUG ("accumulated %d", ret);
229   g_value_set_boolean (return_accu, ret);
230
231   return ret;
232 }
233
234 static gboolean
235 default_have_data (GstPad * pad, GstMiniObject * o)
236 {
237   return TRUE;
238 }
239
240 static void
241 gst_pad_class_init (GstPadClass * klass)
242 {
243   GObjectClass *gobject_class;
244   GstObjectClass *gstobject_class;
245
246   gobject_class = G_OBJECT_CLASS (klass);
247   gstobject_class = GST_OBJECT_CLASS (klass);
248
249   parent_class = g_type_class_peek_parent (klass);
250
251   gobject_class->dispose = GST_DEBUG_FUNCPTR (gst_pad_dispose);
252   gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_pad_finalize);
253   gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_pad_set_property);
254   gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_pad_get_property);
255
256   /**
257    * GstPad::linked:
258    * @pad: the pad that emitted the signal
259    * @peer: the peer pad that has been connected
260    *
261    * Signals that a pad has been linked to the peer pad.
262    */
263   gst_pad_signals[PAD_LINKED] =
264       g_signal_new ("linked", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
265       G_STRUCT_OFFSET (GstPadClass, linked), NULL, NULL,
266       gst_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GST_TYPE_PAD);
267   /**
268    * GstPad::unlinked:
269    * @pad: the pad that emitted the signal
270    * @peer: the peer pad that has been disconnected
271    *
272    * Signals that a pad has been unlinked from the peer pad.
273    */
274   gst_pad_signals[PAD_UNLINKED] =
275       g_signal_new ("unlinked", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
276       G_STRUCT_OFFSET (GstPadClass, unlinked), NULL, NULL,
277       gst_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GST_TYPE_PAD);
278   /**
279    * GstPad::request-link:
280    * @pad: the pad that emitted the signal
281    * @peer: the peer pad for which a connection is requested
282    *
283    * Signals that a pad connection has been requested.
284    */
285   gst_pad_signals[PAD_REQUEST_LINK] =
286       g_signal_new ("request-link", G_TYPE_FROM_CLASS (klass),
287       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstPadClass, request_link), NULL,
288       NULL, gst_marshal_VOID__OBJECT, G_TYPE_NONE, 0);
289
290   /**
291    * GstPad::have-data:
292    * @pad: the pad that emitted the signal
293    * @mini_obj: new data
294    *
295    * Signals that new data is available on the pad. This signal is used
296    * internally for implementing pad probes.
297    * See gst_pad_add_*_probe functions.
298    *
299    * Returns: %TRUE to keep the data, %FALSE to drop it
300    */
301   gst_pad_signals[PAD_HAVE_DATA] =
302       g_signal_new ("have-data", G_TYPE_FROM_CLASS (klass),
303       G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
304       G_STRUCT_OFFSET (GstPadClass, have_data),
305       _gst_do_pass_data_accumulator,
306       NULL, gst_marshal_BOOLEAN__POINTER, G_TYPE_BOOLEAN, 1,
307       GST_TYPE_MINI_OBJECT);
308
309   g_object_class_install_property (gobject_class, PAD_PROP_CAPS,
310       g_param_spec_boxed ("caps", "Caps", "The capabilities of the pad",
311           GST_TYPE_CAPS, G_PARAM_READABLE));
312   g_object_class_install_property (gobject_class, PAD_PROP_DIRECTION,
313       g_param_spec_enum ("direction", "Direction", "The direction of the pad",
314           GST_TYPE_PAD_DIRECTION, GST_PAD_UNKNOWN,
315           G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
316   /* FIXME, Make G_PARAM_CONSTRUCT_ONLY when we fix ghostpads. */
317   g_object_class_install_property (gobject_class, PAD_PROP_TEMPLATE,
318       g_param_spec_object ("template", "Template",
319           "The GstPadTemplate of this pad", GST_TYPE_PAD_TEMPLATE,
320           G_PARAM_READWRITE));
321
322 #ifndef GST_DISABLE_LOADSAVE
323   gstobject_class->save_thyself = GST_DEBUG_FUNCPTR (gst_pad_save_thyself);
324 #endif
325   gstobject_class->path_string_separator = ".";
326
327   klass->have_data = default_have_data;
328 }
329
330 static void
331 gst_pad_init (GstPad * pad)
332 {
333   GST_PAD_DIRECTION (pad) = GST_PAD_UNKNOWN;
334   GST_PAD_PEER (pad) = NULL;
335
336   GST_PAD_CHAINFUNC (pad) = NULL;
337
338   GST_PAD_LINKFUNC (pad) = NULL;
339
340   GST_PAD_CAPS (pad) = NULL;
341   GST_PAD_GETCAPSFUNC (pad) = NULL;
342
343   GST_PAD_ACTIVATEFUNC (pad) = GST_DEBUG_FUNCPTR (gst_pad_activate_default);
344   GST_PAD_EVENTFUNC (pad) = GST_DEBUG_FUNCPTR (gst_pad_event_default);
345   GST_PAD_QUERYTYPEFUNC (pad) =
346       GST_DEBUG_FUNCPTR (gst_pad_get_query_types_default);
347   GST_PAD_QUERYFUNC (pad) = GST_DEBUG_FUNCPTR (gst_pad_query_default);
348   GST_PAD_INTLINKFUNC (pad) =
349       GST_DEBUG_FUNCPTR (gst_pad_get_internal_links_default);
350   GST_PAD_ACCEPTCAPSFUNC (pad) = GST_DEBUG_FUNCPTR (gst_pad_acceptcaps_default);
351
352   pad->do_buffer_signals = 0;
353   pad->do_event_signals = 0;
354
355   GST_PAD_SET_FLUSHING (pad);
356
357   pad->preroll_lock = g_mutex_new ();
358   pad->preroll_cond = g_cond_new ();
359
360   pad->stream_rec_lock = g_new (GStaticRecMutex, 1);
361   g_static_rec_mutex_init (pad->stream_rec_lock);
362
363   pad->block_cond = g_cond_new ();
364 }
365
366 static void
367 gst_pad_dispose (GObject * object)
368 {
369   GstPad *pad = GST_PAD (object);
370   GstPad *peer;
371
372   GST_CAT_DEBUG_OBJECT (GST_CAT_REFCOUNTING, pad, "dispose");
373
374   /* unlink the peer pad */
375   if ((peer = gst_pad_get_peer (pad))) {
376     /* window for MT unsafeness, someone else could unlink here
377      * and then we call unlink with wrong pads. The unlink
378      * function would catch this and safely return failed. */
379     if (GST_PAD_IS_SRC (pad))
380       gst_pad_unlink (pad, peer);
381     else
382       gst_pad_unlink (peer, pad);
383
384     gst_object_unref (peer);
385   }
386
387   /* clear the caps */
388   gst_caps_replace (&GST_PAD_CAPS (pad), NULL);
389
390   gst_pad_set_pad_template (pad, NULL);
391
392   G_OBJECT_CLASS (parent_class)->dispose (object);
393 }
394
395 static void
396 gst_pad_finalize (GObject * object)
397 {
398   GstPad *pad = GST_PAD (object);
399   GstTask *task;
400
401   /* in case the task is still around, clean it up */
402   if ((task = GST_PAD_TASK (pad))) {
403     gst_task_join (task);
404     GST_PAD_TASK (pad) = NULL;
405     gst_object_unref (task);
406   }
407
408   if (pad->stream_rec_lock) {
409     g_static_rec_mutex_free (pad->stream_rec_lock);
410     g_free (pad->stream_rec_lock);
411     pad->stream_rec_lock = NULL;
412   }
413   if (pad->preroll_lock) {
414     g_mutex_free (pad->preroll_lock);
415     g_cond_free (pad->preroll_cond);
416     pad->preroll_lock = NULL;
417     pad->preroll_cond = NULL;
418   }
419   if (pad->block_cond) {
420     g_cond_free (pad->block_cond);
421     pad->block_cond = NULL;
422   }
423
424   G_OBJECT_CLASS (parent_class)->finalize (object);
425 }
426
427 static void
428 gst_pad_set_property (GObject * object, guint prop_id,
429     const GValue * value, GParamSpec * pspec)
430 {
431   g_return_if_fail (GST_IS_PAD (object));
432
433   switch (prop_id) {
434     case PAD_PROP_DIRECTION:
435       GST_PAD_DIRECTION (object) = g_value_get_enum (value);
436       break;
437     case PAD_PROP_TEMPLATE:
438       gst_pad_set_pad_template (GST_PAD_CAST (object),
439           (GstPadTemplate *) g_value_get_object (value));
440       break;
441     default:
442       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
443       break;
444   }
445 }
446
447 static void
448 gst_pad_get_property (GObject * object, guint prop_id,
449     GValue * value, GParamSpec * pspec)
450 {
451   g_return_if_fail (GST_IS_PAD (object));
452
453   switch (prop_id) {
454     case PAD_PROP_CAPS:
455       GST_OBJECT_LOCK (object);
456       g_value_set_boxed (value, GST_PAD_CAPS (object));
457       GST_OBJECT_UNLOCK (object);
458       break;
459     case PAD_PROP_DIRECTION:
460       g_value_set_enum (value, GST_PAD_DIRECTION (object));
461       break;
462     case PAD_PROP_TEMPLATE:
463       g_value_set_object (value, GST_PAD_PAD_TEMPLATE (object));
464       break;
465     default:
466       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
467       break;
468   }
469 }
470
471 /**
472  * gst_pad_new:
473  * @name: the name of the new pad.
474  * @direction: the #GstPadDirection of the pad.
475  *
476  * Creates a new pad with the given name in the given direction.
477  * If name is NULL, a guaranteed unique name (across all pads)
478  * will be assigned.
479  * This function makes a copy of the name so you can safely free the name.
480  *
481  * Returns: a new #GstPad, or NULL in case of an error.
482  *
483  * MT safe.
484  */
485 GstPad *
486 gst_pad_new (const gchar * name, GstPadDirection direction)
487 {
488   return g_object_new (GST_TYPE_PAD,
489       "name", name, "direction", direction, NULL);
490 }
491
492 /**
493  * gst_pad_new_from_template:
494  * @templ: the pad template to use
495  * @name: the name of the element
496  *
497  * Creates a new pad with the given name from the given template.
498  * If name is NULL, a guaranteed unique name (across all pads)
499  * will be assigned.
500  * This function makes a copy of the name so you can safely free the name.
501  *
502  * Returns: a new #GstPad, or NULL in case of an error.
503  */
504 GstPad *
505 gst_pad_new_from_template (GstPadTemplate * templ, const gchar * name)
506 {
507   g_return_val_if_fail (GST_IS_PAD_TEMPLATE (templ), NULL);
508
509   return g_object_new (GST_TYPE_PAD,
510       "name", name, "direction", templ->direction, "template", templ, NULL);
511 }
512
513 /**
514  * gst_pad_new_from_static_template:
515  * @templ: the #GstStaticPadTemplate to use
516  * @name: the name of the element
517  *
518  * Creates a new pad with the given name from the given static template.
519  * If name is NULL, a guaranteed unique name (across all pads)
520  * will be assigned.
521  * This function makes a copy of the name so you can safely free the name.
522  *
523  * Returns: a new #GstPad, or NULL in case of an error.
524  */
525 GstPad *
526 gst_pad_new_from_static_template (GstStaticPadTemplate * templ,
527     const gchar * name)
528 {
529   GstPad *pad;
530   GstPadTemplate *template;
531
532   template = gst_static_pad_template_get (templ);
533   pad = gst_pad_new_from_template (template, name);
534   gst_object_unref (template);
535   return pad;
536 }
537
538 /**
539  * gst_pad_get_direction:
540  * @pad: a #GstPad to get the direction of.
541  *
542  * Gets the direction of the pad. The direction of the pad is
543  * decided at construction time so this function does not take
544  * the LOCK.
545  *
546  * Returns: the #GstPadDirection of the pad.
547  *
548  * MT safe.
549  */
550 GstPadDirection
551 gst_pad_get_direction (GstPad * pad)
552 {
553   GstPadDirection result;
554
555   /* PAD_UNKNOWN is a little silly but we need some sort of
556    * error return value */
557   g_return_val_if_fail (GST_IS_PAD (pad), GST_PAD_UNKNOWN);
558
559   GST_OBJECT_LOCK (pad);
560   result = GST_PAD_DIRECTION (pad);
561   GST_OBJECT_UNLOCK (pad);
562
563   return result;
564 }
565
566 static gboolean
567 gst_pad_activate_default (GstPad * pad)
568 {
569   return gst_pad_activate_push (pad, TRUE);
570 }
571
572 static void
573 pre_activate (GstPad * pad, GstActivateMode new_mode)
574 {
575   switch (new_mode) {
576     case GST_ACTIVATE_PUSH:
577     case GST_ACTIVATE_PULL:
578       GST_OBJECT_LOCK (pad);
579       GST_DEBUG_OBJECT (pad, "setting ACTIVATE_MODE %d, unset flushing",
580           new_mode);
581       GST_PAD_UNSET_FLUSHING (pad);
582       GST_PAD_ACTIVATE_MODE (pad) = new_mode;
583       GST_OBJECT_UNLOCK (pad);
584       break;
585     case GST_ACTIVATE_NONE:
586       GST_OBJECT_LOCK (pad);
587       GST_DEBUG_OBJECT (pad, "setting ACTIVATE_MODE NONE, set flushing");
588       GST_PAD_SET_FLUSHING (pad);
589       GST_PAD_ACTIVATE_MODE (pad) = new_mode;
590       /* unlock blocked pads so element can resume and stop */
591       GST_PAD_BLOCK_BROADCAST (pad);
592       GST_OBJECT_UNLOCK (pad);
593       break;
594   }
595 }
596
597 static void
598 post_activate (GstPad * pad, GstActivateMode new_mode)
599 {
600   switch (new_mode) {
601     case GST_ACTIVATE_PUSH:
602     case GST_ACTIVATE_PULL:
603       /* nop */
604       break;
605     case GST_ACTIVATE_NONE:
606       /* ensures that streaming stops */
607       GST_PAD_STREAM_LOCK (pad);
608       GST_DEBUG_OBJECT (pad, "stopped streaming");
609       GST_PAD_STREAM_UNLOCK (pad);
610       break;
611   }
612 }
613
614 /**
615  * gst_pad_set_active:
616  * @pad: the #GstPad to activate or deactivate.
617  * @active: whether or not the pad should be active.
618  *
619  * Activates or deactivates the given pad.
620  * Normally called from within core state change functions.
621  *
622  * If @active, makes sure the pad is active. If it is already active, either in
623  * push or pull mode, just return. Otherwise dispatches to the pad's activate
624  * function to perform the actual activation.
625  *
626  * If not @active, checks the pad's current mode and calls
627  * gst_pad_activate_push() or gst_pad_activate_pull(), as appropriate, with a
628  * FALSE argument.
629  *
630  * Returns: #TRUE if the operation was successful.
631  *
632  * MT safe.
633  */
634 gboolean
635 gst_pad_set_active (GstPad * pad, gboolean active)
636 {
637   GstActivateMode old;
638   gboolean ret = FALSE;
639
640   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
641
642   GST_OBJECT_LOCK (pad);
643   old = GST_PAD_ACTIVATE_MODE (pad);
644   GST_OBJECT_UNLOCK (pad);
645
646   if (active) {
647     switch (old) {
648       case GST_ACTIVATE_PUSH:
649         GST_DEBUG_OBJECT (pad, "activating pad from push");
650         ret = TRUE;
651         break;
652       case GST_ACTIVATE_PULL:
653         GST_DEBUG_OBJECT (pad, "activating pad from pull");
654         ret = TRUE;
655         break;
656       case GST_ACTIVATE_NONE:
657         GST_DEBUG_OBJECT (pad, "activating pad from none");
658         ret = (GST_PAD_ACTIVATEFUNC (pad)) (pad);
659         break;
660     }
661   } else {
662     switch (old) {
663       case GST_ACTIVATE_PUSH:
664         GST_DEBUG_OBJECT (pad, "deactivating pad from push");
665         ret = gst_pad_activate_push (pad, FALSE);
666         break;
667       case GST_ACTIVATE_PULL:
668         GST_DEBUG_OBJECT (pad, "deactivating pad from pull");
669         ret = gst_pad_activate_pull (pad, FALSE);
670         break;
671       case GST_ACTIVATE_NONE:
672         GST_DEBUG_OBJECT (pad, "deactivating pad from none");
673         ret = TRUE;
674         break;
675     }
676   }
677
678   if (!ret) {
679     GST_OBJECT_LOCK (pad);
680     if (!active) {
681       g_critical ("Failed to deactivate pad %s:%s, very bad",
682           GST_DEBUG_PAD_NAME (pad));
683     } else {
684       GST_WARNING_OBJECT (pad, "Failed to activate pad");
685     }
686     GST_OBJECT_UNLOCK (pad);
687   }
688
689   return ret;
690 }
691
692 /**
693  * gst_pad_activate_pull:
694  * @pad: the #GstPad to activate or deactivate.
695  * @active: whether or not the pad should be active.
696  *
697  * Activates or deactivates the given pad in pull mode via dispatching to the
698  * pad's activatepullfunc. For use from within pad activation functions only.
699  * When called on sink pads, will first proxy the call to the peer pad, which
700  * is expected to activate its internally linked pads from within its
701  * activate_pull function.
702  *
703  * If you don't know what this is, you probably don't want to call it.
704  *
705  * Returns: TRUE if the operation was successful.
706  *
707  * MT safe.
708  */
709 gboolean
710 gst_pad_activate_pull (GstPad * pad, gboolean active)
711 {
712   GstActivateMode old, new;
713   GstPad *peer;
714
715   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
716
717   GST_OBJECT_LOCK (pad);
718   old = GST_PAD_ACTIVATE_MODE (pad);
719   GST_OBJECT_UNLOCK (pad);
720
721   if (active) {
722     switch (old) {
723       case GST_ACTIVATE_PULL:
724         GST_DEBUG_OBJECT (pad, "activating pad from pull, was ok");
725         goto was_ok;
726       case GST_ACTIVATE_PUSH:
727         GST_DEBUG_OBJECT (pad,
728             "activating pad from push, deactivate push first");
729         /* pad was activate in the wrong direction, deactivate it
730          * and reactivate it in pull mode */
731         if (G_UNLIKELY (!gst_pad_activate_push (pad, FALSE)))
732           goto deactivate_failed;
733         /* fallthrough, pad is deactivated now. */
734       case GST_ACTIVATE_NONE:
735         GST_DEBUG_OBJECT (pad, "activating pad from none");
736         break;
737     }
738   } else {
739     switch (old) {
740       case GST_ACTIVATE_NONE:
741         GST_DEBUG_OBJECT (pad, "deactivating pad from none, was ok");
742         goto was_ok;
743       case GST_ACTIVATE_PUSH:
744         GST_DEBUG_OBJECT (pad, "deactivating pad from push, weird");
745         /* pad was activated in the other direction, deactivate it
746          * in push mode, this should not happen... */
747         if (G_UNLIKELY (!gst_pad_activate_push (pad, FALSE)))
748           goto deactivate_failed;
749         /* everything is fine now */
750         goto was_ok;
751       case GST_ACTIVATE_PULL:
752         GST_DEBUG_OBJECT (pad, "deactivating pad from pull");
753         break;
754     }
755   }
756
757   if (gst_pad_get_direction (pad) == GST_PAD_SINK) {
758     if ((peer = gst_pad_get_peer (pad))) {
759       GST_DEBUG_OBJECT (pad, "calling peer");
760       if (G_UNLIKELY (!gst_pad_activate_pull (peer, active)))
761         goto peer_failed;
762       gst_object_unref (peer);
763     } else {
764       goto not_linked;
765     }
766   } else {
767     if (G_UNLIKELY (GST_PAD_GETRANGEFUNC (pad) == NULL))
768       goto failure;             /* Can't activate pull on a src without a
769                                    getrange function */
770   }
771
772   new = active ? GST_ACTIVATE_PULL : GST_ACTIVATE_NONE;
773   pre_activate (pad, new);
774
775   if (GST_PAD_ACTIVATEPULLFUNC (pad)) {
776     if (G_UNLIKELY (!GST_PAD_ACTIVATEPULLFUNC (pad) (pad, active)))
777       goto failure;
778   } else {
779     /* can happen for sinks of passthrough elements */
780   }
781
782   post_activate (pad, new);
783
784   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "%s in pull mode",
785       active ? "activated" : "deactivated");
786
787   return TRUE;
788
789 was_ok:
790   {
791     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "already %s in pull mode",
792         active ? "activated" : "deactivated");
793     return TRUE;
794   }
795 deactivate_failed:
796   {
797     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
798         "failed to %s in switch to pull from mode %d",
799         (active ? "activate" : "deactivate"), old);
800     return FALSE;
801   }
802 peer_failed:
803   {
804     GST_OBJECT_LOCK (peer);
805     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
806         "activate_pull on peer (%s:%s) failed", GST_DEBUG_PAD_NAME (peer));
807     GST_OBJECT_UNLOCK (peer);
808     gst_object_unref (peer);
809     return FALSE;
810   }
811 not_linked:
812   {
813     GST_CAT_INFO_OBJECT (GST_CAT_PADS, pad, "can't activate unlinked sink "
814         "pad in pull mode");
815     return FALSE;
816   }
817 failure:
818   {
819     GST_OBJECT_LOCK (pad);
820     GST_CAT_INFO_OBJECT (GST_CAT_PADS, pad, "failed to %s in pull mode",
821         active ? "activate" : "deactivate");
822     GST_PAD_SET_FLUSHING (pad);
823     GST_PAD_ACTIVATE_MODE (pad) = old;
824     GST_OBJECT_UNLOCK (pad);
825     return FALSE;
826   }
827 }
828
829 /**
830  * gst_pad_activate_push:
831  * @pad: the #GstPad to activate or deactivate.
832  * @active: whether the pad should be active or not.
833  *
834  * Activates or deactivates the given pad in push mode via dispatching to the
835  * pad's activatepushfunc. For use from within pad activation functions only.
836  *
837  * If you don't know what this is, you probably don't want to call it.
838  *
839  * Returns: %TRUE if the operation was successful.
840  *
841  * MT safe.
842  */
843 gboolean
844 gst_pad_activate_push (GstPad * pad, gboolean active)
845 {
846   GstActivateMode old, new;
847
848   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
849   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "trying to set %s in push mode",
850       active ? "activated" : "deactivated");
851
852   GST_OBJECT_LOCK (pad);
853   old = GST_PAD_ACTIVATE_MODE (pad);
854   GST_OBJECT_UNLOCK (pad);
855
856   if (active) {
857     switch (old) {
858       case GST_ACTIVATE_PUSH:
859         GST_DEBUG_OBJECT (pad, "activating pad from push, was ok");
860         goto was_ok;
861       case GST_ACTIVATE_PULL:
862         GST_DEBUG_OBJECT (pad,
863             "activating pad from push, deactivating pull first");
864         /* pad was activate in the wrong direction, deactivate it
865          * an reactivate it in push mode */
866         if (G_UNLIKELY (!gst_pad_activate_pull (pad, FALSE)))
867           goto deactivate_failed;
868         /* fallthrough, pad is deactivated now. */
869       case GST_ACTIVATE_NONE:
870         GST_DEBUG_OBJECT (pad, "activating pad from none");
871         break;
872     }
873   } else {
874     switch (old) {
875       case GST_ACTIVATE_NONE:
876         GST_DEBUG_OBJECT (pad, "deactivating pad from none, was ok");
877         goto was_ok;
878       case GST_ACTIVATE_PULL:
879         GST_DEBUG_OBJECT (pad, "deactivating pad from pull, weird");
880         /* pad was activated in the other direction, deactivate it
881          * in pull mode, this should not happen... */
882         if (G_UNLIKELY (!gst_pad_activate_pull (pad, FALSE)))
883           goto deactivate_failed;
884         /* everything is fine now */
885         goto was_ok;
886       case GST_ACTIVATE_PUSH:
887         GST_DEBUG_OBJECT (pad, "deactivating pad from push");
888         break;
889     }
890   }
891
892   new = active ? GST_ACTIVATE_PUSH : GST_ACTIVATE_NONE;
893   pre_activate (pad, new);
894
895   if (GST_PAD_ACTIVATEPUSHFUNC (pad)) {
896     if (G_UNLIKELY (!GST_PAD_ACTIVATEPUSHFUNC (pad) (pad, active))) {
897       goto failure;
898     }
899   } else {
900     /* quite ok, element relies on state change func to prepare itself */
901   }
902
903   post_activate (pad, new);
904
905   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "%s in push mode",
906       active ? "activated" : "deactivated");
907   return TRUE;
908
909 was_ok:
910   {
911     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "already %s in push mode",
912         active ? "activated" : "deactivated");
913     return TRUE;
914   }
915 deactivate_failed:
916   {
917     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
918         "failed to %s in switch to push from mode %d",
919         (active ? "activate" : "deactivate"), old);
920     return FALSE;
921   }
922 failure:
923   {
924     GST_OBJECT_LOCK (pad);
925     GST_CAT_INFO_OBJECT (GST_CAT_PADS, pad, "failed to %s in push mode",
926         active ? "activate" : "deactivate");
927     GST_PAD_SET_FLUSHING (pad);
928     GST_PAD_ACTIVATE_MODE (pad) = old;
929     GST_OBJECT_UNLOCK (pad);
930     return FALSE;
931   }
932 }
933
934 /**
935  * gst_pad_is_active:
936  * @pad: the #GstPad to query
937  *
938  * Query if a pad is active
939  *
940  * Returns: TRUE if the pad is active.
941  *
942  * MT safe.
943  */
944 gboolean
945 gst_pad_is_active (GstPad * pad)
946 {
947   gboolean result = FALSE;
948
949   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
950
951   GST_OBJECT_LOCK (pad);
952   result = GST_PAD_MODE_ACTIVATE (GST_PAD_ACTIVATE_MODE (pad));
953   GST_OBJECT_UNLOCK (pad);
954
955   return result;
956 }
957
958 /**
959  * gst_pad_set_blocked_async:
960  * @pad: the #GstPad to block or unblock
961  * @blocked: boolean indicating whether the pad should be blocked or unblocked
962  * @callback: #GstPadBlockCallback that will be called when the
963  *            operation succeeds
964  * @user_data: user data passed to the callback
965  *
966  * Blocks or unblocks the dataflow on a pad. The provided callback
967  * is called when the operation succeeds; this happens right before the next
968  * attempt at pushing a buffer on the pad.
969  *
970  * This can take a while as the pad can only become blocked when real dataflow
971  * is happening.
972  * When the pipeline is stalled, for example in PAUSED, this can
973  * take an indeterminate amount of time.
974  * You can pass NULL as the callback to make this call block. Be careful with
975  * this blocking call as it might not return for reasons stated above.
976  *
977  * Returns: TRUE if the pad could be blocked. This function can fail if the
978  * wrong parameters were passed or the pad was already in the requested state.
979  *
980  * MT safe.
981  */
982 gboolean
983 gst_pad_set_blocked_async (GstPad * pad, gboolean blocked,
984     GstPadBlockCallback callback, gpointer user_data)
985 {
986   gboolean was_blocked = FALSE;
987
988   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
989
990   GST_OBJECT_LOCK (pad);
991
992   was_blocked = GST_PAD_IS_BLOCKED (pad);
993
994   if (G_UNLIKELY (was_blocked == blocked))
995     goto had_right_state;
996
997   if (blocked) {
998     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "blocking pad");
999
1000     GST_OBJECT_FLAG_SET (pad, GST_PAD_BLOCKED);
1001     pad->block_callback = callback;
1002     pad->block_data = user_data;
1003     if (!callback) {
1004       GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "waiting for block");
1005       GST_PAD_BLOCK_WAIT (pad);
1006       GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "blocked");
1007     }
1008   } else {
1009     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "unblocking pad");
1010
1011     GST_OBJECT_FLAG_UNSET (pad, GST_PAD_BLOCKED);
1012
1013     pad->block_callback = callback;
1014     pad->block_data = user_data;
1015
1016     GST_PAD_BLOCK_BROADCAST (pad);
1017     if (!callback) {
1018       /* no callback, wait for the unblock to happen */
1019       GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "waiting for unblock");
1020       GST_PAD_BLOCK_WAIT (pad);
1021       GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "unblocked");
1022     }
1023   }
1024   GST_OBJECT_UNLOCK (pad);
1025
1026   return TRUE;
1027
1028 had_right_state:
1029   {
1030     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
1031         "pad was in right state (%d)", was_blocked);
1032     GST_OBJECT_UNLOCK (pad);
1033
1034     return FALSE;
1035   }
1036 }
1037
1038 /**
1039  * gst_pad_set_blocked:
1040  * @pad: the #GstPad to block or unblock
1041  * @blocked: boolean indicating we should block or unblock
1042  *
1043  * Blocks or unblocks the dataflow on a pad. This function is
1044  * a shortcut for gst_pad_set_blocked_async() with a NULL
1045  * callback.
1046  *
1047  * Returns: TRUE if the pad could be blocked. This function can fail if the
1048  * wrong parameters were passed or the pad was already in the requested state.
1049  *
1050  * MT safe.
1051  */
1052 gboolean
1053 gst_pad_set_blocked (GstPad * pad, gboolean blocked)
1054 {
1055   return gst_pad_set_blocked_async (pad, blocked, NULL, NULL);
1056 }
1057
1058 /**
1059  * gst_pad_is_blocked:
1060  * @pad: the #GstPad to query
1061  *
1062  * Checks if the pad is blocked or not. This function returns the
1063  * last requested state of the pad. It is not certain that the pad
1064  * is actually blocking at this point (see gst_pad_is_blocking()).
1065  *
1066  * Returns: TRUE if the pad is blocked.
1067  *
1068  * MT safe.
1069  */
1070 gboolean
1071 gst_pad_is_blocked (GstPad * pad)
1072 {
1073   gboolean result = FALSE;
1074
1075   g_return_val_if_fail (GST_IS_PAD (pad), result);
1076
1077   GST_OBJECT_LOCK (pad);
1078   result = GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_BLOCKED);
1079   GST_OBJECT_UNLOCK (pad);
1080
1081   return result;
1082 }
1083
1084 /**
1085  * gst_pad_is_blocking:
1086  * @pad: the #GstPad to query
1087  *
1088  * Checks if the pad is blocking or not. This is a guaranteed state
1089  * of whether the pad is actually blocking on a #GstBuffer or a #GstEvent.
1090  *
1091  * Returns: TRUE if the pad is blocking.
1092  *
1093  * MT safe.
1094  *
1095  * Since: 0.10.11
1096  */
1097 gboolean
1098 gst_pad_is_blocking (GstPad * pad)
1099 {
1100   gboolean result = FALSE;
1101
1102   g_return_val_if_fail (GST_IS_PAD (pad), result);
1103
1104   GST_OBJECT_LOCK (pad);
1105   /* the blocking flag is only valid if the pad is not flushing */
1106   result = GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_BLOCKING) &&
1107       !GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLUSHING);
1108   GST_OBJECT_UNLOCK (pad);
1109
1110   return result;
1111 }
1112
1113 /**
1114  * gst_pad_set_activate_function:
1115  * @pad: a #GstPad.
1116  * @activate: the #GstPadActivateFunction to set.
1117  *
1118  * Sets the given activate function for @pad. The activate function will
1119  * dispatch to gst_pad_activate_push() or gst_pad_activate_pull() to perform
1120  * the actual activation. Only makes sense to set on sink pads.
1121  *
1122  * Call this function if your sink pad can start a pull-based task.
1123  */
1124 void
1125 gst_pad_set_activate_function (GstPad * pad, GstPadActivateFunction activate)
1126 {
1127   g_return_if_fail (GST_IS_PAD (pad));
1128
1129   GST_PAD_ACTIVATEFUNC (pad) = activate;
1130   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "activatefunc set to %s",
1131       GST_DEBUG_FUNCPTR_NAME (activate));
1132 }
1133
1134 /**
1135  * gst_pad_set_activatepull_function:
1136  * @pad: a #GstPad.
1137  * @activatepull: the #GstPadActivateModeFunction to set.
1138  *
1139  * Sets the given activate_pull function for the pad. An activate_pull function
1140  * prepares the element and any upstream connections for pulling. See XXX
1141  * part-activation.txt for details.
1142  */
1143 void
1144 gst_pad_set_activatepull_function (GstPad * pad,
1145     GstPadActivateModeFunction activatepull)
1146 {
1147   g_return_if_fail (GST_IS_PAD (pad));
1148
1149   GST_PAD_ACTIVATEPULLFUNC (pad) = activatepull;
1150   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "activatepullfunc set to %s",
1151       GST_DEBUG_FUNCPTR_NAME (activatepull));
1152 }
1153
1154 /**
1155  * gst_pad_set_activatepush_function:
1156  * @pad: a #GstPad.
1157  * @activatepush: the #GstPadActivateModeFunction to set.
1158  *
1159  * Sets the given activate_push function for the pad. An activate_push function
1160  * prepares the element for pushing. See XXX part-activation.txt for details.
1161  */
1162 void
1163 gst_pad_set_activatepush_function (GstPad * pad,
1164     GstPadActivateModeFunction activatepush)
1165 {
1166   g_return_if_fail (GST_IS_PAD (pad));
1167
1168   GST_PAD_ACTIVATEPUSHFUNC (pad) = activatepush;
1169   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "activatepushfunc set to %s",
1170       GST_DEBUG_FUNCPTR_NAME (activatepush));
1171 }
1172
1173 /**
1174  * gst_pad_set_chain_function:
1175  * @pad: a sink #GstPad.
1176  * @chain: the #GstPadChainFunction to set.
1177  *
1178  * Sets the given chain function for the pad. The chain function is called to
1179  * process a #GstBuffer input buffer. see #GstPadChainFunction for more details.
1180  */
1181 void
1182 gst_pad_set_chain_function (GstPad * pad, GstPadChainFunction chain)
1183 {
1184   g_return_if_fail (GST_IS_PAD (pad));
1185   g_return_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SINK);
1186
1187   GST_PAD_CHAINFUNC (pad) = chain;
1188   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "chainfunc set to %s",
1189       GST_DEBUG_FUNCPTR_NAME (chain));
1190 }
1191
1192 /**
1193  * gst_pad_set_getrange_function:
1194  * @pad: a source #GstPad.
1195  * @get: the #GstPadGetRangeFunction to set.
1196  *
1197  * Sets the given getrange function for the pad. The getrange function is
1198  * called to produce a new #GstBuffer to start the processing pipeline. see
1199  * #GstPadGetRangeFunction for a description of the getrange function.
1200  */
1201 void
1202 gst_pad_set_getrange_function (GstPad * pad, GstPadGetRangeFunction get)
1203 {
1204   g_return_if_fail (GST_IS_PAD (pad));
1205   g_return_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SRC);
1206
1207   GST_PAD_GETRANGEFUNC (pad) = get;
1208
1209   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "getrangefunc set to %s",
1210       GST_DEBUG_FUNCPTR_NAME (get));
1211 }
1212
1213 /**
1214  * gst_pad_set_checkgetrange_function:
1215  * @pad: a source #GstPad.
1216  * @check: the #GstPadCheckGetRangeFunction to set.
1217  *
1218  * Sets the given checkgetrange function for the pad. Implement this function
1219  * on a pad if you dynamically support getrange based scheduling on the pad.
1220  */
1221 void
1222 gst_pad_set_checkgetrange_function (GstPad * pad,
1223     GstPadCheckGetRangeFunction check)
1224 {
1225   g_return_if_fail (GST_IS_PAD (pad));
1226   g_return_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SRC);
1227
1228   GST_PAD_CHECKGETRANGEFUNC (pad) = check;
1229
1230   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "checkgetrangefunc set to %s",
1231       GST_DEBUG_FUNCPTR_NAME (check));
1232 }
1233
1234 /**
1235  * gst_pad_set_event_function:
1236  * @pad: a #GstPad of either direction.
1237  * @event: the #GstPadEventFunction to set.
1238  *
1239  * Sets the given event handler for the pad.
1240  */
1241 void
1242 gst_pad_set_event_function (GstPad * pad, GstPadEventFunction event)
1243 {
1244   g_return_if_fail (GST_IS_PAD (pad));
1245
1246   GST_PAD_EVENTFUNC (pad) = event;
1247
1248   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "eventfunc for set to %s",
1249       GST_DEBUG_FUNCPTR_NAME (event));
1250 }
1251
1252 /**
1253  * gst_pad_set_query_function:
1254  * @pad: a #GstPad of either direction.
1255  * @query: the #GstPadQueryFunction to set.
1256  *
1257  * Set the given query function for the pad.
1258  */
1259 void
1260 gst_pad_set_query_function (GstPad * pad, GstPadQueryFunction query)
1261 {
1262   g_return_if_fail (GST_IS_PAD (pad));
1263
1264   GST_PAD_QUERYFUNC (pad) = query;
1265
1266   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "queryfunc set to %s",
1267       GST_DEBUG_FUNCPTR_NAME (query));
1268 }
1269
1270 /**
1271  * gst_pad_set_query_type_function:
1272  * @pad: a #GstPad of either direction.
1273  * @type_func: the #GstPadQueryTypeFunction to set.
1274  *
1275  * Set the given query type function for the pad.
1276  */
1277 void
1278 gst_pad_set_query_type_function (GstPad * pad,
1279     GstPadQueryTypeFunction type_func)
1280 {
1281   g_return_if_fail (GST_IS_PAD (pad));
1282
1283   GST_PAD_QUERYTYPEFUNC (pad) = type_func;
1284
1285   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "querytypefunc set to %s",
1286       GST_DEBUG_FUNCPTR_NAME (type_func));
1287 }
1288
1289 /**
1290  * gst_pad_get_query_types:
1291  * @pad: a #GstPad.
1292  *
1293  * Get an array of supported queries that can be performed
1294  * on this pad.
1295  *
1296  * Returns: a zero-terminated array of #GstQueryType.
1297  */
1298 const GstQueryType *
1299 gst_pad_get_query_types (GstPad * pad)
1300 {
1301   GstPadQueryTypeFunction func;
1302
1303   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
1304
1305   if (G_UNLIKELY ((func = GST_PAD_QUERYTYPEFUNC (pad)) == NULL))
1306     goto no_func;
1307
1308   return func (pad);
1309
1310 no_func:
1311   {
1312     return NULL;
1313   }
1314 }
1315
1316 static gboolean
1317 gst_pad_get_query_types_dispatcher (GstPad * pad, const GstQueryType ** data)
1318 {
1319   *data = gst_pad_get_query_types (pad);
1320
1321   return TRUE;
1322 }
1323
1324 /**
1325  * gst_pad_get_query_types_default:
1326  * @pad: a #GstPad.
1327  *
1328  * Invoke the default dispatcher for the query types on
1329  * the pad.
1330  *
1331  * Returns: an zero-terminated array of #GstQueryType, or NULL if none of the
1332  * internally-linked pads has a query types function.
1333  */
1334 const GstQueryType *
1335 gst_pad_get_query_types_default (GstPad * pad)
1336 {
1337   GstQueryType *result = NULL;
1338
1339   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
1340
1341   gst_pad_dispatcher (pad, (GstPadDispatcherFunction)
1342       gst_pad_get_query_types_dispatcher, &result);
1343
1344   return result;
1345 }
1346
1347 /**
1348  * gst_pad_set_internal_link_function:
1349  * @pad: a #GstPad of either direction.
1350  * @intlink: the #GstPadIntLinkFunction to set.
1351  *
1352  * Sets the given internal link function for the pad.
1353  */
1354 void
1355 gst_pad_set_internal_link_function (GstPad * pad, GstPadIntLinkFunction intlink)
1356 {
1357   g_return_if_fail (GST_IS_PAD (pad));
1358
1359   GST_PAD_INTLINKFUNC (pad) = intlink;
1360   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "internal link set to %s",
1361       GST_DEBUG_FUNCPTR_NAME (intlink));
1362 }
1363
1364 /**
1365  * gst_pad_set_link_function:
1366  * @pad: a #GstPad.
1367  * @link: the #GstPadLinkFunction to set.
1368  *
1369  * Sets the given link function for the pad. It will be called when
1370  * the pad is linked with another pad.
1371  *
1372  * The return value #GST_PAD_LINK_OK should be used when the connection can be
1373  * made.
1374  *
1375  * The return value #GST_PAD_LINK_REFUSED should be used when the connection
1376  * cannot be made for some reason.
1377  *
1378  * If @link is installed on a source pad, it should call the #GstPadLinkFunction
1379  * of the peer sink pad, if present.
1380  */
1381 void
1382 gst_pad_set_link_function (GstPad * pad, GstPadLinkFunction link)
1383 {
1384   g_return_if_fail (GST_IS_PAD (pad));
1385
1386   GST_PAD_LINKFUNC (pad) = link;
1387   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "linkfunc set to %s",
1388       GST_DEBUG_FUNCPTR_NAME (link));
1389 }
1390
1391 /**
1392  * gst_pad_set_unlink_function:
1393  * @pad: a #GstPad.
1394  * @unlink: the #GstPadUnlinkFunction to set.
1395  *
1396  * Sets the given unlink function for the pad. It will be called
1397  * when the pad is unlinked.
1398  */
1399 void
1400 gst_pad_set_unlink_function (GstPad * pad, GstPadUnlinkFunction unlink)
1401 {
1402   g_return_if_fail (GST_IS_PAD (pad));
1403
1404   GST_PAD_UNLINKFUNC (pad) = unlink;
1405   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "unlinkfunc set to %s",
1406       GST_DEBUG_FUNCPTR_NAME (unlink));
1407 }
1408
1409 /**
1410  * gst_pad_set_getcaps_function:
1411  * @pad: a #GstPad.
1412  * @getcaps: the #GstPadGetCapsFunction to set.
1413  *
1414  * Sets the given getcaps function for the pad. @getcaps should return the
1415  * allowable caps for a pad in the context of the element's state, its link to
1416  * other elements, and the devices or files it has opened. These caps must be a
1417  * subset of the pad template caps. In the NULL state with no links, @getcaps
1418  * should ideally return the same caps as the pad template. In rare
1419  * circumstances, an object property can affect the caps returned by @getcaps,
1420  * but this is discouraged.
1421  *
1422  * You do not need to call this function if @pad's allowed caps are always the
1423  * same as the pad template caps. This can only be true if the padtemplate
1424  * has fixed simple caps.
1425  *
1426  * For most filters, the caps returned by @getcaps is directly affected by the
1427  * allowed caps on other pads. For demuxers and decoders, the caps returned by
1428  * the srcpad's getcaps function is directly related to the stream data. Again,
1429  * @getcaps should return the most specific caps it reasonably can, since this
1430  * helps with autoplugging.
1431  *
1432  * Note that the return value from @getcaps is owned by the caller, so the
1433  * caller should unref the caps after usage.
1434  */
1435 void
1436 gst_pad_set_getcaps_function (GstPad * pad, GstPadGetCapsFunction getcaps)
1437 {
1438   g_return_if_fail (GST_IS_PAD (pad));
1439
1440   GST_PAD_GETCAPSFUNC (pad) = getcaps;
1441   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "getcapsfunc set to %s",
1442       GST_DEBUG_FUNCPTR_NAME (getcaps));
1443 }
1444
1445 /**
1446  * gst_pad_set_acceptcaps_function:
1447  * @pad: a #GstPad.
1448  * @acceptcaps: the #GstPadAcceptCapsFunction to set.
1449  *
1450  * Sets the given acceptcaps function for the pad.  The acceptcaps function
1451  * will be called to check if the pad can accept the given caps. Setting the
1452  * acceptcaps function to NULL restores the default behaviour of allowing
1453  * any caps that matches the caps from gst_pad_get_caps.
1454  */
1455 void
1456 gst_pad_set_acceptcaps_function (GstPad * pad,
1457     GstPadAcceptCapsFunction acceptcaps)
1458 {
1459   g_return_if_fail (GST_IS_PAD (pad));
1460
1461   GST_PAD_ACCEPTCAPSFUNC (pad) = acceptcaps;
1462   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "acceptcapsfunc set to %s",
1463       GST_DEBUG_FUNCPTR_NAME (acceptcaps));
1464 }
1465
1466 /**
1467  * gst_pad_set_fixatecaps_function:
1468  * @pad: a #GstPad.
1469  * @fixatecaps: the #GstPadFixateCapsFunction to set.
1470  *
1471  * Sets the given fixatecaps function for the pad.  The fixatecaps function
1472  * will be called whenever the default values for a GstCaps needs to be
1473  * filled in.
1474  */
1475 void
1476 gst_pad_set_fixatecaps_function (GstPad * pad,
1477     GstPadFixateCapsFunction fixatecaps)
1478 {
1479   g_return_if_fail (GST_IS_PAD (pad));
1480
1481   GST_PAD_FIXATECAPSFUNC (pad) = fixatecaps;
1482   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "fixatecapsfunc set to %s",
1483       GST_DEBUG_FUNCPTR_NAME (fixatecaps));
1484 }
1485
1486 /**
1487  * gst_pad_set_setcaps_function:
1488  * @pad: a #GstPad.
1489  * @setcaps: the #GstPadSetCapsFunction to set.
1490  *
1491  * Sets the given setcaps function for the pad.  The setcaps function
1492  * will be called whenever a buffer with a new media type is pushed or
1493  * pulled from the pad. The pad/element needs to update its internal
1494  * structures to process the new media type. If this new type is not
1495  * acceptable, the setcaps function should return FALSE.
1496  */
1497 void
1498 gst_pad_set_setcaps_function (GstPad * pad, GstPadSetCapsFunction setcaps)
1499 {
1500   g_return_if_fail (GST_IS_PAD (pad));
1501
1502   GST_PAD_SETCAPSFUNC (pad) = setcaps;
1503   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "setcapsfunc set to %s",
1504       GST_DEBUG_FUNCPTR_NAME (setcaps));
1505 }
1506
1507 /**
1508  * gst_pad_set_bufferalloc_function:
1509  * @pad: a sink #GstPad.
1510  * @bufalloc: the #GstPadBufferAllocFunction to set.
1511  *
1512  * Sets the given bufferalloc function for the pad. Note that the
1513  * bufferalloc function can only be set on sinkpads.
1514  */
1515 void
1516 gst_pad_set_bufferalloc_function (GstPad * pad,
1517     GstPadBufferAllocFunction bufalloc)
1518 {
1519   g_return_if_fail (GST_IS_PAD (pad));
1520   g_return_if_fail (GST_PAD_IS_SINK (pad));
1521
1522   GST_PAD_BUFFERALLOCFUNC (pad) = bufalloc;
1523   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "bufferallocfunc set to %s",
1524       GST_DEBUG_FUNCPTR_NAME (bufalloc));
1525 }
1526
1527 /**
1528  * gst_pad_unlink:
1529  * @srcpad: the source #GstPad to unlink.
1530  * @sinkpad: the sink #GstPad to unlink.
1531  *
1532  * Unlinks the source pad from the sink pad. Will emit the "unlinked" signal on
1533  * both pads.
1534  *
1535  * Returns: TRUE if the pads were unlinked. This function returns FALSE if
1536  * the pads were not linked together.
1537  *
1538  * MT safe.
1539  */
1540 gboolean
1541 gst_pad_unlink (GstPad * srcpad, GstPad * sinkpad)
1542 {
1543   g_return_val_if_fail (GST_IS_PAD (srcpad), FALSE);
1544   g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
1545
1546   GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "unlinking %s:%s(%p) and %s:%s(%p)",
1547       GST_DEBUG_PAD_NAME (srcpad), srcpad,
1548       GST_DEBUG_PAD_NAME (sinkpad), sinkpad);
1549
1550   GST_OBJECT_LOCK (srcpad);
1551
1552   if (G_UNLIKELY (GST_PAD_DIRECTION (srcpad) != GST_PAD_SRC))
1553     goto not_srcpad;
1554
1555   GST_OBJECT_LOCK (sinkpad);
1556
1557   if (G_UNLIKELY (GST_PAD_DIRECTION (sinkpad) != GST_PAD_SINK))
1558     goto not_sinkpad;
1559
1560   if (G_UNLIKELY (GST_PAD_PEER (srcpad) != sinkpad))
1561     goto not_linked_together;
1562
1563   if (GST_PAD_UNLINKFUNC (srcpad)) {
1564     GST_PAD_UNLINKFUNC (srcpad) (srcpad);
1565   }
1566   if (GST_PAD_UNLINKFUNC (sinkpad)) {
1567     GST_PAD_UNLINKFUNC (sinkpad) (sinkpad);
1568   }
1569
1570   /* first clear peers */
1571   GST_PAD_PEER (srcpad) = NULL;
1572   GST_PAD_PEER (sinkpad) = NULL;
1573
1574   GST_OBJECT_UNLOCK (sinkpad);
1575   GST_OBJECT_UNLOCK (srcpad);
1576
1577   /* fire off a signal to each of the pads telling them
1578    * that they've been unlinked */
1579   g_signal_emit (G_OBJECT (srcpad), gst_pad_signals[PAD_UNLINKED], 0, sinkpad);
1580   g_signal_emit (G_OBJECT (sinkpad), gst_pad_signals[PAD_UNLINKED], 0, srcpad);
1581
1582   GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "unlinked %s:%s and %s:%s",
1583       GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
1584
1585   return TRUE;
1586
1587 not_srcpad:
1588   {
1589     g_critical ("pad %s is not a source pad", GST_PAD_NAME (srcpad));
1590     GST_OBJECT_UNLOCK (srcpad);
1591     return FALSE;
1592   }
1593 not_sinkpad:
1594   {
1595     g_critical ("pad %s is not a sink pad", GST_PAD_NAME (sinkpad));
1596     GST_OBJECT_UNLOCK (sinkpad);
1597     GST_OBJECT_UNLOCK (srcpad);
1598     return FALSE;
1599   }
1600 not_linked_together:
1601   {
1602     /* we do not emit a warning in this case because unlinking cannot
1603      * be made MT safe.*/
1604     GST_OBJECT_UNLOCK (sinkpad);
1605     GST_OBJECT_UNLOCK (srcpad);
1606     return FALSE;
1607   }
1608 }
1609
1610 /**
1611  * gst_pad_is_linked:
1612  * @pad: pad to check
1613  *
1614  * Checks if a @pad is linked to another pad or not.
1615  *
1616  * Returns: TRUE if the pad is linked, FALSE otherwise.
1617  *
1618  * MT safe.
1619  */
1620 gboolean
1621 gst_pad_is_linked (GstPad * pad)
1622 {
1623   gboolean result;
1624
1625   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1626
1627   GST_OBJECT_LOCK (pad);
1628   result = (GST_PAD_PEER (pad) != NULL);
1629   GST_OBJECT_UNLOCK (pad);
1630
1631   return result;
1632 }
1633
1634 /* get the caps from both pads and see if the intersection
1635  * is not empty.
1636  *
1637  * This function should be called with the pad LOCK on both
1638  * pads
1639  */
1640 static gboolean
1641 gst_pad_link_check_compatible_unlocked (GstPad * src, GstPad * sink)
1642 {
1643   GstCaps *srccaps;
1644   GstCaps *sinkcaps;
1645   GstCaps *icaps;
1646
1647   srccaps = gst_pad_get_caps_unlocked (src);
1648   sinkcaps = gst_pad_get_caps_unlocked (sink);
1649
1650   GST_CAT_DEBUG (GST_CAT_CAPS, "src caps %" GST_PTR_FORMAT, srccaps);
1651   GST_CAT_DEBUG (GST_CAT_CAPS, "sink caps %" GST_PTR_FORMAT, sinkcaps);
1652
1653   /* if we have caps on both pads we can check the intersection. If one
1654    * of the caps is NULL, we return TRUE. */
1655   if (srccaps == NULL || sinkcaps == NULL)
1656     goto done;
1657
1658   icaps = gst_caps_intersect (srccaps, sinkcaps);
1659   gst_caps_unref (srccaps);
1660   gst_caps_unref (sinkcaps);
1661
1662   if (icaps == NULL)
1663     goto was_null;
1664
1665   GST_CAT_DEBUG (GST_CAT_CAPS,
1666       "intersection caps %p %" GST_PTR_FORMAT, icaps, icaps);
1667
1668   if (gst_caps_is_empty (icaps))
1669     goto was_empty;
1670
1671   gst_caps_unref (icaps);
1672
1673 done:
1674   return TRUE;
1675
1676   /* incompatible cases */
1677 was_null:
1678   {
1679     GST_CAT_DEBUG (GST_CAT_CAPS, "intersection gave NULL");
1680     return FALSE;
1681   }
1682 was_empty:
1683   {
1684     GST_CAT_DEBUG (GST_CAT_CAPS, "intersection is EMPTY");
1685     gst_caps_unref (icaps);
1686     return FALSE;
1687   }
1688 }
1689
1690 /* check if the grandparents of both pads are the same.
1691  * This check is required so that we don't try to link
1692  * pads from elements in different bins without ghostpads.
1693  *
1694  * The LOCK should be held on both pads
1695  */
1696 static gboolean
1697 gst_pad_link_check_hierarchy (GstPad * src, GstPad * sink)
1698 {
1699   GstObject *psrc, *psink;
1700
1701   psrc = GST_OBJECT_PARENT (src);
1702   psink = GST_OBJECT_PARENT (sink);
1703
1704   /* if one of the pads has no parent, we allow the link */
1705   if (G_UNLIKELY (psrc == NULL || psink == NULL))
1706     goto no_parent;
1707
1708   /* only care about parents that are elements */
1709   if (G_UNLIKELY (!GST_IS_ELEMENT (psrc) || !GST_IS_ELEMENT (psink)))
1710     goto no_element_parent;
1711
1712   /* if the parents are the same, we have a loop */
1713   if (G_UNLIKELY (psrc == psink))
1714     goto same_parents;
1715
1716   /* if they both have a parent, we check the grandparents. We can not lock
1717    * the parent because we hold on the child (pad) and the locking order is
1718    * parent >> child. */
1719   psrc = GST_OBJECT_PARENT (psrc);
1720   psink = GST_OBJECT_PARENT (psink);
1721
1722   /* if they have grandparents but they are not the same */
1723   if (G_UNLIKELY (psrc != psink))
1724     goto wrong_grandparents;
1725
1726   return TRUE;
1727
1728   /* ERRORS */
1729 no_parent:
1730   {
1731     GST_CAT_DEBUG (GST_CAT_CAPS,
1732         "one of the pads has no parent %" GST_PTR_FORMAT " and %"
1733         GST_PTR_FORMAT, psrc, psink);
1734     return TRUE;
1735   }
1736 no_element_parent:
1737   {
1738     GST_CAT_DEBUG (GST_CAT_CAPS,
1739         "one of the pads has no element parent %" GST_PTR_FORMAT " and %"
1740         GST_PTR_FORMAT, psrc, psink);
1741     return TRUE;
1742   }
1743 same_parents:
1744   {
1745     GST_CAT_DEBUG (GST_CAT_CAPS, "pads have same parent %" GST_PTR_FORMAT,
1746         psrc);
1747     return FALSE;
1748   }
1749 wrong_grandparents:
1750   {
1751     GST_CAT_DEBUG (GST_CAT_CAPS,
1752         "pads have different grandparents %" GST_PTR_FORMAT " and %"
1753         GST_PTR_FORMAT, psrc, psink);
1754     return FALSE;
1755   }
1756 }
1757
1758 /* FIXME leftover from an attempt at refactoring... */
1759 /* call with the two pads unlocked, when this function returns GST_PAD_LINK_OK,
1760  * the two pads will be locked in the srcpad, sinkpad order. */
1761 static GstPadLinkReturn
1762 gst_pad_link_prepare (GstPad * srcpad, GstPad * sinkpad)
1763 {
1764   /* generic checks */
1765   g_return_val_if_fail (GST_IS_PAD (srcpad), GST_PAD_LINK_REFUSED);
1766   g_return_val_if_fail (GST_IS_PAD (sinkpad), GST_PAD_LINK_REFUSED);
1767
1768   GST_CAT_INFO (GST_CAT_PADS, "trying to link %s:%s and %s:%s",
1769       GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
1770
1771   GST_OBJECT_LOCK (srcpad);
1772
1773   if (G_UNLIKELY (GST_PAD_DIRECTION (srcpad) != GST_PAD_SRC))
1774     goto not_srcpad;
1775
1776   if (G_UNLIKELY (GST_PAD_PEER (srcpad) != NULL))
1777     goto src_was_linked;
1778
1779   GST_OBJECT_LOCK (sinkpad);
1780
1781   if (G_UNLIKELY (GST_PAD_DIRECTION (sinkpad) != GST_PAD_SINK))
1782     goto not_sinkpad;
1783
1784   if (G_UNLIKELY (GST_PAD_PEER (sinkpad) != NULL))
1785     goto sink_was_linked;
1786
1787   /* check hierarchy, pads can only be linked if the grandparents
1788    * are the same. */
1789   if (!gst_pad_link_check_hierarchy (srcpad, sinkpad))
1790     goto wrong_hierarchy;
1791
1792   /* check pad caps for non-empty intersection */
1793   if (!gst_pad_link_check_compatible_unlocked (srcpad, sinkpad))
1794     goto no_format;
1795
1796   /* FIXME check pad scheduling for non-empty intersection */
1797
1798   return GST_PAD_LINK_OK;
1799
1800 not_srcpad:
1801   {
1802     g_critical ("pad %s is not a source pad", GST_PAD_NAME (srcpad));
1803     GST_OBJECT_UNLOCK (srcpad);
1804     return GST_PAD_LINK_WRONG_DIRECTION;
1805   }
1806 src_was_linked:
1807   {
1808     GST_CAT_INFO (GST_CAT_PADS, "src %s:%s was already linked to %s:%s",
1809         GST_DEBUG_PAD_NAME (srcpad),
1810         GST_DEBUG_PAD_NAME (GST_PAD_PEER (srcpad)));
1811     /* we do not emit a warning in this case because unlinking cannot
1812      * be made MT safe.*/
1813     GST_OBJECT_UNLOCK (srcpad);
1814     return GST_PAD_LINK_WAS_LINKED;
1815   }
1816 not_sinkpad:
1817   {
1818     g_critical ("pad %s is not a sink pad", GST_PAD_NAME (sinkpad));
1819     GST_OBJECT_UNLOCK (sinkpad);
1820     GST_OBJECT_UNLOCK (srcpad);
1821     return GST_PAD_LINK_WRONG_DIRECTION;
1822   }
1823 sink_was_linked:
1824   {
1825     GST_CAT_INFO (GST_CAT_PADS, "sink %s:%s was already linked to %s:%s",
1826         GST_DEBUG_PAD_NAME (sinkpad),
1827         GST_DEBUG_PAD_NAME (GST_PAD_PEER (sinkpad)));
1828     /* we do not emit a warning in this case because unlinking cannot
1829      * be made MT safe.*/
1830     GST_OBJECT_UNLOCK (sinkpad);
1831     GST_OBJECT_UNLOCK (srcpad);
1832     return GST_PAD_LINK_WAS_LINKED;
1833   }
1834 wrong_hierarchy:
1835   {
1836     GST_CAT_INFO (GST_CAT_PADS, "pads have wrong hierarchy");
1837     GST_OBJECT_UNLOCK (sinkpad);
1838     GST_OBJECT_UNLOCK (srcpad);
1839     return GST_PAD_LINK_WRONG_HIERARCHY;
1840   }
1841 no_format:
1842   {
1843     GST_CAT_INFO (GST_CAT_PADS, "caps are incompatible");
1844     GST_OBJECT_UNLOCK (sinkpad);
1845     GST_OBJECT_UNLOCK (srcpad);
1846     return GST_PAD_LINK_NOFORMAT;
1847   }
1848 }
1849
1850 /**
1851  * gst_pad_link:
1852  * @srcpad: the source #GstPad to link.
1853  * @sinkpad: the sink #GstPad to link.
1854  *
1855  * Links the source pad and the sink pad.
1856  *
1857  * Returns: A result code indicating if the connection worked or
1858  *          what went wrong.
1859  *
1860  * MT Safe.
1861  */
1862 GstPadLinkReturn
1863 gst_pad_link (GstPad * srcpad, GstPad * sinkpad)
1864 {
1865   GstPadLinkReturn result;
1866
1867   /* prepare will also lock the two pads */
1868   result = gst_pad_link_prepare (srcpad, sinkpad);
1869
1870   if (result != GST_PAD_LINK_OK)
1871     goto prepare_failed;
1872
1873   /* must set peers before calling the link function */
1874   GST_PAD_PEER (srcpad) = sinkpad;
1875   GST_PAD_PEER (sinkpad) = srcpad;
1876
1877   GST_OBJECT_UNLOCK (sinkpad);
1878   GST_OBJECT_UNLOCK (srcpad);
1879
1880   /* FIXME released the locks here, concurrent thread might link
1881    * something else. */
1882   if (GST_PAD_LINKFUNC (srcpad)) {
1883     /* this one will call the peer link function */
1884     result = GST_PAD_LINKFUNC (srcpad) (srcpad, sinkpad);
1885   } else if (GST_PAD_LINKFUNC (sinkpad)) {
1886     /* if no source link function, we need to call the sink link
1887      * function ourselves. */
1888     result = GST_PAD_LINKFUNC (sinkpad) (sinkpad, srcpad);
1889   } else {
1890     result = GST_PAD_LINK_OK;
1891   }
1892
1893   GST_OBJECT_LOCK (srcpad);
1894   GST_OBJECT_LOCK (sinkpad);
1895
1896   if (result == GST_PAD_LINK_OK) {
1897     GST_OBJECT_UNLOCK (sinkpad);
1898     GST_OBJECT_UNLOCK (srcpad);
1899
1900     /* fire off a signal to each of the pads telling them
1901      * that they've been linked */
1902     g_signal_emit (G_OBJECT (srcpad), gst_pad_signals[PAD_LINKED], 0, sinkpad);
1903     g_signal_emit (G_OBJECT (sinkpad), gst_pad_signals[PAD_LINKED], 0, srcpad);
1904
1905     GST_CAT_INFO (GST_CAT_PADS, "linked %s:%s and %s:%s, successful",
1906         GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
1907   } else {
1908     GST_CAT_INFO (GST_CAT_PADS, "link between %s:%s and %s:%s failed",
1909         GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
1910
1911     GST_PAD_PEER (srcpad) = NULL;
1912     GST_PAD_PEER (sinkpad) = NULL;
1913
1914     GST_OBJECT_UNLOCK (sinkpad);
1915     GST_OBJECT_UNLOCK (srcpad);
1916   }
1917   return result;
1918
1919 prepare_failed:
1920   {
1921     return result;
1922   }
1923 }
1924
1925 static void
1926 gst_pad_set_pad_template (GstPad * pad, GstPadTemplate * templ)
1927 {
1928   GstPadTemplate **template_p;
1929
1930   /* this function would need checks if it weren't static */
1931
1932   GST_OBJECT_LOCK (pad);
1933   template_p = &pad->padtemplate;
1934   gst_object_replace ((GstObject **) template_p, (GstObject *) templ);
1935   GST_OBJECT_UNLOCK (pad);
1936
1937   if (templ)
1938     gst_pad_template_pad_created (templ, pad);
1939 }
1940
1941 /**
1942  * gst_pad_get_pad_template:
1943  * @pad: a #GstPad.
1944  *
1945  * Gets the template for @pad.
1946  *
1947  * Returns: the #GstPadTemplate from which this pad was instantiated, or %NULL
1948  * if this pad has no template.
1949  *
1950  * FIXME: currently returns an unrefcounted padtemplate.
1951  */
1952 GstPadTemplate *
1953 gst_pad_get_pad_template (GstPad * pad)
1954 {
1955   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
1956
1957   return GST_PAD_PAD_TEMPLATE (pad);
1958 }
1959
1960
1961 /* should be called with the pad LOCK held */
1962 /* refs the caps, so caller is responsible for getting it unreffed */
1963 static GstCaps *
1964 gst_pad_get_caps_unlocked (GstPad * pad)
1965 {
1966   GstCaps *result = NULL;
1967   GstPadTemplate *templ;
1968
1969   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "get pad caps");
1970
1971   if (GST_PAD_GETCAPSFUNC (pad)) {
1972     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
1973         "dispatching to pad getcaps function");
1974
1975     GST_OBJECT_FLAG_SET (pad, GST_PAD_IN_GETCAPS);
1976     GST_OBJECT_UNLOCK (pad);
1977     result = GST_PAD_GETCAPSFUNC (pad) (pad);
1978     GST_OBJECT_LOCK (pad);
1979     GST_OBJECT_FLAG_UNSET (pad, GST_PAD_IN_GETCAPS);
1980
1981     if (result == NULL) {
1982       g_critical ("pad %s:%s returned NULL caps from getcaps function",
1983           GST_DEBUG_PAD_NAME (pad));
1984     } else {
1985       GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
1986           "pad getcaps returned %" GST_PTR_FORMAT, result);
1987 #ifndef G_DISABLE_ASSERT
1988       /* check that the returned caps are a real subset of the template caps */
1989       if (GST_PAD_PAD_TEMPLATE (pad)) {
1990         const GstCaps *templ_caps =
1991             GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (pad));
1992         if (!gst_caps_is_subset (result, templ_caps)) {
1993           GstCaps *temp;
1994
1995           GST_CAT_ERROR_OBJECT (GST_CAT_CAPS, pad,
1996               "pad returned caps %" GST_PTR_FORMAT
1997               " which are not a real subset of its template caps %"
1998               GST_PTR_FORMAT, result, templ_caps);
1999           g_warning
2000               ("pad %s:%s returned caps which are not a real "
2001               "subset of its template caps", GST_DEBUG_PAD_NAME (pad));
2002           temp = gst_caps_intersect (templ_caps, result);
2003           gst_caps_unref (result);
2004           result = temp;
2005         }
2006       }
2007 #endif
2008       goto done;
2009     }
2010   }
2011   if ((templ = GST_PAD_PAD_TEMPLATE (pad))) {
2012     result = GST_PAD_TEMPLATE_CAPS (templ);
2013     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2014         "using pad template %p with caps %p %" GST_PTR_FORMAT, templ, result,
2015         result);
2016
2017     result = gst_caps_ref (result);
2018     goto done;
2019   }
2020   if ((result = GST_PAD_CAPS (pad))) {
2021     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2022         "using pad caps %p %" GST_PTR_FORMAT, result, result);
2023
2024     result = gst_caps_ref (result);
2025     goto done;
2026   }
2027
2028   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "pad has no caps");
2029   result = gst_caps_new_empty ();
2030
2031 done:
2032   return result;
2033 }
2034
2035 /**
2036  * gst_pad_get_caps:
2037  * @pad: a  #GstPad to get the capabilities of.
2038  *
2039  * Gets the capabilities this pad can produce or consume.
2040  * Note that this method doesn't necessarily return the caps set by
2041  * gst_pad_set_caps() - use #GST_PAD_CAPS for that instead.
2042  * gst_pad_get_caps returns all possible caps a pad can operate with, using
2043  * the pad's get_caps function;
2044  * this returns the pad template caps if not explicitly set.
2045  *
2046  * Returns: a newly allocated copy of the #GstCaps of this pad.
2047  *
2048  * MT safe.
2049  */
2050 GstCaps *
2051 gst_pad_get_caps (GstPad * pad)
2052 {
2053   GstCaps *result = NULL;
2054
2055   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2056
2057   GST_OBJECT_LOCK (pad);
2058
2059   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "get pad caps");
2060
2061   result = gst_pad_get_caps_unlocked (pad);
2062
2063   /* be sure that we have a copy */
2064   if (result)
2065     result = gst_caps_make_writable (result);
2066
2067   GST_OBJECT_UNLOCK (pad);
2068
2069   return result;
2070 }
2071
2072 /**
2073  * gst_pad_peer_get_caps:
2074  * @pad: a  #GstPad to get the peer capabilities of.
2075  *
2076  * Gets the capabilities of the peer connected to this pad.
2077  *
2078  * Returns: the #GstCaps of the peer pad. This function returns a new caps, so
2079  * use gst_caps_unref to get rid of it. this function returns NULL if there is
2080  * no peer pad.
2081  */
2082 GstCaps *
2083 gst_pad_peer_get_caps (GstPad * pad)
2084 {
2085   GstPad *peerpad;
2086   GstCaps *result = NULL;
2087
2088   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2089
2090   GST_OBJECT_LOCK (pad);
2091
2092   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "get peer caps");
2093
2094   peerpad = GST_PAD_PEER (pad);
2095   if (G_UNLIKELY (peerpad == NULL))
2096     goto no_peer;
2097
2098   gst_object_ref (peerpad);
2099   GST_OBJECT_UNLOCK (pad);
2100
2101   result = gst_pad_get_caps (peerpad);
2102
2103   gst_object_unref (peerpad);
2104
2105   return result;
2106
2107 no_peer:
2108   {
2109     GST_OBJECT_UNLOCK (pad);
2110     return NULL;
2111   }
2112 }
2113
2114 static gboolean
2115 fixate_value (GValue * dest, const GValue * src)
2116 {
2117   if (G_VALUE_TYPE (src) == GST_TYPE_INT_RANGE) {
2118     g_value_init (dest, G_TYPE_INT);
2119     g_value_set_int (dest, gst_value_get_int_range_min (src));
2120   } else if (G_VALUE_TYPE (src) == GST_TYPE_DOUBLE_RANGE) {
2121     g_value_init (dest, G_TYPE_DOUBLE);
2122     g_value_set_double (dest, gst_value_get_double_range_min (src));
2123   } else if (G_VALUE_TYPE (src) == GST_TYPE_FRACTION_RANGE) {
2124     gst_value_init_and_copy (dest, gst_value_get_fraction_range_min (src));
2125   } else if (G_VALUE_TYPE (src) == GST_TYPE_LIST) {
2126     GValue temp = { 0 };
2127
2128     /* list could be empty */
2129     if (gst_value_list_get_size (src) <= 0)
2130       return FALSE;
2131
2132     gst_value_init_and_copy (&temp, gst_value_list_get_value (src, 0));
2133
2134     if (!fixate_value (dest, &temp))
2135       gst_value_init_and_copy (dest, &temp);
2136     g_value_unset (&temp);
2137   } else if (G_VALUE_TYPE (src) == GST_TYPE_ARRAY) {
2138     gboolean res = FALSE;
2139     guint n;
2140
2141     g_value_init (dest, GST_TYPE_ARRAY);
2142     for (n = 0; n < gst_value_array_get_size (src); n++) {
2143       GValue kid = { 0 };
2144       const GValue *orig_kid = gst_value_array_get_value (src, n);
2145
2146       if (!fixate_value (&kid, orig_kid))
2147         gst_value_init_and_copy (&kid, orig_kid);
2148       else
2149         res = TRUE;
2150       gst_value_array_append_value (dest, &kid);
2151       g_value_unset (&kid);
2152     }
2153
2154     if (!res)
2155       g_value_unset (dest);
2156
2157     return res;
2158   } else {
2159     return FALSE;
2160   }
2161
2162   return TRUE;
2163 }
2164
2165 static gboolean
2166 gst_pad_default_fixate (GQuark field_id, const GValue * value, gpointer data)
2167 {
2168   GstStructure *s = data;
2169   GValue v = { 0 };
2170
2171   if (fixate_value (&v, value)) {
2172     gst_structure_id_set_value (s, field_id, &v);
2173     g_value_unset (&v);
2174   }
2175
2176   return TRUE;
2177 }
2178
2179 /**
2180  * gst_pad_fixate_caps:
2181  * @pad: a  #GstPad to fixate
2182  * @caps: the  #GstCaps to fixate
2183  *
2184  * Fixate a caps on the given pad. Modifies the caps in place, so you should
2185  * make sure that the caps are actually writable (see gst_caps_make_writable()).
2186  */
2187 void
2188 gst_pad_fixate_caps (GstPad * pad, GstCaps * caps)
2189 {
2190   GstPadFixateCapsFunction fixatefunc;
2191   guint n;
2192
2193   g_return_if_fail (GST_IS_PAD (pad));
2194   g_return_if_fail (caps != NULL);
2195
2196   if (gst_caps_is_fixed (caps))
2197     return;
2198
2199   fixatefunc = GST_PAD_FIXATECAPSFUNC (pad);
2200   if (fixatefunc) {
2201     fixatefunc (pad, caps);
2202   }
2203
2204   /* default fixation */
2205   for (n = 0; n < gst_caps_get_size (caps); n++) {
2206     GstStructure *s = gst_caps_get_structure (caps, n);
2207
2208     gst_structure_foreach (s, gst_pad_default_fixate, s);
2209   }
2210 }
2211
2212 /* Default accept caps implementation just checks against
2213  * against the allowed caps for the pad */
2214 static gboolean
2215 gst_pad_acceptcaps_default (GstPad * pad, GstCaps * caps)
2216 {
2217   /* get the caps and see if it intersects to something
2218    * not empty */
2219   GstCaps *intersect;
2220   GstCaps *allowed;
2221   gboolean result = FALSE;
2222
2223   GST_DEBUG_OBJECT (pad, "caps %" GST_PTR_FORMAT, caps);
2224
2225   allowed = gst_pad_get_caps (pad);
2226   if (!allowed)
2227     goto nothing_allowed;
2228
2229   GST_DEBUG_OBJECT (pad, "allowed caps %" GST_PTR_FORMAT, allowed);
2230
2231   intersect = gst_caps_intersect (allowed, caps);
2232
2233   GST_DEBUG_OBJECT (pad, "intersection %" GST_PTR_FORMAT, intersect);
2234
2235   result = !gst_caps_is_empty (intersect);
2236   if (!result)
2237     GST_DEBUG_OBJECT (pad, "intersection gave empty caps");
2238
2239   gst_caps_unref (allowed);
2240   gst_caps_unref (intersect);
2241
2242   return result;
2243
2244   /* ERRORS */
2245 nothing_allowed:
2246   {
2247     GST_DEBUG_OBJECT (pad, "no caps allowed on the pad");
2248     return FALSE;
2249   }
2250 }
2251
2252 /**
2253  * gst_pad_accept_caps:
2254  * @pad: a #GstPad to check
2255  * @caps: a #GstCaps to check on the pad
2256  *
2257  * Check if the given pad accepts the caps.
2258  *
2259  * Returns: TRUE if the pad can accept the caps.
2260  */
2261 gboolean
2262 gst_pad_accept_caps (GstPad * pad, GstCaps * caps)
2263 {
2264   gboolean result;
2265   GstPadAcceptCapsFunction acceptfunc;
2266   GstCaps *existing = NULL;
2267
2268   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2269
2270   /* any pad can be unnegotiated */
2271   if (caps == NULL)
2272     return TRUE;
2273
2274   /* lock for checking the existing caps */
2275   GST_OBJECT_LOCK (pad);
2276   acceptfunc = GST_PAD_ACCEPTCAPSFUNC (pad);
2277   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "accept caps of %p", caps);
2278   /* The current caps on a pad are trivially acceptable */
2279   if (G_LIKELY ((existing = GST_PAD_CAPS (pad)))) {
2280     if (caps == existing || gst_caps_is_equal (caps, existing))
2281       goto is_same_caps;
2282   }
2283   GST_OBJECT_UNLOCK (pad);
2284
2285   if (G_LIKELY (acceptfunc)) {
2286     /* we can call the function */
2287     result = acceptfunc (pad, caps);
2288     GST_DEBUG_OBJECT (pad, "acceptfunc returned %d", result);
2289   } else {
2290     /* Only null if the element explicitly unset it */
2291     result = gst_pad_acceptcaps_default (pad, caps);
2292     GST_DEBUG_OBJECT (pad, "default acceptcaps returned %d", result);
2293   }
2294   return result;
2295
2296 is_same_caps:
2297   {
2298     GST_DEBUG_OBJECT (pad, "pad had same caps");
2299     GST_OBJECT_UNLOCK (pad);
2300     return TRUE;
2301   }
2302 }
2303
2304 /**
2305  * gst_pad_peer_accept_caps:
2306  * @pad: a  #GstPad to check the peer of
2307  * @caps: a #GstCaps to check on the pad
2308  *
2309  * Check if the peer of @pad accepts @caps. If @pad has no peer, this function
2310  * returns TRUE.
2311  *
2312  * Returns: TRUE if the peer of @pad can accept the caps or @pad has no peer.
2313  */
2314 gboolean
2315 gst_pad_peer_accept_caps (GstPad * pad, GstCaps * caps)
2316 {
2317   GstPad *peerpad;
2318   gboolean result;
2319
2320   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2321
2322   GST_OBJECT_LOCK (pad);
2323
2324   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "peer accept caps of (%p)", pad);
2325
2326   peerpad = GST_PAD_PEER (pad);
2327   if (G_UNLIKELY (peerpad == NULL))
2328     goto no_peer;
2329
2330   result = gst_pad_accept_caps (peerpad, caps);
2331   GST_OBJECT_UNLOCK (pad);
2332
2333   return result;
2334
2335 no_peer:
2336   {
2337     GST_OBJECT_UNLOCK (pad);
2338     return TRUE;
2339   }
2340 }
2341
2342 /**
2343  * gst_pad_set_caps:
2344  * @pad: a  #GstPad to set the capabilities of.
2345  * @caps: a #GstCaps to set.
2346  *
2347  * Sets the capabilities of this pad. The caps must be fixed. Any previous
2348  * caps on the pad will be unreffed. This function refs the caps so you should
2349  * unref if as soon as you don't need it anymore.
2350  * It is possible to set NULL caps, which will make the pad unnegotiated
2351  * again.
2352  *
2353  * Returns: TRUE if the caps could be set. FALSE if the caps were not fixed
2354  * or bad parameters were provided to this function.
2355  *
2356  * MT safe.
2357  */
2358 gboolean
2359 gst_pad_set_caps (GstPad * pad, GstCaps * caps)
2360 {
2361   GstPadSetCapsFunction setcaps;
2362   GstCaps *existing;
2363
2364   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2365   g_return_val_if_fail (caps == NULL || gst_caps_is_fixed (caps), FALSE);
2366
2367   GST_OBJECT_LOCK (pad);
2368   existing = GST_PAD_CAPS (pad);
2369   if (existing == caps)
2370     goto was_ok;
2371
2372   if (gst_caps_is_equal (caps, existing))
2373     goto setting_same_caps;
2374
2375   setcaps = GST_PAD_SETCAPSFUNC (pad);
2376
2377   /* call setcaps function to configure the pad only if the
2378    * caps is not NULL */
2379   if (setcaps != NULL && caps) {
2380     if (!GST_PAD_IS_IN_SETCAPS (pad)) {
2381       GST_OBJECT_FLAG_SET (pad, GST_PAD_IN_SETCAPS);
2382       GST_OBJECT_UNLOCK (pad);
2383       if (!setcaps (pad, caps))
2384         goto could_not_set;
2385       GST_OBJECT_LOCK (pad);
2386       GST_OBJECT_FLAG_UNSET (pad, GST_PAD_IN_SETCAPS);
2387     } else {
2388       GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "pad was dispatching");
2389     }
2390   }
2391
2392   gst_caps_replace (&GST_PAD_CAPS (pad), caps);
2393   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "caps %" GST_PTR_FORMAT, caps);
2394   GST_OBJECT_UNLOCK (pad);
2395
2396   g_object_notify (G_OBJECT (pad), "caps");
2397
2398   return TRUE;
2399
2400 was_ok:
2401   {
2402     GST_OBJECT_UNLOCK (pad);
2403     return TRUE;
2404   }
2405 setting_same_caps:
2406   {
2407     gst_caps_replace (&GST_PAD_CAPS (pad), caps);
2408     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2409         "caps %" GST_PTR_FORMAT " same as existing, updating ptr only", caps);
2410     GST_OBJECT_UNLOCK (pad);
2411     return TRUE;
2412   }
2413
2414   /* ERRORS */
2415 could_not_set:
2416   {
2417     GST_OBJECT_LOCK (pad);
2418     GST_OBJECT_FLAG_UNSET (pad, GST_PAD_IN_SETCAPS);
2419     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2420         "caps %" GST_PTR_FORMAT " could not be set", caps);
2421     GST_OBJECT_UNLOCK (pad);
2422
2423     return FALSE;
2424   }
2425 }
2426
2427 static gboolean
2428 gst_pad_configure_sink (GstPad * pad, GstCaps * caps)
2429 {
2430   gboolean res;
2431
2432   /* See if pad accepts the caps */
2433   if (!gst_pad_accept_caps (pad, caps))
2434     goto not_accepted;
2435
2436   /* set caps on pad if call succeeds */
2437   res = gst_pad_set_caps (pad, caps);
2438   /* no need to unref the caps here, set_caps takes a ref and
2439    * our ref goes away when we leave this function. */
2440
2441   return res;
2442
2443 not_accepted:
2444   {
2445     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2446         "caps %" GST_PTR_FORMAT " not accepted", caps);
2447     return FALSE;
2448   }
2449 }
2450
2451 /* returns TRUE if the src pad could be configured to accept the given caps */
2452 static gboolean
2453 gst_pad_configure_src (GstPad * pad, GstCaps * caps, gboolean dosetcaps)
2454 {
2455   gboolean res;
2456
2457   /* See if pad accepts the caps */
2458   if (!gst_pad_accept_caps (pad, caps))
2459     goto not_accepted;
2460
2461   if (dosetcaps)
2462     res = gst_pad_set_caps (pad, caps);
2463   else
2464     res = TRUE;
2465
2466   return res;
2467
2468 not_accepted:
2469   {
2470     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2471         "caps %" GST_PTR_FORMAT " not accepted", caps);
2472     return FALSE;
2473   }
2474 }
2475
2476 /**
2477  * gst_pad_get_pad_template_caps:
2478  * @pad: a #GstPad to get the template capabilities from.
2479  *
2480  * Gets the capabilities for @pad's template.
2481  *
2482  * Returns: the #GstCaps of this pad template. If you intend to keep a
2483  * reference on the caps, make a copy (see gst_caps_copy ()).
2484  */
2485 const GstCaps *
2486 gst_pad_get_pad_template_caps (GstPad * pad)
2487 {
2488   static GstStaticCaps anycaps = GST_STATIC_CAPS ("ANY");
2489
2490   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2491
2492   if (GST_PAD_PAD_TEMPLATE (pad))
2493     return GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (pad));
2494
2495   return gst_static_caps_get (&anycaps);
2496 }
2497
2498 /**
2499  * gst_pad_get_peer:
2500  * @pad: a #GstPad to get the peer of.
2501  *
2502  * Gets the peer of @pad. This function refs the peer pad so
2503  * you need to unref it after use.
2504  *
2505  * Returns: the peer #GstPad. Unref after usage.
2506  *
2507  * MT safe.
2508  */
2509 GstPad *
2510 gst_pad_get_peer (GstPad * pad)
2511 {
2512   GstPad *result;
2513
2514   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2515
2516   GST_OBJECT_LOCK (pad);
2517   result = GST_PAD_PEER (pad);
2518   if (result)
2519     gst_object_ref (result);
2520   GST_OBJECT_UNLOCK (pad);
2521
2522   return result;
2523 }
2524
2525 /**
2526  * gst_pad_get_allowed_caps:
2527  * @pad: a #GstPad.
2528  *
2529  * Gets the capabilities of the allowed media types that can flow through
2530  * @pad and its peer.
2531  *
2532  * The allowed capabilities is calculated as the intersection of the results of
2533  * calling gst_pad_get_caps() on @pad and its peer. The caller owns a reference
2534  * on the resulting caps.
2535  *
2536  * Returns: the allowed #GstCaps of the pad link. Unref the caps when you no
2537  * longer need it. This function returns NULL when @pad has no peer.
2538  *
2539  * MT safe.
2540  */
2541 GstCaps *
2542 gst_pad_get_allowed_caps (GstPad * pad)
2543 {
2544   GstCaps *mycaps;
2545   GstCaps *caps;
2546   GstCaps *peercaps;
2547   GstPad *peer;
2548
2549   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2550
2551   GST_OBJECT_LOCK (pad);
2552
2553   peer = GST_PAD_PEER (pad);
2554   if (G_UNLIKELY (peer == NULL))
2555     goto no_peer;
2556
2557   GST_CAT_DEBUG_OBJECT (GST_CAT_PROPERTIES, pad, "getting allowed caps");
2558
2559   gst_object_ref (peer);
2560   GST_OBJECT_UNLOCK (pad);
2561   mycaps = gst_pad_get_caps (pad);
2562
2563   peercaps = gst_pad_get_caps (peer);
2564   gst_object_unref (peer);
2565
2566   caps = gst_caps_intersect (mycaps, peercaps);
2567   gst_caps_unref (peercaps);
2568   gst_caps_unref (mycaps);
2569
2570   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "allowed caps %" GST_PTR_FORMAT,
2571       caps);
2572
2573   return caps;
2574
2575 no_peer:
2576   {
2577     GST_CAT_DEBUG_OBJECT (GST_CAT_PROPERTIES, pad, "no peer");
2578     GST_OBJECT_UNLOCK (pad);
2579
2580     return NULL;
2581   }
2582 }
2583
2584 /**
2585  * gst_pad_get_negotiated_caps:
2586  * @pad: a #GstPad.
2587  *
2588  * Gets the capabilities of the media type that currently flows through @pad
2589  * and its peer.
2590  *
2591  * This function can be used on both src and sinkpads. Note that srcpads are
2592  * always negotiated before sinkpads so it is possible that the negotiated caps
2593  * on the srcpad do not match the negotiated caps of the peer.
2594  *
2595  * Returns: the negotiated #GstCaps of the pad link.  Unref the caps when
2596  * you no longer need it. This function returns NULL when the @pad has no
2597  * peer or is not negotiated yet.
2598  *
2599  * MT safe.
2600  */
2601 GstCaps *
2602 gst_pad_get_negotiated_caps (GstPad * pad)
2603 {
2604   GstCaps *caps;
2605   GstPad *peer;
2606
2607   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2608
2609   GST_OBJECT_LOCK (pad);
2610
2611   if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
2612     goto no_peer;
2613
2614   GST_CAT_DEBUG_OBJECT (GST_CAT_PROPERTIES, pad, "getting negotiated caps");
2615
2616   caps = GST_PAD_CAPS (pad);
2617   if (caps)
2618     gst_caps_ref (caps);
2619   GST_OBJECT_UNLOCK (pad);
2620
2621   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "negotiated caps %" GST_PTR_FORMAT,
2622       caps);
2623
2624   return caps;
2625
2626 no_peer:
2627   {
2628     GST_CAT_DEBUG_OBJECT (GST_CAT_PROPERTIES, pad, "no peer");
2629     GST_OBJECT_UNLOCK (pad);
2630
2631     return NULL;
2632   }
2633 }
2634
2635 /* calls the buffer_alloc function on the given pad */
2636 static GstFlowReturn
2637 gst_pad_buffer_alloc_unchecked (GstPad * pad, guint64 offset, gint size,
2638     GstCaps * caps, GstBuffer ** buf)
2639 {
2640   GstFlowReturn ret;
2641   GstPadBufferAllocFunction bufferallocfunc;
2642
2643   GST_OBJECT_LOCK (pad);
2644   /* when the pad is flushing we cannot give a buffer */
2645   if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
2646     goto flushing;
2647
2648   bufferallocfunc = pad->bufferallocfunc;
2649
2650   if (offset == GST_BUFFER_OFFSET_NONE) {
2651     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
2652         "calling bufferallocfunc &%s (@%p) for size %d offset NONE",
2653         GST_DEBUG_FUNCPTR_NAME (bufferallocfunc), bufferallocfunc, size);
2654   } else {
2655     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
2656         "calling bufferallocfunc &%s (@%p) of for size %d offset %"
2657         G_GUINT64_FORMAT, GST_DEBUG_FUNCPTR_NAME (bufferallocfunc),
2658         bufferallocfunc, size, offset);
2659   }
2660   GST_OBJECT_UNLOCK (pad);
2661
2662   /* G_LIKELY for now since most elements don't implement a buffer alloc
2663    * function and there is no default alloc proxy function as this is usually
2664    * not possible. */
2665   if (G_LIKELY (bufferallocfunc == NULL))
2666     goto fallback;
2667
2668   ret = bufferallocfunc (pad, offset, size, caps, buf);
2669   if (G_UNLIKELY (ret != GST_FLOW_OK))
2670     goto error;
2671   /* no error, but NULL buffer means fallback to the default */
2672   if (G_UNLIKELY (*buf == NULL))
2673     goto fallback;
2674
2675   /* If the buffer alloc function didn't set up the caps like it should,
2676    * do it for it */
2677   if (G_UNLIKELY (caps && (GST_BUFFER_CAPS (*buf) == NULL))) {
2678     GST_WARNING_OBJECT (pad,
2679         "Buffer allocation function did not set caps. Setting");
2680     gst_buffer_set_caps (*buf, caps);
2681   }
2682   return ret;
2683
2684 flushing:
2685   {
2686     /* pad was flushing */
2687     GST_OBJECT_UNLOCK (pad);
2688     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "pad was flushing");
2689     return GST_FLOW_WRONG_STATE;
2690   }
2691 error:
2692   {
2693     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
2694         "alloc function returned error (%d) %s", ret, gst_flow_get_name (ret));
2695     return ret;
2696   }
2697 fallback:
2698   {
2699     /* fallback case, allocate a buffer of our own, add pad caps. */
2700     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "fallback buffer alloc");
2701
2702     *buf = gst_buffer_new_and_alloc (size);
2703     GST_BUFFER_OFFSET (*buf) = offset;
2704     gst_buffer_set_caps (*buf, caps);
2705
2706     return GST_FLOW_OK;
2707   }
2708 }
2709
2710 static GstFlowReturn
2711 gst_pad_alloc_buffer_full (GstPad * pad, guint64 offset, gint size,
2712     GstCaps * caps, GstBuffer ** buf, gboolean setcaps)
2713 {
2714   GstPad *peer;
2715   GstFlowReturn ret;
2716   gboolean caps_changed;
2717
2718   g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
2719   g_return_val_if_fail (GST_PAD_IS_SRC (pad), GST_FLOW_ERROR);
2720   g_return_val_if_fail (buf != NULL, GST_FLOW_ERROR);
2721
2722   GST_DEBUG_OBJECT (pad, "offset %" G_GUINT64_FORMAT ", size %d", offset, size);
2723
2724   GST_OBJECT_LOCK (pad);
2725   while (G_UNLIKELY (GST_PAD_IS_BLOCKED (pad)))
2726     if ((ret = handle_pad_block (pad)) != GST_FLOW_OK)
2727       goto flushed;
2728
2729   if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
2730     goto no_peer;
2731
2732   gst_object_ref (peer);
2733   GST_OBJECT_UNLOCK (pad);
2734
2735   ret = gst_pad_buffer_alloc_unchecked (peer, offset, size, caps, buf);
2736   gst_object_unref (peer);
2737
2738   if (G_UNLIKELY (ret != GST_FLOW_OK))
2739     goto peer_error;
2740
2741   /* FIXME, move capnego this into a base class? */
2742   caps = GST_BUFFER_CAPS (*buf);
2743
2744   /* Lock for checking caps, pretty pointless as the _pad_push() function might
2745    * change it concurrently, one of the problems with automatic caps setting in
2746    * pad_alloc_and_set_caps. Worst case, if does a check too much, but only
2747    * when there is heavy renegotiation going on in both directions. */
2748   GST_OBJECT_LOCK (pad);
2749   caps_changed = caps && caps != GST_PAD_CAPS (pad);
2750   GST_OBJECT_UNLOCK (pad);
2751
2752   /* we got a new datatype on the pad, see if it can handle it */
2753   if (G_UNLIKELY (caps_changed)) {
2754     GST_DEBUG_OBJECT (pad,
2755         "caps changed from %" GST_PTR_FORMAT " to %p %" GST_PTR_FORMAT,
2756         GST_PAD_CAPS (pad), caps, caps);
2757     if (G_UNLIKELY (!gst_pad_configure_src (pad, caps, setcaps)))
2758       goto not_negotiated;
2759   }
2760   return ret;
2761
2762 flushed:
2763   {
2764     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "pad block stopped by flush");
2765     GST_OBJECT_UNLOCK (pad);
2766     return ret;
2767   }
2768 no_peer:
2769   {
2770     /* pad has no peer */
2771     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
2772         "called bufferallocfunc but had no peer");
2773     GST_OBJECT_UNLOCK (pad);
2774     return GST_FLOW_NOT_LINKED;
2775   }
2776 peer_error:
2777   {
2778     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
2779         "alloc function returned error %s", gst_flow_get_name (ret));
2780     return ret;
2781   }
2782 not_negotiated:
2783   {
2784     gst_buffer_unref (*buf);
2785     *buf = NULL;
2786     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
2787         "alloc function returned unacceptable buffer");
2788     return GST_FLOW_NOT_NEGOTIATED;
2789   }
2790 }
2791
2792 /**
2793  * gst_pad_alloc_buffer:
2794  * @pad: a source #GstPad
2795  * @offset: the offset of the new buffer in the stream
2796  * @size: the size of the new buffer
2797  * @caps: the caps of the new buffer
2798  * @buf: a newly allocated buffer
2799  *
2800  * Allocates a new, empty buffer optimized to push to pad @pad.  This
2801  * function only works if @pad is a source pad and has a peer.
2802  *
2803  * A new, empty #GstBuffer will be put in the @buf argument.
2804  * You need to check the caps of the buffer after performing this
2805  * function and renegotiate to the format if needed.
2806  *
2807  * Returns: a result code indicating success of the operation. Any
2808  * result code other than #GST_FLOW_OK is an error and @buf should
2809  * not be used.
2810  * An error can occur if the pad is not connected or when the downstream
2811  * peer elements cannot provide an acceptable buffer.
2812  *
2813  * MT safe.
2814  */
2815 GstFlowReturn
2816 gst_pad_alloc_buffer (GstPad * pad, guint64 offset, gint size, GstCaps * caps,
2817     GstBuffer ** buf)
2818 {
2819   return gst_pad_alloc_buffer_full (pad, offset, size, caps, buf, FALSE);
2820 }
2821
2822 /**
2823  * gst_pad_alloc_buffer_and_set_caps:
2824  * @pad: a source #GstPad
2825  * @offset: the offset of the new buffer in the stream
2826  * @size: the size of the new buffer
2827  * @caps: the caps of the new buffer
2828  * @buf: a newly allocated buffer
2829  *
2830  * In addition to the function gst_pad_alloc_buffer(), this function
2831  * automatically calls gst_pad_set_caps() when the caps of the
2832  * newly allocated buffer are different from the @pad caps.
2833  *
2834  * Returns: a result code indicating success of the operation. Any
2835  * result code other than #GST_FLOW_OK is an error and @buf should
2836  * not be used.
2837  * An error can occur if the pad is not connected or when the downstream
2838  * peer elements cannot provide an acceptable buffer.
2839  *
2840  * MT safe.
2841  */
2842 GstFlowReturn
2843 gst_pad_alloc_buffer_and_set_caps (GstPad * pad, guint64 offset, gint size,
2844     GstCaps * caps, GstBuffer ** buf)
2845 {
2846   return gst_pad_alloc_buffer_full (pad, offset, size, caps, buf, TRUE);
2847 }
2848
2849 /**
2850  * gst_pad_get_internal_links_default:
2851  * @pad: the #GstPad to get the internal links of.
2852  *
2853  * Gets a list of pads to which the given pad is linked to
2854  * inside of the parent element.
2855  * This is the default handler, and thus returns a list of all of the
2856  * pads inside the parent element with opposite direction.
2857  * The caller must free this list after use.
2858  *
2859  * Returns: a newly allocated #GList of pads, or NULL if the pad has no parent.
2860  *
2861  * Not MT safe.
2862  */
2863 GList *
2864 gst_pad_get_internal_links_default (GstPad * pad)
2865 {
2866   GList *res = NULL;
2867   GstElement *parent;
2868   GList *parent_pads;
2869   GstPadDirection direction;
2870
2871   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2872
2873   direction = pad->direction;
2874
2875   parent = GST_PAD_PARENT (pad);
2876   if (!parent)
2877     goto no_parent;
2878
2879   parent_pads = parent->pads;
2880
2881   while (parent_pads) {
2882     GstPad *parent_pad = GST_PAD_CAST (parent_pads->data);
2883
2884     if (parent_pad->direction != direction) {
2885       GST_DEBUG_OBJECT (pad, "adding pad %s:%s",
2886           GST_DEBUG_PAD_NAME (parent_pad));
2887       res = g_list_prepend (res, parent_pad);
2888     }
2889     parent_pads = g_list_next (parent_pads);
2890   }
2891   return res;
2892
2893 no_parent:
2894   {
2895     GST_DEBUG_OBJECT (pad, "no parent");
2896     return NULL;
2897   }
2898 }
2899
2900 /**
2901  * gst_pad_get_internal_links:
2902  * @pad: the #GstPad to get the internal links of.
2903  *
2904  * Gets a list of pads to which the given pad is linked to
2905  * inside of the parent element.
2906  * The caller must free this list after use.
2907  *
2908  * Returns: a newly allocated #GList of pads.
2909  *
2910  * Not MT safe.
2911  */
2912 GList *
2913 gst_pad_get_internal_links (GstPad * pad)
2914 {
2915   GList *res = NULL;
2916
2917   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2918
2919   if (GST_PAD_INTLINKFUNC (pad))
2920     res = GST_PAD_INTLINKFUNC (pad) (pad);
2921
2922   return res;
2923 }
2924
2925
2926 static gboolean
2927 gst_pad_event_default_dispatch (GstPad * pad, GstEvent * event)
2928 {
2929   GList *orig, *pads;
2930   gboolean result;
2931
2932   GST_INFO_OBJECT (pad, "Sending event %p (%s) to all internally linked pads",
2933       event, GST_EVENT_TYPE_NAME (event));
2934
2935   result = (GST_PAD_DIRECTION (pad) == GST_PAD_SINK);
2936
2937   orig = pads = gst_pad_get_internal_links (pad);
2938
2939   while (pads) {
2940     GstPad *eventpad = GST_PAD_CAST (pads->data);
2941
2942     pads = g_list_next (pads);
2943
2944     if (GST_PAD_DIRECTION (eventpad) == GST_PAD_SRC) {
2945       /* for each pad we send to, we should ref the event; it's up
2946        * to downstream to unref again when handled. */
2947       GST_LOG_OBJECT (pad, "Reffing and sending event %p (%s) to %s:%s",
2948           event, GST_EVENT_TYPE_NAME (event), GST_DEBUG_PAD_NAME (eventpad));
2949       gst_event_ref (event);
2950       gst_pad_push_event (eventpad, event);
2951     } else {
2952       /* we only send the event on one pad, multi-sinkpad elements
2953        * should implement a handler */
2954       GST_LOG_OBJECT (pad, "sending event %p (%s) to one sink pad %s:%s",
2955           event, GST_EVENT_TYPE_NAME (event), GST_DEBUG_PAD_NAME (eventpad));
2956       result = gst_pad_push_event (eventpad, event);
2957       goto done;
2958     }
2959   }
2960   /* we handled the incoming event so we unref once */
2961   GST_LOG_OBJECT (pad, "handled event %p, unreffing", event);
2962   gst_event_unref (event);
2963
2964 done:
2965   g_list_free (orig);
2966
2967   return result;
2968 }
2969
2970 /**
2971  * gst_pad_event_default:
2972  * @pad: a #GstPad to call the default event handler on.
2973  * @event: the #GstEvent to handle.
2974  *
2975  * Invokes the default event handler for the given pad. End-of-stream and
2976  * discontinuity events are handled specially, and then the event is sent to all
2977  * pads internally linked to @pad. Note that if there are many possible sink
2978  * pads that are internally linked to @pad, only one will be sent an event.
2979  * Multi-sinkpad elements should implement custom event handlers.
2980  *
2981  * Returns: TRUE if the event was sent succesfully.
2982  */
2983 gboolean
2984 gst_pad_event_default (GstPad * pad, GstEvent * event)
2985 {
2986   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2987   g_return_val_if_fail (event != NULL, FALSE);
2988
2989   switch (GST_EVENT_TYPE (event)) {
2990     case GST_EVENT_EOS:
2991     {
2992       GST_DEBUG_OBJECT (pad, "pausing task because of eos");
2993       gst_pad_pause_task (pad);
2994     }
2995       /* fall thru */
2996     default:
2997       break;
2998   }
2999
3000   return gst_pad_event_default_dispatch (pad, event);
3001 }
3002
3003 /**
3004  * gst_pad_dispatcher:
3005  * @pad: a #GstPad to dispatch.
3006  * @dispatch: the #GstDispatcherFunction to call.
3007  * @data: gpointer user data passed to the dispatcher function.
3008  *
3009  * Invokes the given dispatcher function on each respective peer of
3010  * all pads that are internally linked to the given pad.
3011  * The GstPadDispatcherFunction should return TRUE when no further pads
3012  * need to be processed.
3013  *
3014  * Returns: TRUE if one of the dispatcher functions returned TRUE.
3015  */
3016 gboolean
3017 gst_pad_dispatcher (GstPad * pad, GstPadDispatcherFunction dispatch,
3018     gpointer data)
3019 {
3020   gboolean res = FALSE;
3021   GList *int_pads, *orig;
3022
3023   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3024   g_return_val_if_fail (dispatch != NULL, FALSE);
3025
3026   orig = int_pads = gst_pad_get_internal_links (pad);
3027
3028   while (int_pads) {
3029     GstPad *int_pad = GST_PAD_CAST (int_pads->data);
3030     GstPad *int_peer = gst_pad_get_peer (int_pad);
3031
3032     if (int_peer) {
3033       GST_DEBUG_OBJECT (int_pad, "dispatching to peer %s:%s",
3034           GST_DEBUG_PAD_NAME (int_peer));
3035       res = dispatch (int_peer, data);
3036       gst_object_unref (int_peer);
3037       if (res)
3038         break;
3039     } else {
3040       GST_DEBUG_OBJECT (int_pad, "no peer");
3041     }
3042     int_pads = g_list_next (int_pads);
3043   }
3044   g_list_free (orig);
3045   GST_DEBUG_OBJECT (pad, "done, result %d", res);
3046
3047   return res;
3048 }
3049
3050 /**
3051  * gst_pad_query:
3052  * @pad: a #GstPad to invoke the default query on.
3053  * @query: the #GstQuery to perform.
3054  *
3055  * Dispatches a query to a pad. The query should have been allocated by the
3056  * caller via one of the type-specific allocation functions in gstquery.h. The
3057  * element is responsible for filling the query with an appropriate response,
3058  * which should then be parsed with a type-specific query parsing function.
3059  *
3060  * Again, the caller is responsible for both the allocation and deallocation of
3061  * the query structure.
3062  *
3063  * Returns: TRUE if the query could be performed.
3064  */
3065 gboolean
3066 gst_pad_query (GstPad * pad, GstQuery * query)
3067 {
3068   GstPadQueryFunction func;
3069
3070   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3071   g_return_val_if_fail (GST_IS_QUERY (query), FALSE);
3072
3073   GST_DEBUG_OBJECT (pad, "sending query %p", query);
3074
3075   if ((func = GST_PAD_QUERYFUNC (pad)) == NULL)
3076     goto no_func;
3077
3078   return func (pad, query);
3079
3080 no_func:
3081   {
3082     GST_DEBUG_OBJECT (pad, "had no query function");
3083     return FALSE;
3084   }
3085 }
3086
3087 /**
3088  * gst_pad_peer_query:
3089  * @pad: a #GstPad to invoke the peer query on.
3090  * @query: the #GstQuery to perform.
3091  *
3092  * Performs gst_pad_query() on the peer of @pad.
3093  *
3094  * The caller is responsible for both the allocation and deallocation of
3095  * the query structure.
3096  *
3097  * Returns: TRUE if the query could be performed. This function returns %FALSE
3098  * if @pad has no peer.
3099  *
3100  * Since: 0.10.15
3101  */
3102 gboolean
3103 gst_pad_peer_query (GstPad * pad, GstQuery * query)
3104 {
3105   GstPad *peerpad;
3106   gboolean result;
3107
3108   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3109   g_return_val_if_fail (GST_IS_QUERY (query), FALSE);
3110
3111   GST_OBJECT_LOCK (pad);
3112
3113   GST_DEBUG_OBJECT (pad, "peer query");
3114
3115   peerpad = GST_PAD_PEER (pad);
3116   if (G_UNLIKELY (peerpad == NULL))
3117     goto no_peer;
3118
3119   gst_object_ref (peerpad);
3120   GST_OBJECT_UNLOCK (pad);
3121
3122   result = gst_pad_query (peerpad, query);
3123
3124   gst_object_unref (peerpad);
3125
3126   return result;
3127
3128   /* ERRORS */
3129 no_peer:
3130   {
3131     GST_WARNING_OBJECT (pad, "pad has no peer");
3132     GST_OBJECT_UNLOCK (pad);
3133     return FALSE;
3134   }
3135 }
3136
3137 /**
3138  * gst_pad_query_default:
3139  * @pad: a #GstPad to call the default query handler on.
3140  * @query: the #GstQuery to handle.
3141  *
3142  * Invokes the default query handler for the given pad.
3143  * The query is sent to all pads internally linked to @pad. Note that
3144  * if there are many possible sink pads that are internally linked to
3145  * @pad, only one will be sent the query.
3146  * Multi-sinkpad elements should implement custom query handlers.
3147  *
3148  * Returns: TRUE if the query was performed succesfully.
3149  */
3150 gboolean
3151 gst_pad_query_default (GstPad * pad, GstQuery * query)
3152 {
3153   switch (GST_QUERY_TYPE (query)) {
3154     case GST_QUERY_POSITION:
3155     case GST_QUERY_SEEKING:
3156     case GST_QUERY_FORMATS:
3157     case GST_QUERY_LATENCY:
3158     case GST_QUERY_JITTER:
3159     case GST_QUERY_RATE:
3160     case GST_QUERY_CONVERT:
3161     default:
3162       return gst_pad_dispatcher
3163           (pad, (GstPadDispatcherFunction) gst_pad_query, query);
3164   }
3165 }
3166
3167 #ifndef GST_DISABLE_LOADSAVE
3168 /* FIXME: why isn't this on a GstElement ? */
3169 /**
3170  * gst_pad_load_and_link:
3171  * @self: an #xmlNodePtr to read the description from.
3172  * @parent: the #GstObject element that owns the pad.
3173  *
3174  * Reads the pad definition from the XML node and links the given pad
3175  * in the element to a pad of an element up in the hierarchy.
3176  */
3177 void
3178 gst_pad_load_and_link (xmlNodePtr self, GstObject * parent)
3179 {
3180   xmlNodePtr field = self->xmlChildrenNode;
3181   GstPad *pad = NULL, *targetpad;
3182   gchar *peer = NULL;
3183   gchar **split;
3184   GstElement *target;
3185   GstObject *grandparent;
3186   gchar *name = NULL;
3187
3188   while (field) {
3189     if (!strcmp ((char *) field->name, "name")) {
3190       name = (gchar *) xmlNodeGetContent (field);
3191       pad = gst_element_get_pad (GST_ELEMENT (parent), name);
3192       g_free (name);
3193     } else if (!strcmp ((char *) field->name, "peer")) {
3194       peer = (gchar *) xmlNodeGetContent (field);
3195     }
3196     field = field->next;
3197   }
3198   g_return_if_fail (pad != NULL);
3199
3200   if (peer == NULL)
3201     return;
3202
3203   split = g_strsplit (peer, ".", 2);
3204
3205   if (split[0] == NULL || split[1] == NULL) {
3206     GST_CAT_DEBUG_OBJECT (GST_CAT_XML, pad,
3207         "Could not parse peer '%s', leaving unlinked", peer);
3208
3209     g_free (peer);
3210     return;
3211   }
3212   g_free (peer);
3213
3214   g_return_if_fail (split[0] != NULL);
3215   g_return_if_fail (split[1] != NULL);
3216
3217   grandparent = gst_object_get_parent (parent);
3218
3219   if (grandparent && GST_IS_BIN (grandparent)) {
3220     target = gst_bin_get_by_name_recurse_up (GST_BIN (grandparent), split[0]);
3221   } else
3222     goto cleanup;
3223
3224   if (target == NULL)
3225     goto cleanup;
3226
3227   targetpad = gst_element_get_pad (target, split[1]);
3228
3229   if (targetpad == NULL)
3230     goto cleanup;
3231
3232   gst_pad_link (pad, targetpad);
3233
3234 cleanup:
3235   g_strfreev (split);
3236 }
3237
3238 /**
3239  * gst_pad_save_thyself:
3240  * @pad: a #GstPad to save.
3241  * @parent: the parent #xmlNodePtr to save the description in.
3242  *
3243  * Saves the pad into an xml representation.
3244  *
3245  * Returns: the #xmlNodePtr representation of the pad.
3246  */
3247 static xmlNodePtr
3248 gst_pad_save_thyself (GstObject * object, xmlNodePtr parent)
3249 {
3250   GstPad *pad;
3251   GstPad *peer;
3252
3253   g_return_val_if_fail (GST_IS_PAD (object), NULL);
3254
3255   pad = GST_PAD (object);
3256
3257   xmlNewChild (parent, NULL, (xmlChar *) "name",
3258       (xmlChar *) GST_PAD_NAME (pad));
3259
3260   if (GST_PAD_IS_SRC (pad)) {
3261     xmlNewChild (parent, NULL, (xmlChar *) "direction", (xmlChar *) "source");
3262   } else if (GST_PAD_IS_SINK (pad)) {
3263     xmlNewChild (parent, NULL, (xmlChar *) "direction", (xmlChar *) "sink");
3264   } else {
3265     xmlNewChild (parent, NULL, (xmlChar *) "direction", (xmlChar *) "unknown");
3266   }
3267
3268   if (GST_PAD_PEER (pad) != NULL) {
3269     gchar *content;
3270
3271     peer = GST_PAD_PEER (pad);
3272     /* first check to see if the peer's parent's parent is the same */
3273     /* we just save it off */
3274     content = g_strdup_printf ("%s.%s",
3275         GST_OBJECT_NAME (GST_PAD_PARENT (peer)), GST_PAD_NAME (peer));
3276     xmlNewChild (parent, NULL, (xmlChar *) "peer", (xmlChar *) content);
3277     g_free (content);
3278   } else
3279     xmlNewChild (parent, NULL, (xmlChar *) "peer", NULL);
3280
3281   return parent;
3282 }
3283
3284 #if 0
3285 /**
3286  * gst_ghost_pad_save_thyself:
3287  * @pad: a ghost #GstPad to save.
3288  * @parent: the parent #xmlNodePtr to save the description in.
3289  *
3290  * Saves the ghost pad into an xml representation.
3291  *
3292  * Returns: the #xmlNodePtr representation of the pad.
3293  */
3294 xmlNodePtr
3295 gst_ghost_pad_save_thyself (GstPad * pad, xmlNodePtr parent)
3296 {
3297   xmlNodePtr self;
3298
3299   g_return_val_if_fail (GST_IS_GHOST_PAD (pad), NULL);
3300
3301   self = xmlNewChild (parent, NULL, (xmlChar *) "ghostpad", NULL);
3302   xmlNewChild (self, NULL, (xmlChar *) "name", (xmlChar *) GST_PAD_NAME (pad));
3303   xmlNewChild (self, NULL, (xmlChar *) "parent",
3304       (xmlChar *) GST_OBJECT_NAME (GST_PAD_PARENT (pad)));
3305
3306   /* FIXME FIXME FIXME! */
3307
3308   return self;
3309 }
3310 #endif /* 0 */
3311 #endif /* GST_DISABLE_LOADSAVE */
3312
3313 /*
3314  * should be called with pad OBJECT_LOCK and STREAM_LOCK held.
3315  * GST_PAD_IS_BLOCKED (pad) == TRUE when this function is
3316  * called.
3317  *
3318  * This function performs the pad blocking when an event, buffer push
3319  * or buffer_alloc is performed on a _SRC_ pad. It blocks the
3320  * streaming thread after informing the pad has been blocked.
3321  *
3322  * An application can with this method wait and block any streaming
3323  * thread and perform operations such as seeking or linking.
3324  *
3325  * Two methods are available for notifying the application of the
3326  * block:
3327  * - the callback method, which happens in the STREAMING thread with
3328  *   the STREAM_LOCK held. With this method, the most useful way of
3329  *   dealing with the callback is to post a message to the main thread
3330  *   where the pad block can then be handled outside of the streaming
3331  *   thread. With the last method one can perform all operations such
3332  *   as doing a state change, linking, unblocking, seeking etc on the
3333  *   pad.
3334  * - the GCond signal method, which makes any thread unblock when
3335  *   the pad block happens.
3336  *
3337  * During the actual blocking state, the GST_PAD_BLOCKING flag is set.
3338  * The GST_PAD_BLOCKING flag is unset when the pad was unblocked.
3339  *
3340  * MT safe.
3341  */
3342 static GstFlowReturn
3343 handle_pad_block (GstPad * pad)
3344 {
3345   GstPadBlockCallback callback;
3346   gpointer user_data;
3347   GstFlowReturn ret = GST_FLOW_OK;
3348
3349   GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "signal block taken");
3350
3351   /* flushing, don't bother trying to block and return WRONG_STATE
3352    * right away */
3353   if (GST_PAD_IS_FLUSHING (pad))
3354     goto flushingnonref;
3355
3356   /* we grab an extra ref for the callbacks, this is probably not
3357    * needed (callback code does not have a ref and cannot unref). I
3358    * think this was done to make it possible to unref the element in
3359    * the callback, which is in the end totally impossible as it
3360    * requires grabbing the STREAM_LOCK and OBJECT_LOCK which are
3361    * all taken when calling this function. */
3362   gst_object_ref (pad);
3363
3364   /* we either have a callback installed to notify the block or
3365    * some other thread is doing a GCond wait. */
3366   callback = pad->block_callback;
3367   if (callback) {
3368     /* there is a callback installed, call it. We release the
3369      * lock so that the callback can do something usefull with the
3370      * pad */
3371     user_data = pad->block_data;
3372     GST_OBJECT_UNLOCK (pad);
3373     callback (pad, TRUE, user_data);
3374     GST_OBJECT_LOCK (pad);
3375
3376     /* we released the lock, recheck flushing */
3377     if (GST_PAD_IS_FLUSHING (pad))
3378       goto flushing;
3379   } else {
3380     /* no callback, signal the thread that is doing a GCond wait
3381      * if any. */
3382     GST_PAD_BLOCK_BROADCAST (pad);
3383   }
3384
3385   /* OBJECT_LOCK could have been released when we did the callback, which
3386    * then could have made the pad unblock so we need to check the blocking
3387    * condition again.   */
3388   while (GST_PAD_IS_BLOCKED (pad)) {
3389     /* now we block the streaming thread. It can be unlocked when we
3390      * deactivate the pad (which will also set the FLUSHING flag) or
3391      * when the pad is unblocked. A flushing event will also unblock
3392      * the pad after setting the FLUSHING flag. */
3393     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3394         "Waiting to be unblocked or set flushing");
3395     GST_OBJECT_FLAG_SET (pad, GST_PAD_BLOCKING);
3396     GST_PAD_BLOCK_WAIT (pad);
3397     GST_OBJECT_FLAG_UNSET (pad, GST_PAD_BLOCKING);
3398
3399     /* see if we got unblocked by a flush or not */
3400     if (GST_PAD_IS_FLUSHING (pad))
3401       goto flushing;
3402   }
3403
3404   GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "got unblocked");
3405
3406   /* when we get here, the pad is unblocked again and we perform
3407    * the needed unblock code. */
3408   callback = pad->block_callback;
3409   if (callback) {
3410     /* we need to call the callback */
3411     user_data = pad->block_data;
3412     GST_OBJECT_UNLOCK (pad);
3413     callback (pad, FALSE, user_data);
3414     GST_OBJECT_LOCK (pad);
3415   } else {
3416     /* we need to signal the thread waiting on the GCond */
3417     GST_PAD_BLOCK_BROADCAST (pad);
3418   }
3419
3420   gst_object_unref (pad);
3421
3422   return ret;
3423
3424 flushingnonref:
3425   {
3426     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "pad was flushing");
3427     return GST_FLOW_WRONG_STATE;
3428   }
3429 flushing:
3430   {
3431     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "pad became flushing");
3432     gst_object_unref (pad);
3433     return GST_FLOW_WRONG_STATE;
3434   }
3435 }
3436
3437 /**********************************************************************
3438  * Data passing functions
3439  */
3440
3441 static gboolean
3442 gst_pad_emit_have_data_signal (GstPad * pad, GstMiniObject * obj)
3443 {
3444   GValue ret = { 0 };
3445   GValue args[2] = { {0}, {0} };
3446   gboolean res;
3447   GQuark detail;
3448
3449   /* init */
3450   g_value_init (&ret, G_TYPE_BOOLEAN);
3451   g_value_set_boolean (&ret, TRUE);
3452   g_value_init (&args[0], GST_TYPE_PAD);
3453   g_value_set_object (&args[0], pad);
3454   g_value_init (&args[1], GST_TYPE_MINI_OBJECT);
3455   gst_value_set_mini_object (&args[1], obj);
3456
3457   if (GST_IS_EVENT (obj))
3458     detail = event_quark;
3459   else
3460     detail = buffer_quark;
3461
3462   /* actually emit */
3463   g_signal_emitv (args, gst_pad_signals[PAD_HAVE_DATA], detail, &ret);
3464   res = g_value_get_boolean (&ret);
3465
3466   /* clean up */
3467   g_value_unset (&ret);
3468   g_value_unset (&args[0]);
3469   g_value_unset (&args[1]);
3470
3471   return res;
3472 }
3473
3474 /* this is the chain function that does not perform the additional argument
3475  * checking for that little extra speed.
3476  */
3477 static inline GstFlowReturn
3478 gst_pad_chain_unchecked (GstPad * pad, GstBuffer * buffer)
3479 {
3480   GstCaps *caps;
3481   gboolean caps_changed;
3482   GstPadChainFunction chainfunc;
3483   GstFlowReturn ret;
3484   gboolean emit_signal;
3485
3486   GST_PAD_STREAM_LOCK (pad);
3487
3488   GST_OBJECT_LOCK (pad);
3489   if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
3490     goto flushing;
3491
3492   caps = GST_BUFFER_CAPS (buffer);
3493   caps_changed = caps && caps != GST_PAD_CAPS (pad);
3494
3495   emit_signal = GST_PAD_DO_BUFFER_SIGNALS (pad) > 0;
3496   GST_OBJECT_UNLOCK (pad);
3497
3498   /* see if the signal should be emited, we emit before caps nego as
3499    * we might drop the buffer and do capsnego for nothing. */
3500   if (G_UNLIKELY (emit_signal)) {
3501     if (!gst_pad_emit_have_data_signal (pad, GST_MINI_OBJECT (buffer)))
3502       goto dropping;
3503   }
3504
3505   /* we got a new datatype on the pad, see if it can handle it */
3506   if (G_UNLIKELY (caps_changed)) {
3507     GST_DEBUG_OBJECT (pad, "caps changed to %p %" GST_PTR_FORMAT, caps, caps);
3508     if (G_UNLIKELY (!gst_pad_configure_sink (pad, caps)))
3509       goto not_negotiated;
3510   }
3511
3512   /* NOTE: we read the chainfunc unlocked.
3513    * we cannot hold the lock for the pad so we might send
3514    * the data to the wrong function. This is not really a
3515    * problem since functions are assigned at creation time
3516    * and don't change that often... */
3517   if (G_UNLIKELY ((chainfunc = GST_PAD_CHAINFUNC (pad)) == NULL))
3518     goto no_function;
3519
3520   GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3521       "calling chainfunction &%s", GST_DEBUG_FUNCPTR_NAME (chainfunc));
3522
3523   ret = chainfunc (pad, buffer);
3524
3525   GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3526       "called chainfunction &%s, returned %s",
3527       GST_DEBUG_FUNCPTR_NAME (chainfunc), gst_flow_get_name (ret));
3528
3529   GST_PAD_STREAM_UNLOCK (pad);
3530
3531   return ret;
3532
3533   /* ERRORS */
3534 flushing:
3535   {
3536     gst_buffer_unref (buffer);
3537     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3538         "pushing, but pad was flushing");
3539     GST_OBJECT_UNLOCK (pad);
3540     GST_PAD_STREAM_UNLOCK (pad);
3541     return GST_FLOW_WRONG_STATE;
3542   }
3543 dropping:
3544   {
3545     gst_buffer_unref (buffer);
3546     GST_DEBUG_OBJECT (pad, "Dropping buffer due to FALSE probe return");
3547     GST_PAD_STREAM_UNLOCK (pad);
3548     return GST_FLOW_OK;
3549   }
3550 not_negotiated:
3551   {
3552     gst_buffer_unref (buffer);
3553     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3554         "pushing buffer but pad did not accept");
3555     GST_PAD_STREAM_UNLOCK (pad);
3556     return GST_FLOW_NOT_NEGOTIATED;
3557   }
3558 no_function:
3559   {
3560     gst_buffer_unref (buffer);
3561     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3562         "pushing, but not chainhandler");
3563     GST_ELEMENT_ERROR (GST_PAD_PARENT (pad), CORE, PAD, (NULL),
3564         ("push on pad %s:%s but it has no chainfunction",
3565             GST_DEBUG_PAD_NAME (pad)));
3566     GST_PAD_STREAM_UNLOCK (pad);
3567     return GST_FLOW_NOT_SUPPORTED;
3568   }
3569 }
3570
3571 /**
3572  * gst_pad_chain:
3573  * @pad: a sink #GstPad, returns GST_FLOW_ERROR if not.
3574  * @buffer: the #GstBuffer to send, return GST_FLOW_ERROR if not.
3575  *
3576  * Chain a buffer to @pad.
3577  *
3578  * The function returns #GST_FLOW_WRONG_STATE if the pad was flushing.
3579  *
3580  * If the caps on @buffer are different from the current caps on @pad, this
3581  * function will call any setcaps function (see gst_pad_set_setcaps_function())
3582  * installed on @pad. If the new caps are not acceptable for @pad, this
3583  * function returns #GST_FLOW_NOT_NEGOTIATED.
3584  *
3585  * The function proceeds calling the chain function installed on @pad (see
3586  * gst_pad_set_chain_function()) and the return value of that function is
3587  * returned to the caller. #GST_FLOW_NOT_SUPPORTED is returned if @pad has no
3588  * chain function.
3589  *
3590  * In all cases, success or failure, the caller loses its reference to @buffer
3591  * after calling this function.
3592  *
3593  * Returns: a #GstFlowReturn from the pad.
3594  *
3595  * MT safe.
3596  */
3597 GstFlowReturn
3598 gst_pad_chain (GstPad * pad, GstBuffer * buffer)
3599 {
3600   g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
3601   g_return_val_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SINK,
3602       GST_FLOW_ERROR);
3603   g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
3604
3605   return gst_pad_chain_unchecked (pad, buffer);
3606 }
3607
3608 /**
3609  * gst_pad_push:
3610  * @pad: a source #GstPad, returns #GST_FLOW_ERROR if not.
3611  * @buffer: the #GstBuffer to push returns GST_FLOW_ERROR if not.
3612  *
3613  * Pushes a buffer to the peer of @pad.
3614  *
3615  * This function will call an installed pad block before triggering any
3616  * installed pad probes.
3617  *
3618  * If the caps on @buffer are different from the currently configured caps on
3619  * @pad, this function will call any installed setcaps function on @pad (see
3620  * gst_pad_set_setcaps_function()). In case of failure to renegotiate the new
3621  * format, this function returns #GST_FLOW_NOT_NEGOTIATED.
3622  *
3623  * The function proceeds calling gst_pad_chain() on the peer pad and returns
3624  * the value from that function. If @pad has no peer, #GST_FLOW_NOT_LINKED will
3625  * be returned.
3626  *
3627  * In all cases, success or failure, the caller loses its reference to @buffer
3628  * after calling this function.
3629  *
3630  * Returns: a #GstFlowReturn from the peer pad.
3631  *
3632  * MT safe.
3633  */
3634 GstFlowReturn
3635 gst_pad_push (GstPad * pad, GstBuffer * buffer)
3636 {
3637   GstPad *peer;
3638   GstFlowReturn ret;
3639
3640   GstCaps *caps;
3641   gboolean caps_changed;
3642
3643   g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
3644   g_return_val_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SRC, GST_FLOW_ERROR);
3645   g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
3646
3647   GST_OBJECT_LOCK (pad);
3648
3649   /* FIXME: this check can go away; pad_set_blocked could be implemented with
3650    * probes completely or probes with an extended pad block. */
3651   while (G_UNLIKELY (GST_PAD_IS_BLOCKED (pad)))
3652     if ((ret = handle_pad_block (pad)) != GST_FLOW_OK)
3653       goto flushed;
3654
3655   /* we emit signals on the pad arg, the peer will have a chance to
3656    * emit in the _chain() function */
3657   if (G_UNLIKELY (GST_PAD_DO_BUFFER_SIGNALS (pad) > 0)) {
3658     /* unlock before emitting */
3659     GST_OBJECT_UNLOCK (pad);
3660
3661     /* if the signal handler returned FALSE, it means we should just drop the
3662      * buffer */
3663     if (!gst_pad_emit_have_data_signal (pad, GST_MINI_OBJECT (buffer)))
3664       goto dropped;
3665
3666     GST_OBJECT_LOCK (pad);
3667   }
3668
3669   if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
3670     goto not_linked;
3671
3672   /* take ref to peer pad before releasing the lock */
3673   gst_object_ref (peer);
3674
3675   /* Before pushing the buffer to the peer pad, ensure that caps
3676    * are set on this pad */
3677   caps = GST_BUFFER_CAPS (buffer);
3678   caps_changed = caps && caps != GST_PAD_CAPS (pad);
3679
3680   GST_OBJECT_UNLOCK (pad);
3681
3682   /* we got a new datatype from the pad, it had better handle it */
3683   if (G_UNLIKELY (caps_changed)) {
3684     GST_DEBUG_OBJECT (pad,
3685         "caps changed from %" GST_PTR_FORMAT " to %p %" GST_PTR_FORMAT,
3686         GST_PAD_CAPS (pad), caps, caps);
3687     if (G_UNLIKELY (!gst_pad_configure_src (pad, caps, TRUE)))
3688       goto not_negotiated;
3689   }
3690
3691   ret = gst_pad_chain_unchecked (peer, buffer);
3692
3693   gst_object_unref (peer);
3694
3695   return ret;
3696
3697   /* ERROR recovery here */
3698 flushed:
3699   {
3700     gst_buffer_unref (buffer);
3701     GST_DEBUG_OBJECT (pad, "pad block stopped by flush");
3702     GST_OBJECT_UNLOCK (pad);
3703     return ret;
3704   }
3705 dropped:
3706   {
3707     gst_buffer_unref (buffer);
3708     GST_DEBUG_OBJECT (pad, "Dropping buffer due to FALSE probe return");
3709     return GST_FLOW_OK;
3710   }
3711 not_linked:
3712   {
3713     gst_buffer_unref (buffer);
3714     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3715         "pushing, but it was not linked");
3716     GST_OBJECT_UNLOCK (pad);
3717     return GST_FLOW_NOT_LINKED;
3718   }
3719 not_negotiated:
3720   {
3721     gst_buffer_unref (buffer);
3722     gst_object_unref (peer);
3723     GST_CAT_DEBUG_OBJECT (GST_CAT_SCHEDULING, pad,
3724         "element pushed buffer then refused to accept the caps");
3725     return GST_FLOW_NOT_NEGOTIATED;
3726   }
3727 }
3728
3729 /**
3730  * gst_pad_check_pull_range:
3731  * @pad: a sink #GstPad.
3732  *
3733  * Checks if a gst_pad_pull_range() can be performed on the peer
3734  * source pad. This function is used by plugins that want to check
3735  * if they can use random access on the peer source pad.
3736  *
3737  * The peer sourcepad can implement a custom #GstPadCheckGetRangeFunction
3738  * if it needs to perform some logic to determine if pull_range is
3739  * possible.
3740  *
3741  * Returns: a gboolean with the result.
3742  *
3743  * MT safe.
3744  */
3745 gboolean
3746 gst_pad_check_pull_range (GstPad * pad)
3747 {
3748   GstPad *peer;
3749   gboolean ret;
3750   GstPadCheckGetRangeFunction checkgetrangefunc;
3751
3752   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3753
3754   GST_OBJECT_LOCK (pad);
3755   if (GST_PAD_DIRECTION (pad) != GST_PAD_SINK)
3756     goto wrong_direction;
3757
3758   if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
3759     goto not_connected;
3760
3761   gst_object_ref (peer);
3762   GST_OBJECT_UNLOCK (pad);
3763
3764   /* see note in above function */
3765   if (G_LIKELY ((checkgetrangefunc = peer->checkgetrangefunc) == NULL)) {
3766     /* FIXME, kindoff ghetto */
3767     ret = GST_PAD_GETRANGEFUNC (peer) != NULL;
3768     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3769         "no checkgetrangefunc, assuming %d", ret);
3770   } else {
3771     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3772         "calling checkgetrangefunc %s of peer pad %s:%s",
3773         GST_DEBUG_FUNCPTR_NAME (checkgetrangefunc), GST_DEBUG_PAD_NAME (peer));
3774
3775     ret = checkgetrangefunc (peer);
3776   }
3777
3778   gst_object_unref (peer);
3779
3780   return ret;
3781
3782   /* ERROR recovery here */
3783 wrong_direction:
3784   {
3785     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3786         "checking pull range, but pad must be a sinkpad");
3787     GST_OBJECT_UNLOCK (pad);
3788     return FALSE;
3789   }
3790 not_connected:
3791   {
3792     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3793         "checking pull range, but it was not linked");
3794     GST_OBJECT_UNLOCK (pad);
3795     return FALSE;
3796   }
3797 }
3798
3799 /**
3800  * gst_pad_get_range:
3801  * @pad: a src #GstPad, returns #GST_FLOW_ERROR if not.
3802  * @offset: The start offset of the buffer
3803  * @size: The length of the buffer
3804  * @buffer: a pointer to hold the #GstBuffer, returns #GST_FLOW_ERROR if %NULL.
3805  *
3806  * When @pad is flushing this function returns #GST_FLOW_WRONG_STATE
3807  * immediatly.
3808  *
3809  * Calls the getrange function of @pad, see #GstPadGetRangeFunction for a
3810  * description of a getrange function. If @pad has no getrange function
3811  * installed (see gst_pad_set_getrange_function()) this function returns
3812  * #GST_FLOW_NOT_SUPPORTED.
3813  *
3814  * @buffer's caps must either be unset or the same as what is already
3815  * configured on @pad. Renegotiation within a running pull-mode pipeline is not
3816  * supported.
3817  *
3818  * This is a lowlevel function. Usualy gst_pad_pull_range() is used.
3819  *
3820  * Returns: a #GstFlowReturn from the pad.
3821  *
3822  * MT safe.
3823  */
3824 GstFlowReturn
3825 gst_pad_get_range (GstPad * pad, guint64 offset, guint size,
3826     GstBuffer ** buffer)
3827 {
3828   GstFlowReturn ret;
3829   GstPadGetRangeFunction getrangefunc;
3830   gboolean emit_signal;
3831
3832   g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
3833   g_return_val_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SRC, GST_FLOW_ERROR);
3834   g_return_val_if_fail (buffer != NULL, GST_FLOW_ERROR);
3835
3836   GST_PAD_STREAM_LOCK (pad);
3837
3838   GST_OBJECT_LOCK (pad);
3839   if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
3840     goto flushing;
3841
3842   emit_signal = GST_PAD_DO_BUFFER_SIGNALS (pad) > 0;
3843   GST_OBJECT_UNLOCK (pad);
3844
3845   if (G_UNLIKELY ((getrangefunc = GST_PAD_GETRANGEFUNC (pad)) == NULL))
3846     goto no_function;
3847
3848   GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3849       "calling getrangefunc %s, offset %"
3850       G_GUINT64_FORMAT ", size %u",
3851       GST_DEBUG_FUNCPTR_NAME (getrangefunc), offset, size);
3852
3853   ret = getrangefunc (pad, offset, size, buffer);
3854
3855   /* can only fire the signal if we have a valid buffer */
3856   if (G_UNLIKELY (emit_signal) && (ret == GST_FLOW_OK)) {
3857     if (!gst_pad_emit_have_data_signal (pad, GST_MINI_OBJECT (*buffer)))
3858       goto dropping;
3859   }
3860
3861   GST_PAD_STREAM_UNLOCK (pad);
3862
3863   if (G_LIKELY (ret == GST_FLOW_OK)) {
3864     GstCaps *caps;
3865     gboolean caps_changed;
3866
3867     GST_OBJECT_LOCK (pad);
3868     /* Before pushing the buffer to the peer pad, ensure that caps
3869      * are set on this pad */
3870     caps = GST_BUFFER_CAPS (*buffer);
3871     caps_changed = caps && caps != GST_PAD_CAPS (pad);
3872     GST_OBJECT_UNLOCK (pad);
3873
3874     /* we got a new datatype from the pad not supported in a running pull-mode
3875      * pipeline */
3876     if (G_UNLIKELY (caps_changed))
3877       goto not_negotiated;
3878   }
3879
3880   return ret;
3881
3882   /* ERRORS */
3883 flushing:
3884   {
3885     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3886         "pulling range, but pad was flushing");
3887     GST_OBJECT_UNLOCK (pad);
3888     GST_PAD_STREAM_UNLOCK (pad);
3889     return GST_FLOW_WRONG_STATE;
3890   }
3891 no_function:
3892   {
3893     GST_ELEMENT_ERROR (GST_PAD_PARENT (pad), CORE, PAD, (NULL),
3894         ("pullrange on pad %s:%s but it has no getrangefunction",
3895             GST_DEBUG_PAD_NAME (pad)));
3896     GST_PAD_STREAM_UNLOCK (pad);
3897     return GST_FLOW_NOT_SUPPORTED;
3898   }
3899 dropping:
3900   {
3901     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3902         "Dropping data after FALSE probe return");
3903     GST_PAD_STREAM_UNLOCK (pad);
3904     gst_buffer_unref (*buffer);
3905     *buffer = NULL;
3906     return GST_FLOW_UNEXPECTED;
3907   }
3908 not_negotiated:
3909   {
3910     /* ideally we want to use the commented-out code, but currently demuxers
3911      * and typefind do not follow part-negotiation.txt. When switching into
3912      * pull mode, typefind should probably return the found caps from
3913      * getcaps(), and demuxers should do the setcaps(). */
3914
3915 #if 0
3916     gst_buffer_unref (*buffer);
3917     *buffer = NULL;
3918     GST_CAT_WARNING_OBJECT (GST_CAT_SCHEDULING, pad,
3919         "getrange returned buffer of different caps");
3920     return GST_FLOW_NOT_NEGOTIATED;
3921 #endif
3922     GST_CAT_DEBUG_OBJECT (GST_CAT_SCHEDULING, pad,
3923         "getrange returned buffer of different caps");
3924     return ret;
3925   }
3926 }
3927
3928
3929 /**
3930  * gst_pad_pull_range:
3931  * @pad: a sink #GstPad, returns GST_FLOW_ERROR if not.
3932  * @offset: The start offset of the buffer
3933  * @size: The length of the buffer
3934  * @buffer: a pointer to hold the #GstBuffer, returns GST_FLOW_ERROR if %NULL.
3935  *
3936  * Pulls a @buffer from the peer pad.
3937  *
3938  * This function will first trigger the pad block signal if it was
3939  * installed.
3940  *
3941  * When @pad is not linked #GST_FLOW_NOT_LINKED is returned else this
3942  * function returns the result of gst_pad_get_range() on the peer pad.
3943  * See gst_pad_get_range() for a list of return values and for the
3944  * semantics of the arguments of this function.
3945  *
3946  * @buffer's caps must either be unset or the same as what is already
3947  * configured on @pad. Renegotiation within a running pull-mode pipeline is not
3948  * supported.
3949  *
3950  * Returns: a #GstFlowReturn from the peer pad.
3951  * When this function returns #GST_FLOW_OK, @buffer will contain a valid
3952  * #GstBuffer that should be freed with gst_buffer_unref() after usage.
3953  * @buffer may not be used or freed when any other return value than
3954  * #GST_FLOW_OK is returned.
3955  *
3956  * MT safe.
3957  */
3958 GstFlowReturn
3959 gst_pad_pull_range (GstPad * pad, guint64 offset, guint size,
3960     GstBuffer ** buffer)
3961 {
3962   GstPad *peer;
3963   GstFlowReturn ret;
3964   gboolean emit_signal;
3965
3966   g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
3967   g_return_val_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SINK,
3968       GST_FLOW_ERROR);
3969   g_return_val_if_fail (buffer != NULL, GST_FLOW_ERROR);
3970
3971   GST_OBJECT_LOCK (pad);
3972
3973   while (G_UNLIKELY (GST_PAD_IS_BLOCKED (pad)))
3974     handle_pad_block (pad);
3975
3976   if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
3977     goto not_connected;
3978
3979   /* signal emision for the pad, peer has chance to emit when
3980    * we call _get_range() */
3981   emit_signal = GST_PAD_DO_BUFFER_SIGNALS (pad) > 0;
3982
3983   gst_object_ref (peer);
3984   GST_OBJECT_UNLOCK (pad);
3985
3986   ret = gst_pad_get_range (peer, offset, size, buffer);
3987
3988   gst_object_unref (peer);
3989
3990   /* can only fire the signal if we have a valid buffer */
3991   if (G_UNLIKELY (emit_signal) && (ret == GST_FLOW_OK)) {
3992     if (!gst_pad_emit_have_data_signal (pad, GST_MINI_OBJECT (*buffer)))
3993       goto dropping;
3994   }
3995
3996   if (G_LIKELY (ret == GST_FLOW_OK)) {
3997     GstCaps *caps;
3998     gboolean caps_changed;
3999
4000     GST_OBJECT_LOCK (pad);
4001     /* Before pushing the buffer to the peer pad, ensure that caps
4002      * are set on this pad */
4003     caps = GST_BUFFER_CAPS (*buffer);
4004     caps_changed = caps && caps != GST_PAD_CAPS (pad);
4005     GST_OBJECT_UNLOCK (pad);
4006
4007     /* we got a new datatype on the pad, see if it can handle it */
4008     if (G_UNLIKELY (caps_changed))
4009       goto not_negotiated;
4010   }
4011
4012   return ret;
4013
4014   /* ERROR recovery here */
4015 not_connected:
4016   {
4017     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4018         "pulling range, but it was not linked");
4019     GST_OBJECT_UNLOCK (pad);
4020     return GST_FLOW_NOT_LINKED;
4021   }
4022 dropping:
4023   {
4024     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4025         "Dropping data after FALSE probe return");
4026     gst_buffer_unref (*buffer);
4027     *buffer = NULL;
4028     return GST_FLOW_UNEXPECTED;
4029   }
4030 not_negotiated:
4031   {
4032     /* ideally we want to use the commented-out code, but currently demuxers
4033      * and typefind do not follow part-negotiation.txt. When switching into
4034      * pull mode, typefind should probably return the found caps from
4035      * getcaps(), and demuxers should do the setcaps(). */
4036
4037 #if 0
4038     gst_buffer_unref (*buffer);
4039     *buffer = NULL;
4040     GST_CAT_WARNING_OBJECT (GST_CAT_SCHEDULING, pad,
4041         "pullrange returned buffer of different caps");
4042     return GST_FLOW_NOT_NEGOTIATED;
4043 #endif
4044     GST_CAT_DEBUG_OBJECT (GST_CAT_SCHEDULING, pad,
4045         "pullrange returned buffer of different caps");
4046     return ret;
4047   }
4048 }
4049
4050 /**
4051  * gst_pad_push_event:
4052  * @pad: a #GstPad to push the event to.
4053  * @event: the #GstEvent to send to the pad.
4054  *
4055  * Sends the event to the peer of the given pad. This function is
4056  * mainly used by elements to send events to their peer
4057  * elements.
4058  *
4059  * This function takes owership of the provided event so you should
4060  * gst_event_ref() it if you want to reuse the event after this call.
4061  *
4062  * Returns: TRUE if the event was handled.
4063  *
4064  * MT safe.
4065  */
4066 gboolean
4067 gst_pad_push_event (GstPad * pad, GstEvent * event)
4068 {
4069   GstPad *peerpad;
4070   gboolean result;
4071
4072   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
4073   g_return_val_if_fail (event != NULL, FALSE);
4074   g_return_val_if_fail (GST_IS_EVENT (event), FALSE);
4075
4076   GST_LOG_OBJECT (pad, "event: %s", GST_EVENT_TYPE_NAME (event));
4077
4078   GST_OBJECT_LOCK (pad);
4079
4080   /* Two checks to be made:
4081    * . (un)set the FLUSHING flag for flushing events,
4082    * . handle pad blocking */
4083   switch (GST_EVENT_TYPE (event)) {
4084     case GST_EVENT_FLUSH_START:
4085       GST_PAD_SET_FLUSHING (pad);
4086
4087       if (G_UNLIKELY (GST_PAD_IS_BLOCKED (pad))) {
4088         /* flush start will have set the FLUSHING flag and will then
4089          * unlock all threads doing a GCond wait on the blocking pad. This
4090          * will typically unblock the STREAMING thread blocked on a pad. */
4091         GST_LOG_OBJECT (pad, "Pad is blocked, not forwarding flush-start, "
4092             "doing block signal.");
4093         GST_PAD_BLOCK_BROADCAST (pad);
4094         goto flushed;
4095       }
4096       break;
4097     case GST_EVENT_FLUSH_STOP:
4098       GST_PAD_UNSET_FLUSHING (pad);
4099
4100       /* if we are blocked, flush away the FLUSH_STOP event */
4101       if (G_UNLIKELY (GST_PAD_IS_BLOCKED (pad))) {
4102         GST_LOG_OBJECT (pad, "Pad is blocked, not forwarding flush-stop");
4103         goto flushed;
4104       }
4105       break;
4106     default:
4107       while (G_UNLIKELY (GST_PAD_IS_BLOCKED (pad))) {
4108         /* block the event as long as the pad is blocked */
4109         if (handle_pad_block (pad) != GST_FLOW_OK)
4110           goto flushed;
4111       }
4112       break;
4113   }
4114
4115   if (G_UNLIKELY (GST_PAD_DO_EVENT_SIGNALS (pad) > 0)) {
4116     GST_OBJECT_UNLOCK (pad);
4117
4118     if (!gst_pad_emit_have_data_signal (pad, GST_MINI_OBJECT (event)))
4119       goto dropping;
4120
4121     GST_OBJECT_LOCK (pad);
4122   }
4123   peerpad = GST_PAD_PEER (pad);
4124   if (peerpad == NULL)
4125     goto not_linked;
4126
4127   GST_LOG_OBJECT (pad, "sending event %s to peerpad %" GST_PTR_FORMAT,
4128       GST_EVENT_TYPE_NAME (event), peerpad);
4129   gst_object_ref (peerpad);
4130   GST_OBJECT_UNLOCK (pad);
4131
4132   result = gst_pad_send_event (peerpad, event);
4133
4134   /* Note: we gave away ownership of the event at this point */
4135   GST_LOG_OBJECT (pad, "sent event to peerpad %" GST_PTR_FORMAT ", result %d",
4136       peerpad, result);
4137   gst_object_unref (peerpad);
4138
4139   return result;
4140
4141   /* ERROR handling */
4142 dropping:
4143   {
4144     GST_DEBUG_OBJECT (pad, "Dropping event after FALSE probe return");
4145     gst_event_unref (event);
4146     return FALSE;
4147   }
4148 not_linked:
4149   {
4150     GST_DEBUG_OBJECT (pad, "Dropping event because pad is not linked");
4151     gst_event_unref (event);
4152     GST_OBJECT_UNLOCK (pad);
4153     return FALSE;
4154   }
4155 flushed:
4156   {
4157     GST_DEBUG_OBJECT (pad,
4158         "Not forwarding event since we're flushing and blocking");
4159     gst_event_unref (event);
4160     GST_OBJECT_UNLOCK (pad);
4161     return TRUE;
4162   }
4163 }
4164
4165 /**
4166  * gst_pad_send_event:
4167  * @pad: a #GstPad to send the event to.
4168  * @event: the #GstEvent to send to the pad.
4169  *
4170  * Sends the event to the pad. This function can be used
4171  * by applications to send events in the pipeline.
4172  *
4173  * If @pad is a source pad, @event should be an upstream event. If @pad is a
4174  * sink pad, @event should be a downstream event. For example, you would not
4175  * send a #GST_EVENT_EOS on a src pad; EOS events only propagate downstream.
4176  * Furthermore, some downstream events have to be serialized with data flow,
4177  * like EOS, while some can travel out-of-band, like #GST_EVENT_FLUSH_START. If
4178  * the event needs to be serialized with data flow, this function will take the
4179  * pad's stream lock while calling its event function.
4180  *
4181  * To find out whether an event type is upstream, downstream, or downstream and
4182  * serialized, see #GstEventTypeFlags, gst_event_type_get_flags(),
4183  * #GST_EVENT_IS_UPSTREAM, #GST_EVENT_IS_DOWNSTREAM, and
4184  * #GST_EVENT_IS_SERIALIZED. Note that in practice that an application or
4185  * plugin doesn't need to bother itself with this information; the core handles
4186  * all necessary locks and checks.
4187  *
4188  * This function takes owership of the provided event so you should
4189  * gst_event_ref() it if you want to reuse the event after this call.
4190  *
4191  * Returns: TRUE if the event was handled.
4192  */
4193 gboolean
4194 gst_pad_send_event (GstPad * pad, GstEvent * event)
4195 {
4196   gboolean result = FALSE;
4197   GstPadEventFunction eventfunc;
4198   gboolean serialized, need_unlock = FALSE;
4199
4200   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
4201   g_return_val_if_fail (event != NULL, FALSE);
4202
4203   GST_OBJECT_LOCK (pad);
4204   if (GST_PAD_IS_SINK (pad)) {
4205     if (G_UNLIKELY (!GST_EVENT_IS_DOWNSTREAM (event)))
4206       goto wrong_direction;
4207     serialized = GST_EVENT_IS_SERIALIZED (event);
4208   } else if (GST_PAD_IS_SRC (pad)) {
4209     if (G_UNLIKELY (!GST_EVENT_IS_UPSTREAM (event)))
4210       goto wrong_direction;
4211     /* events on srcpad never are serialized */
4212     serialized = FALSE;
4213   } else
4214     goto unknown_direction;
4215
4216   if (G_UNLIKELY (GST_EVENT_SRC (event) == NULL)) {
4217     GST_LOG_OBJECT (pad, "event had no source, setting pad as event source");
4218     GST_EVENT_SRC (event) = gst_object_ref (pad);
4219   }
4220
4221   /* pad signals */
4222   if (G_UNLIKELY (GST_PAD_DO_EVENT_SIGNALS (pad) > 0)) {
4223     GST_OBJECT_UNLOCK (pad);
4224
4225     if (!gst_pad_emit_have_data_signal (pad, GST_MINI_OBJECT_CAST (event)))
4226       goto dropping;
4227
4228     GST_OBJECT_LOCK (pad);
4229   }
4230
4231   switch (GST_EVENT_TYPE (event)) {
4232     case GST_EVENT_FLUSH_START:
4233       GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad,
4234           "have event type %d (FLUSH_START)", GST_EVENT_TYPE (event));
4235
4236       /* can't even accept a flush begin event when flushing */
4237       if (GST_PAD_IS_FLUSHING (pad))
4238         goto flushing;
4239       GST_PAD_SET_FLUSHING (pad);
4240       GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad, "set flush flag");
4241       break;
4242     case GST_EVENT_FLUSH_STOP:
4243       GST_PAD_UNSET_FLUSHING (pad);
4244       GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad, "cleared flush flag");
4245       GST_OBJECT_UNLOCK (pad);
4246       /* grab stream lock */
4247       GST_PAD_STREAM_LOCK (pad);
4248       need_unlock = TRUE;
4249       GST_OBJECT_LOCK (pad);
4250       break;
4251     default:
4252       GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad, "have event type %s",
4253           GST_EVENT_TYPE_NAME (event));
4254
4255       /* make this a little faster, no point in grabbing the lock
4256        * if the pad is allready flushing. */
4257       if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
4258         goto flushing;
4259
4260       if (serialized) {
4261         /* lock order: STREAM_LOCK, LOCK, recheck flushing. */
4262         GST_OBJECT_UNLOCK (pad);
4263         GST_PAD_STREAM_LOCK (pad);
4264         need_unlock = TRUE;
4265         GST_OBJECT_LOCK (pad);
4266         if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
4267           goto flushing;
4268       }
4269       break;
4270   }
4271   if (G_UNLIKELY ((eventfunc = GST_PAD_EVENTFUNC (pad)) == NULL))
4272     goto no_function;
4273
4274   GST_OBJECT_UNLOCK (pad);
4275
4276   result = eventfunc (pad, event);
4277
4278   if (need_unlock)
4279     GST_PAD_STREAM_UNLOCK (pad);
4280
4281   GST_DEBUG_OBJECT (pad, "sent event, result %d", result);
4282
4283   return result;
4284
4285   /* ERROR handling */
4286 wrong_direction:
4287   {
4288     g_warning ("pad %s:%s sending %s event in wrong direction",
4289         GST_DEBUG_PAD_NAME (pad), GST_EVENT_TYPE_NAME (event));
4290     GST_OBJECT_UNLOCK (pad);
4291     gst_event_unref (event);
4292     return FALSE;
4293   }
4294 unknown_direction:
4295   {
4296     g_warning ("pad %s:%s has invalid direction", GST_DEBUG_PAD_NAME (pad));
4297     GST_OBJECT_UNLOCK (pad);
4298     gst_event_unref (event);
4299     return FALSE;
4300   }
4301 no_function:
4302   {
4303     g_warning ("pad %s:%s has no event handler, file a bug.",
4304         GST_DEBUG_PAD_NAME (pad));
4305     GST_OBJECT_UNLOCK (pad);
4306     if (need_unlock)
4307       GST_PAD_STREAM_UNLOCK (pad);
4308     gst_event_unref (event);
4309     return FALSE;
4310   }
4311 flushing:
4312   {
4313     GST_OBJECT_UNLOCK (pad);
4314     if (need_unlock)
4315       GST_PAD_STREAM_UNLOCK (pad);
4316     GST_CAT_INFO_OBJECT (GST_CAT_EVENT, pad,
4317         "Received event on flushing pad. Discarding");
4318     gst_event_unref (event);
4319     return FALSE;
4320   }
4321 dropping:
4322   {
4323     GST_DEBUG_OBJECT (pad, "Dropping event after FALSE probe return");
4324     gst_event_unref (event);
4325     return FALSE;
4326   }
4327 }
4328
4329 /**
4330  * gst_pad_set_element_private:
4331  * @pad: the #GstPad to set the private data of.
4332  * @priv: The private data to attach to the pad.
4333  *
4334  * Set the given private data gpointer on the pad.
4335  * This function can only be used by the element that owns the pad.
4336  * No locking is performed in this function.
4337  */
4338 void
4339 gst_pad_set_element_private (GstPad * pad, gpointer priv)
4340 {
4341   pad->element_private = priv;
4342 }
4343
4344 /**
4345  * gst_pad_get_element_private:
4346  * @pad: the #GstPad to get the private data of.
4347  *
4348  * Gets the private data of a pad.
4349  * No locking is performed in this function.
4350  *
4351  * Returns: a #gpointer to the private data.
4352  */
4353 gpointer
4354 gst_pad_get_element_private (GstPad * pad)
4355 {
4356   return pad->element_private;
4357 }
4358
4359 /**
4360  * gst_pad_start_task:
4361  * @pad: the #GstPad to start the task of
4362  * @func: the task function to call
4363  * @data: data passed to the task function
4364  *
4365  * Starts a task that repeatedly calls @func with @data. This function
4366  * is mostly used in pad activation functions to start the dataflow.
4367  * The #GST_PAD_STREAM_LOCK of @pad will automatically be acquired
4368  * before @func is called.
4369  *
4370  * Returns: a %TRUE if the task could be started.
4371  */
4372 gboolean
4373 gst_pad_start_task (GstPad * pad, GstTaskFunction func, gpointer data)
4374 {
4375   GstTask *task;
4376
4377   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
4378   g_return_val_if_fail (func != NULL, FALSE);
4379
4380   GST_DEBUG_OBJECT (pad, "start task");
4381
4382   GST_OBJECT_LOCK (pad);
4383   task = GST_PAD_TASK (pad);
4384   if (task == NULL) {
4385     task = gst_task_create (func, data);
4386     gst_task_set_lock (task, GST_PAD_GET_STREAM_LOCK (pad));
4387     GST_PAD_TASK (pad) = task;
4388     GST_DEBUG_OBJECT (pad, "created task");
4389   }
4390   gst_task_start (task);
4391   GST_OBJECT_UNLOCK (pad);
4392
4393   return TRUE;
4394 }
4395
4396 /**
4397  * gst_pad_pause_task:
4398  * @pad: the #GstPad to pause the task of
4399  *
4400  * Pause the task of @pad. This function will also wait until the
4401  * function executed by the task is finished if this function is not
4402  * called from the task function.
4403  *
4404  * Returns: a TRUE if the task could be paused or FALSE when the pad
4405  * has no task.
4406  */
4407 gboolean
4408 gst_pad_pause_task (GstPad * pad)
4409 {
4410   GstTask *task;
4411
4412   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
4413
4414   GST_DEBUG_OBJECT (pad, "pause task");
4415
4416   GST_OBJECT_LOCK (pad);
4417   task = GST_PAD_TASK (pad);
4418   if (task == NULL)
4419     goto no_task;
4420   gst_task_pause (task);
4421   GST_OBJECT_UNLOCK (pad);
4422
4423   /* wait for task function to finish, this lock is recursive so it does nothing
4424    * when the pause is called from the task itself */
4425   GST_PAD_STREAM_LOCK (pad);
4426   GST_PAD_STREAM_UNLOCK (pad);
4427
4428   return TRUE;
4429
4430 no_task:
4431   {
4432     GST_DEBUG_OBJECT (pad, "pad has no task");
4433     GST_OBJECT_UNLOCK (pad);
4434     return FALSE;
4435   }
4436 }
4437
4438 /**
4439  * gst_pad_stop_task:
4440  * @pad: the #GstPad to stop the task of
4441  *
4442  * Stop the task of @pad. This function will also make sure that the
4443  * function executed by the task will effectively stop if not called
4444  * from the GstTaskFunction.
4445  *
4446  * This function will deadlock if called from the GstTaskFunction of
4447  * the task. Use gst_task_pause() instead.
4448  *
4449  * Regardless of whether the pad has a task, the stream lock is acquired and
4450  * released so as to ensure that streaming through this pad has finished.
4451  *
4452  * Returns: a TRUE if the task could be stopped or FALSE on error.
4453  */
4454 gboolean
4455 gst_pad_stop_task (GstPad * pad)
4456 {
4457   GstTask *task;
4458
4459   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
4460
4461   GST_DEBUG_OBJECT (pad, "stop task");
4462
4463   GST_OBJECT_LOCK (pad);
4464   task = GST_PAD_TASK (pad);
4465   if (task == NULL)
4466     goto no_task;
4467   GST_PAD_TASK (pad) = NULL;
4468   gst_task_stop (task);
4469   GST_OBJECT_UNLOCK (pad);
4470
4471   GST_PAD_STREAM_LOCK (pad);
4472   GST_PAD_STREAM_UNLOCK (pad);
4473
4474   if (!gst_task_join (task))
4475     goto join_failed;
4476
4477   gst_object_unref (task);
4478
4479   return TRUE;
4480
4481 no_task:
4482   {
4483     GST_DEBUG_OBJECT (pad, "no task");
4484     GST_OBJECT_UNLOCK (pad);
4485
4486     GST_PAD_STREAM_LOCK (pad);
4487     GST_PAD_STREAM_UNLOCK (pad);
4488
4489     /* this is not an error */
4490     return TRUE;
4491   }
4492 join_failed:
4493   {
4494     /* this is bad, possibly the application tried to join the task from
4495      * the task's thread. We install the task again so that it will be stopped
4496      * again from the right thread next time hopefully. */
4497     GST_OBJECT_LOCK (pad);
4498     GST_DEBUG_OBJECT (pad, "join failed");
4499     /* we can only install this task if there was no other task */
4500     if (GST_PAD_TASK (pad) == NULL)
4501       GST_PAD_TASK (pad) = task;
4502     GST_OBJECT_UNLOCK (pad);
4503
4504     return FALSE;
4505   }
4506 }