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