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