26e5175efad90aed9b85290f979b29694f4e425d
[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_query_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 "gstutils.h"
69 #include "gstinfo.h"
70 #include "gsterror.h"
71 #include "gstvalue.h"
72 #include "glib-compat-private.h"
73
74 GST_DEBUG_CATEGORY_STATIC (debug_dataflow);
75 #define GST_CAT_DEFAULT GST_CAT_PADS
76
77 /* Pad signals and args */
78 enum
79 {
80   PAD_LINKED,
81   PAD_UNLINKED,
82   /* FILL ME */
83   LAST_SIGNAL
84 };
85
86 enum
87 {
88   PAD_PROP_0,
89   PAD_PROP_CAPS,
90   PAD_PROP_DIRECTION,
91   PAD_PROP_TEMPLATE,
92   /* FILL ME */
93 };
94
95 #define GST_PAD_GET_PRIVATE(obj)  \
96    (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_PAD, GstPadPrivate))
97
98 /* we have a pending and an active event on the pad. On source pads only the
99  * active event is used. On sinkpads, events are copied to the pending entry and
100  * moved to the active event when the eventfunc returned TRUE. */
101 typedef struct
102 {
103   gboolean received;
104   GstEvent *event;
105 } PadEvent;
106
107 struct _GstPadPrivate
108 {
109   guint events_cookie;
110   GArray *events;
111
112   gint using;
113   guint probe_list_cookie;
114   guint probe_cookie;
115 };
116
117 typedef struct
118 {
119   GHook hook;
120   guint cookie;
121 } GstProbe;
122
123 #define PROBE_COOKIE(h) (((GstProbe *)(h))->cookie)
124
125 typedef struct
126 {
127   GstPad *pad;
128   GstPadProbeInfo *info;
129   gboolean dropped;
130   gboolean pass;
131   gboolean marshalled;
132   guint cookie;
133 } ProbeMarshall;
134
135 static void gst_pad_dispose (GObject * object);
136 static void gst_pad_finalize (GObject * object);
137 static void gst_pad_set_property (GObject * object, guint prop_id,
138     const GValue * value, GParamSpec * pspec);
139 static void gst_pad_get_property (GObject * object, guint prop_id,
140     GValue * value, GParamSpec * pspec);
141
142 static void gst_pad_set_pad_template (GstPad * pad, GstPadTemplate * templ);
143 static gboolean gst_pad_activate_default (GstPad * pad, GstObject * parent);
144 static GstFlowReturn gst_pad_chain_list_default (GstPad * pad,
145     GstObject * parent, GstBufferList * list);
146
147 static GstFlowReturn gst_pad_send_event_unchecked (GstPad * pad,
148     GstEvent * event, GstPadProbeType type);
149 static GstFlowReturn gst_pad_push_event_unchecked (GstPad * pad,
150     GstEvent * event, GstPadProbeType type, gboolean * stored);
151
152 static guint gst_pad_signals[LAST_SIGNAL] = { 0 };
153
154 static GParamSpec *pspec_caps = NULL;
155
156 /* quarks for probe signals */
157 static GQuark buffer_quark;
158 static GQuark buffer_list_quark;
159 static GQuark event_quark;
160
161 typedef struct
162 {
163   const gint ret;
164   const gchar *name;
165   GQuark quark;
166 } GstFlowQuarks;
167
168 static GstFlowQuarks flow_quarks[] = {
169   {GST_FLOW_CUSTOM_SUCCESS, "custom-success", 0},
170   {GST_FLOW_OK, "ok", 0},
171   {GST_FLOW_NOT_LINKED, "not-linked", 0},
172   {GST_FLOW_FLUSHING, "flushing", 0},
173   {GST_FLOW_EOS, "eos", 0},
174   {GST_FLOW_NOT_NEGOTIATED, "not-negotiated", 0},
175   {GST_FLOW_ERROR, "error", 0},
176   {GST_FLOW_NOT_SUPPORTED, "not-supported", 0},
177   {GST_FLOW_CUSTOM_ERROR, "custom-error", 0}
178 };
179
180 /**
181  * gst_flow_get_name:
182  * @ret: a #GstFlowReturn to get the name of.
183  *
184  * Gets a string representing the given flow return.
185  *
186  * Returns: a static string with the name of the flow return.
187  */
188 const gchar *
189 gst_flow_get_name (GstFlowReturn ret)
190 {
191   gint i;
192
193   ret = CLAMP (ret, GST_FLOW_CUSTOM_ERROR, GST_FLOW_CUSTOM_SUCCESS);
194
195   for (i = 0; i < G_N_ELEMENTS (flow_quarks); i++) {
196     if (ret == flow_quarks[i].ret)
197       return flow_quarks[i].name;
198   }
199   return "unknown";
200 }
201
202 /**
203  * gst_flow_to_quark:
204  * @ret: a #GstFlowReturn to get the quark of.
205  *
206  * Get the unique quark for the given GstFlowReturn.
207  *
208  * Returns: the quark associated with the flow return or 0 if an
209  * invalid return was specified.
210  */
211 GQuark
212 gst_flow_to_quark (GstFlowReturn ret)
213 {
214   gint i;
215
216   ret = CLAMP (ret, GST_FLOW_CUSTOM_ERROR, GST_FLOW_CUSTOM_SUCCESS);
217
218   for (i = 0; i < G_N_ELEMENTS (flow_quarks); i++) {
219     if (ret == flow_quarks[i].ret)
220       return flow_quarks[i].quark;
221   }
222   return 0;
223 }
224
225 #define _do_init \
226 { \
227   gint i; \
228   \
229   buffer_quark = g_quark_from_static_string ("buffer"); \
230   buffer_list_quark = g_quark_from_static_string ("bufferlist"); \
231   event_quark = g_quark_from_static_string ("event"); \
232   \
233   for (i = 0; i < G_N_ELEMENTS (flow_quarks); i++) {                    \
234     flow_quarks[i].quark = g_quark_from_static_string (flow_quarks[i].name); \
235   } \
236   \
237   GST_DEBUG_CATEGORY_INIT (debug_dataflow, "GST_DATAFLOW", \
238       GST_DEBUG_BOLD | GST_DEBUG_FG_GREEN, "dataflow inside pads"); \
239 }
240
241 #define gst_pad_parent_class parent_class
242 G_DEFINE_TYPE_WITH_CODE (GstPad, gst_pad, GST_TYPE_OBJECT, _do_init);
243
244 static void
245 gst_pad_class_init (GstPadClass * klass)
246 {
247   GObjectClass *gobject_class;
248   GstObjectClass *gstobject_class;
249
250   gobject_class = G_OBJECT_CLASS (klass);
251   gstobject_class = GST_OBJECT_CLASS (klass);
252
253   g_type_class_add_private (klass, sizeof (GstPadPrivate));
254
255   gobject_class->dispose = gst_pad_dispose;
256   gobject_class->finalize = gst_pad_finalize;
257   gobject_class->set_property = gst_pad_set_property;
258   gobject_class->get_property = gst_pad_get_property;
259
260   /**
261    * GstPad::linked:
262    * @pad: the pad that emitted the signal
263    * @peer: the peer pad that has been connected
264    *
265    * Signals that a pad has been linked to the peer pad.
266    */
267   gst_pad_signals[PAD_LINKED] =
268       g_signal_new ("linked", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
269       G_STRUCT_OFFSET (GstPadClass, linked), NULL, NULL,
270       g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_PAD);
271   /**
272    * GstPad::unlinked:
273    * @pad: the pad that emitted the signal
274    * @peer: the peer pad that has been disconnected
275    *
276    * Signals that a pad has been unlinked from the peer pad.
277    */
278   gst_pad_signals[PAD_UNLINKED] =
279       g_signal_new ("unlinked", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
280       G_STRUCT_OFFSET (GstPadClass, unlinked), NULL, NULL,
281       g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_PAD);
282
283   pspec_caps = g_param_spec_boxed ("caps", "Caps",
284       "The capabilities of the pad", GST_TYPE_CAPS,
285       G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
286   g_object_class_install_property (gobject_class, PAD_PROP_CAPS, pspec_caps);
287
288   g_object_class_install_property (gobject_class, PAD_PROP_DIRECTION,
289       g_param_spec_enum ("direction", "Direction", "The direction of the pad",
290           GST_TYPE_PAD_DIRECTION, GST_PAD_UNKNOWN,
291           G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
292
293   /* FIXME, Make G_PARAM_CONSTRUCT_ONLY when we fix ghostpads. */
294   g_object_class_install_property (gobject_class, PAD_PROP_TEMPLATE,
295       g_param_spec_object ("template", "Template",
296           "The GstPadTemplate of this pad", GST_TYPE_PAD_TEMPLATE,
297           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
298
299   gstobject_class->path_string_separator = ".";
300
301   /* Register common function pointer descriptions */
302   GST_DEBUG_REGISTER_FUNCPTR (gst_pad_activate_default);
303   GST_DEBUG_REGISTER_FUNCPTR (gst_pad_event_default);
304   GST_DEBUG_REGISTER_FUNCPTR (gst_pad_query_default);
305   GST_DEBUG_REGISTER_FUNCPTR (gst_pad_iterate_internal_links_default);
306   GST_DEBUG_REGISTER_FUNCPTR (gst_pad_chain_list_default);
307 }
308
309 static void
310 gst_pad_init (GstPad * pad)
311 {
312   pad->priv = GST_PAD_GET_PRIVATE (pad);
313
314   GST_PAD_DIRECTION (pad) = GST_PAD_UNKNOWN;
315
316   GST_PAD_ACTIVATEFUNC (pad) = gst_pad_activate_default;
317   GST_PAD_EVENTFUNC (pad) = gst_pad_event_default;
318   GST_PAD_QUERYFUNC (pad) = gst_pad_query_default;
319   GST_PAD_ITERINTLINKFUNC (pad) = gst_pad_iterate_internal_links_default;
320   GST_PAD_CHAINLISTFUNC (pad) = gst_pad_chain_list_default;
321
322   GST_PAD_SET_FLUSHING (pad);
323
324   g_rec_mutex_init (&pad->stream_rec_lock);
325
326   g_cond_init (&pad->block_cond);
327
328   g_hook_list_init (&pad->probes, sizeof (GstProbe));
329
330   pad->priv->events = g_array_sized_new (FALSE, TRUE, sizeof (PadEvent), 16);
331 }
332
333 /* called when setting the pad inactive. It removes all sticky events from
334  * the pad */
335 static void
336 remove_events (GstPad * pad)
337 {
338   guint i, len;
339   GArray *events;
340
341   events = pad->priv->events;
342
343   len = events->len;
344   for (i = 0; i < len; i++) {
345     PadEvent *ev = &g_array_index (events, PadEvent, i);
346     gst_event_unref (ev->event);
347   }
348   GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_PENDING_EVENTS);
349   g_array_set_size (events, 0);
350   pad->priv->events_cookie++;
351 }
352
353 static PadEvent *
354 find_event_by_type (GstPad * pad, GstEventType type, guint idx)
355 {
356   guint i, len;
357   GArray *events;
358   PadEvent *ev;
359
360   events = pad->priv->events;
361   len = events->len;
362
363   for (i = 0; i < len; i++) {
364     ev = &g_array_index (events, PadEvent, i);
365     if (ev->event == NULL)
366       continue;
367
368     if (GST_EVENT_TYPE (ev->event) == type) {
369       if (idx == 0)
370         goto found;
371       idx--;
372     }
373   }
374   ev = NULL;
375 found:
376   return ev;
377 }
378
379 static PadEvent *
380 find_event (GstPad * pad, GstEvent * event)
381 {
382   guint i, len;
383   GArray *events;
384   PadEvent *ev;
385
386   events = pad->priv->events;
387   len = events->len;
388
389   for (i = 0; i < len; i++) {
390     ev = &g_array_index (events, PadEvent, i);
391     if (event == ev->event)
392       goto found;
393   }
394   ev = NULL;
395 found:
396   return ev;
397 }
398
399 static void
400 remove_event_by_type (GstPad * pad, GstEventType type)
401 {
402   guint i, len;
403   GArray *events;
404   PadEvent *ev;
405
406   events = pad->priv->events;
407   len = events->len;
408
409   i = 0;
410   while (i < len) {
411     ev = &g_array_index (events, PadEvent, i);
412     if (ev->event == NULL)
413       goto next;
414
415     if (GST_EVENT_TYPE (ev->event) != type)
416       goto next;
417
418     gst_event_unref (ev->event);
419     g_array_remove_index (events, i);
420     len--;
421     pad->priv->events_cookie++;
422     continue;
423
424   next:
425     i++;
426   }
427 }
428
429 /* check all events on srcpad against those on sinkpad. All events that are not
430  * on sinkpad are marked as received=FALSE and the PENDING_EVENTS is set on the
431  * srcpad so that the events will be sent next time */
432 static void
433 schedule_events (GstPad * srcpad, GstPad * sinkpad)
434 {
435   gint i, len;
436   GArray *events;
437   PadEvent *ev;
438   gboolean pending = FALSE;
439
440   events = srcpad->priv->events;
441   len = events->len;
442
443   for (i = 0; i < len; i++) {
444     ev = &g_array_index (events, PadEvent, i);
445     if (ev->event == NULL)
446       continue;
447
448     if (sinkpad == NULL || !find_event (sinkpad, ev->event)) {
449       ev->received = FALSE;
450       pending = TRUE;
451     }
452   }
453   if (pending)
454     GST_OBJECT_FLAG_SET (srcpad, GST_PAD_FLAG_PENDING_EVENTS);
455 }
456
457 typedef gboolean (*PadEventFunction) (GstPad * pad, PadEvent * ev,
458     gpointer user_data);
459
460 /* should be called with pad LOCK */
461 static void
462 events_foreach (GstPad * pad, PadEventFunction func, gpointer user_data)
463 {
464   guint i, len;
465   GArray *events;
466   gboolean ret;
467   guint cookie;
468
469   events = pad->priv->events;
470
471 restart:
472   cookie = pad->priv->events_cookie;
473   i = 0;
474   len = events->len;
475   while (i < len) {
476     PadEvent *ev, ev_ret;
477
478     ev = &g_array_index (events, PadEvent, i);
479     if (G_UNLIKELY (ev->event == NULL))
480       goto next;
481
482     /* take aditional ref, func might release the lock */
483     ev_ret.event = gst_event_ref (ev->event);
484     ev_ret.received = ev->received;
485
486     ret = func (pad, &ev_ret, user_data);
487
488     /* recheck the cookie, lock might have been released and the list could have
489      * changed */
490     if (G_UNLIKELY (cookie != pad->priv->events_cookie)) {
491       if (G_LIKELY (ev_ret.event))
492         gst_event_unref (ev_ret.event);
493       goto restart;
494     }
495
496     /* if the event changed, we need to do something */
497     if (G_UNLIKELY (ev->event != ev_ret.event)) {
498       if (G_UNLIKELY (ev_ret.event == NULL)) {
499         /* function unreffed and set the event to NULL, remove it */
500         g_array_remove_index (events, i);
501         len--;
502         cookie = ++pad->priv->events_cookie;
503         continue;
504       } else {
505         /* function gave a new event for us */
506         gst_event_take (&ev->event, ev_ret.event);
507       }
508     } else {
509       /* just unref, nothing changed */
510       gst_event_unref (ev_ret.event);
511     }
512     if (!ret)
513       break;
514   next:
515     i++;
516   }
517 }
518
519 /* should be called with LOCK */
520 static GstEvent *
521 apply_pad_offset (GstPad * pad, GstEvent * event)
522 {
523   /* check if we need to adjust the segment */
524   if (pad->offset != 0) {
525     GstSegment segment;
526
527     /* copy segment values */
528     gst_event_copy_segment (event, &segment);
529     gst_event_unref (event);
530
531     /* adjust and make a new event with the offset applied */
532     segment.base += pad->offset;
533     event = gst_event_new_segment (&segment);
534   }
535   return event;
536 }
537
538 /* should be called with the OBJECT_LOCK */
539 static GstCaps *
540 get_pad_caps (GstPad * pad)
541 {
542   GstCaps *caps = NULL;
543   PadEvent *ev;
544
545   ev = find_event_by_type (pad, GST_EVENT_CAPS, 0);
546   if (ev && ev->event)
547     gst_event_parse_caps (ev->event, &caps);
548
549   return caps;
550 }
551
552 static void
553 gst_pad_dispose (GObject * object)
554 {
555   GstPad *pad = GST_PAD_CAST (object);
556   GstPad *peer;
557
558   GST_CAT_DEBUG_OBJECT (GST_CAT_REFCOUNTING, pad, "dispose");
559
560   /* unlink the peer pad */
561   if ((peer = gst_pad_get_peer (pad))) {
562     /* window for MT unsafeness, someone else could unlink here
563      * and then we call unlink with wrong pads. The unlink
564      * function would catch this and safely return failed. */
565     if (GST_PAD_IS_SRC (pad))
566       gst_pad_unlink (pad, peer);
567     else
568       gst_pad_unlink (peer, pad);
569
570     gst_object_unref (peer);
571   }
572
573   gst_pad_set_pad_template (pad, NULL);
574
575   remove_events (pad);
576
577   g_hook_list_clear (&pad->probes);
578
579   G_OBJECT_CLASS (parent_class)->dispose (object);
580 }
581
582 static void
583 gst_pad_finalize (GObject * object)
584 {
585   GstPad *pad = GST_PAD_CAST (object);
586   GstTask *task;
587
588   /* in case the task is still around, clean it up */
589   if ((task = GST_PAD_TASK (pad))) {
590     gst_task_join (task);
591     GST_PAD_TASK (pad) = NULL;
592     gst_object_unref (task);
593   }
594
595   if (pad->activatenotify)
596     pad->activatenotify (pad->activatedata);
597   if (pad->activatemodenotify)
598     pad->activatemodenotify (pad->activatemodedata);
599   if (pad->linknotify)
600     pad->linknotify (pad->linkdata);
601   if (pad->unlinknotify)
602     pad->unlinknotify (pad->unlinkdata);
603   if (pad->chainnotify)
604     pad->chainnotify (pad->chaindata);
605   if (pad->chainlistnotify)
606     pad->chainlistnotify (pad->chainlistdata);
607   if (pad->getrangenotify)
608     pad->getrangenotify (pad->getrangedata);
609   if (pad->eventnotify)
610     pad->eventnotify (pad->eventdata);
611   if (pad->querynotify)
612     pad->querynotify (pad->querydata);
613   if (pad->iterintlinknotify)
614     pad->iterintlinknotify (pad->iterintlinkdata);
615
616   g_rec_mutex_clear (&pad->stream_rec_lock);
617   g_cond_clear (&pad->block_cond);
618   g_array_free (pad->priv->events, TRUE);
619
620   G_OBJECT_CLASS (parent_class)->finalize (object);
621 }
622
623 static void
624 gst_pad_set_property (GObject * object, guint prop_id,
625     const GValue * value, GParamSpec * pspec)
626 {
627   g_return_if_fail (GST_IS_PAD (object));
628
629   switch (prop_id) {
630     case PAD_PROP_DIRECTION:
631       GST_PAD_DIRECTION (object) = (GstPadDirection) g_value_get_enum (value);
632       break;
633     case PAD_PROP_TEMPLATE:
634       gst_pad_set_pad_template (GST_PAD_CAST (object),
635           (GstPadTemplate *) g_value_get_object (value));
636       break;
637     default:
638       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
639       break;
640   }
641 }
642
643 static void
644 gst_pad_get_property (GObject * object, guint prop_id,
645     GValue * value, GParamSpec * pspec)
646 {
647   g_return_if_fail (GST_IS_PAD (object));
648
649   switch (prop_id) {
650     case PAD_PROP_CAPS:
651       GST_OBJECT_LOCK (object);
652       g_value_set_boxed (value, get_pad_caps (GST_PAD_CAST (object)));
653       GST_OBJECT_UNLOCK (object);
654       break;
655     case PAD_PROP_DIRECTION:
656       g_value_set_enum (value, GST_PAD_DIRECTION (object));
657       break;
658     case PAD_PROP_TEMPLATE:
659       g_value_set_object (value, GST_PAD_PAD_TEMPLATE (object));
660       break;
661     default:
662       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
663       break;
664   }
665 }
666
667 /**
668  * gst_pad_new:
669  * @name: the name of the new pad.
670  * @direction: the #GstPadDirection of the pad.
671  *
672  * Creates a new pad with the given name in the given direction.
673  * If name is NULL, a guaranteed unique name (across all pads)
674  * will be assigned.
675  * This function makes a copy of the name so you can safely free the name.
676  *
677  * Returns: (transfer floating): a new #GstPad, or NULL in case of an error.
678  *
679  * MT safe.
680  */
681 GstPad *
682 gst_pad_new (const gchar * name, GstPadDirection direction)
683 {
684   return g_object_new (GST_TYPE_PAD,
685       "name", name, "direction", direction, NULL);
686 }
687
688 /**
689  * gst_pad_new_from_template:
690  * @templ: the pad template to use
691  * @name: the name of the element
692  *
693  * Creates a new pad with the given name from the given template.
694  * If name is NULL, a guaranteed unique name (across all pads)
695  * will be assigned.
696  * This function makes a copy of the name so you can safely free the name.
697  *
698  * Returns: (transfer full): a new #GstPad, or NULL in case of an error.
699  */
700 GstPad *
701 gst_pad_new_from_template (GstPadTemplate * templ, const gchar * name)
702 {
703   g_return_val_if_fail (GST_IS_PAD_TEMPLATE (templ), NULL);
704
705   return g_object_new (GST_TYPE_PAD,
706       "name", name, "direction", templ->direction, "template", templ, NULL);
707 }
708
709 /**
710  * gst_pad_new_from_static_template:
711  * @templ: the #GstStaticPadTemplate to use
712  * @name: the name of the element
713  *
714  * Creates a new pad with the given name from the given static template.
715  * If name is NULL, a guaranteed unique name (across all pads)
716  * will be assigned.
717  * This function makes a copy of the name so you can safely free the name.
718  *
719  * Returns: (transfer full): a new #GstPad, or NULL in case of an error.
720  */
721 GstPad *
722 gst_pad_new_from_static_template (GstStaticPadTemplate * templ,
723     const gchar * name)
724 {
725   GstPad *pad;
726   GstPadTemplate *template;
727
728   template = gst_static_pad_template_get (templ);
729   pad = gst_pad_new_from_template (template, name);
730   gst_object_unref (template);
731   return pad;
732 }
733
734 #define ACQUIRE_PARENT(pad, parent, label)                      \
735   G_STMT_START {                                                \
736     if (G_LIKELY ((parent = GST_OBJECT_PARENT (pad))))          \
737       gst_object_ref (parent);                                  \
738     else if (G_LIKELY (GST_PAD_NEEDS_PARENT (pad)))             \
739       goto label;                                               \
740   } G_STMT_END
741
742 #define RELEASE_PARENT(parent)                                  \
743   G_STMT_START {                                                \
744     if (G_LIKELY (parent))                                      \
745       gst_object_unref (parent);                                \
746   } G_STMT_END
747
748 /**
749  * gst_pad_get_direction:
750  * @pad: a #GstPad to get the direction of.
751  *
752  * Gets the direction of the pad. The direction of the pad is
753  * decided at construction time so this function does not take
754  * the LOCK.
755  *
756  * Returns: the #GstPadDirection of the pad.
757  *
758  * MT safe.
759  */
760 GstPadDirection
761 gst_pad_get_direction (GstPad * pad)
762 {
763   GstPadDirection result;
764
765   /* PAD_UNKNOWN is a little silly but we need some sort of
766    * error return value */
767   g_return_val_if_fail (GST_IS_PAD (pad), GST_PAD_UNKNOWN);
768
769   result = GST_PAD_DIRECTION (pad);
770
771   return result;
772 }
773
774 static gboolean
775 gst_pad_activate_default (GstPad * pad, GstObject * parent)
776 {
777   return gst_pad_activate_mode (pad, GST_PAD_MODE_PUSH, TRUE);
778 }
779
780 static void
781 pre_activate (GstPad * pad, GstPadMode new_mode)
782 {
783   switch (new_mode) {
784     case GST_PAD_MODE_NONE:
785       GST_OBJECT_LOCK (pad);
786       GST_DEBUG_OBJECT (pad, "setting PAD_MODE NONE, set flushing");
787       GST_PAD_SET_FLUSHING (pad);
788       GST_PAD_MODE (pad) = new_mode;
789       /* unlock blocked pads so element can resume and stop */
790       GST_PAD_BLOCK_BROADCAST (pad);
791       GST_OBJECT_UNLOCK (pad);
792       break;
793     case GST_PAD_MODE_PUSH:
794     case GST_PAD_MODE_PULL:
795       GST_OBJECT_LOCK (pad);
796       GST_DEBUG_OBJECT (pad, "setting PAD_MODE %d, unset flushing", new_mode);
797       GST_PAD_UNSET_FLUSHING (pad);
798       GST_PAD_MODE (pad) = new_mode;
799       if (GST_PAD_IS_SINK (pad)) {
800         GstPad *peer;
801         /* make sure the peer src pad sends us all events */
802         if ((peer = GST_PAD_PEER (pad))) {
803           gst_object_ref (peer);
804           GST_OBJECT_UNLOCK (pad);
805
806           GST_DEBUG_OBJECT (pad, "reschedule events on peer %s:%s",
807               GST_DEBUG_PAD_NAME (peer));
808
809           GST_OBJECT_LOCK (peer);
810           schedule_events (peer, NULL);
811           GST_OBJECT_UNLOCK (peer);
812
813           gst_object_unref (peer);
814         } else {
815           GST_OBJECT_UNLOCK (pad);
816         }
817       } else {
818         GST_OBJECT_UNLOCK (pad);
819       }
820       break;
821   }
822 }
823
824 static void
825 post_activate (GstPad * pad, GstPadMode new_mode)
826 {
827   switch (new_mode) {
828     case GST_PAD_MODE_NONE:
829       /* ensures that streaming stops */
830       GST_PAD_STREAM_LOCK (pad);
831       GST_DEBUG_OBJECT (pad, "stopped streaming");
832       GST_OBJECT_LOCK (pad);
833       remove_events (pad);
834       GST_OBJECT_UNLOCK (pad);
835       GST_PAD_STREAM_UNLOCK (pad);
836       break;
837     case GST_PAD_MODE_PUSH:
838     case GST_PAD_MODE_PULL:
839       /* NOP */
840       break;
841   }
842 }
843
844 /**
845  * gst_pad_set_active:
846  * @pad: the #GstPad to activate or deactivate.
847  * @active: whether or not the pad should be active.
848  *
849  * Activates or deactivates the given pad.
850  * Normally called from within core state change functions.
851  *
852  * If @active, makes sure the pad is active. If it is already active, either in
853  * push or pull mode, just return. Otherwise dispatches to the pad's activate
854  * function to perform the actual activation.
855  *
856  * If not @active, checks the pad's current mode and calls
857  * gst_pad_activate_push() or gst_pad_activate_pull(), as appropriate, with a
858  * FALSE argument.
859  *
860  * Returns: #TRUE if the operation was successful.
861  *
862  * MT safe.
863  */
864 gboolean
865 gst_pad_set_active (GstPad * pad, gboolean active)
866 {
867   GstObject *parent;
868   GstPadMode old;
869   gboolean ret = FALSE;
870
871   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
872
873   GST_OBJECT_LOCK (pad);
874   old = GST_PAD_MODE (pad);
875   ACQUIRE_PARENT (pad, parent, no_parent);
876   GST_OBJECT_UNLOCK (pad);
877
878   if (active) {
879     if (old == GST_PAD_MODE_NONE) {
880       GST_DEBUG_OBJECT (pad, "activating pad from none");
881       ret = (GST_PAD_ACTIVATEFUNC (pad)) (pad, parent);
882     } else {
883       GST_DEBUG_OBJECT (pad, "pad was active in mode %d", old);
884       ret = TRUE;
885     }
886   } else {
887     if (old == GST_PAD_MODE_NONE) {
888       GST_DEBUG_OBJECT (pad, "pad was inactive");
889       ret = TRUE;
890     } else {
891       GST_DEBUG_OBJECT (pad, "deactivating pad from mode %d", old);
892       ret = gst_pad_activate_mode (pad, old, FALSE);
893     }
894   }
895
896   RELEASE_PARENT (parent);
897
898   if (G_UNLIKELY (!ret))
899     goto failed;
900
901   if (!active) {
902     GST_OBJECT_LOCK (pad);
903     GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_NEED_RECONFIGURE);
904     GST_OBJECT_UNLOCK (pad);
905   }
906   return ret;
907
908   /* ERRORS */
909 no_parent:
910   {
911     GST_DEBUG_OBJECT (pad, "no parent");
912     GST_OBJECT_UNLOCK (pad);
913     return FALSE;
914   }
915 failed:
916   {
917     GST_OBJECT_LOCK (pad);
918     if (!active) {
919       g_critical ("Failed to deactivate pad %s:%s, very bad",
920           GST_DEBUG_PAD_NAME (pad));
921     } else {
922       GST_WARNING_OBJECT (pad, "Failed to activate pad");
923     }
924     GST_OBJECT_UNLOCK (pad);
925     return FALSE;
926   }
927 }
928
929 /**
930  * gst_pad_activate_mode:
931  * @pad: the #GstPad to activate or deactivate.
932  * @mode: the requested activation mode
933  * @active: whether or not the pad should be active.
934  *
935  * Activates or deactivates the given pad in @mode via dispatching to the
936  * pad's activatemodefunc. For use from within pad activation functions only.
937  *
938  * If you don't know what this is, you probably don't want to call it.
939  *
940  * Returns: TRUE if the operation was successful.
941  *
942  * MT safe.
943  */
944 gboolean
945 gst_pad_activate_mode (GstPad * pad, GstPadMode mode, gboolean active)
946 {
947   gboolean res = FALSE;
948   GstObject *parent;
949   GstPadMode old, new;
950   GstPadDirection dir;
951   GstPad *peer;
952
953   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
954
955   GST_OBJECT_LOCK (pad);
956   old = GST_PAD_MODE (pad);
957   dir = GST_PAD_DIRECTION (pad);
958   ACQUIRE_PARENT (pad, parent, no_parent);
959   GST_OBJECT_UNLOCK (pad);
960
961   new = active ? mode : GST_PAD_MODE_NONE;
962
963   if (old == new)
964     goto was_ok;
965
966   if (active && old != mode) {
967     /* pad was activate in the wrong direction, deactivate it
968      * and reactivate it in the requested mode */
969     GST_DEBUG_OBJECT (pad, "deactivating pad from mode %d", old);
970     if (G_UNLIKELY (!gst_pad_activate_mode (pad, old, FALSE)))
971       goto deactivate_failed;
972   }
973
974   switch (mode) {
975     case GST_PAD_MODE_PULL:
976     {
977       if (dir == GST_PAD_SINK) {
978         if ((peer = gst_pad_get_peer (pad))) {
979           GST_DEBUG_OBJECT (pad, "calling peer");
980           if (G_UNLIKELY (!gst_pad_activate_mode (peer, mode, active)))
981             goto peer_failed;
982           gst_object_unref (peer);
983         } else {
984           /* there is no peer, this is only fatal when we activate. When we
985            * deactivate, we must assume the application has unlinked the peer and
986            * will deactivate it eventually. */
987           if (active)
988             goto not_linked;
989           else
990             GST_DEBUG_OBJECT (pad, "deactivating unlinked pad");
991         }
992       } else {
993         if (G_UNLIKELY (GST_PAD_GETRANGEFUNC (pad) == NULL))
994           goto failure;         /* Can't activate pull on a src without a
995                                    getrange function */
996       }
997       break;
998     }
999     default:
1000       break;
1001   }
1002
1003   pre_activate (pad, new);
1004
1005   if (GST_PAD_ACTIVATEMODEFUNC (pad)) {
1006     if (G_UNLIKELY (!GST_PAD_ACTIVATEMODEFUNC (pad) (pad, parent, mode,
1007                 active)))
1008       goto failure;
1009   } else {
1010     /* can happen for sinks of passthrough elements */
1011   }
1012
1013   post_activate (pad, new);
1014
1015   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "%s in mode %d",
1016       active ? "activated" : "deactivated", mode);
1017
1018 exit_success:
1019   res = TRUE;
1020 exit:
1021   RELEASE_PARENT (parent);
1022
1023   return res;
1024
1025 no_parent:
1026   {
1027     GST_DEBUG_OBJECT (pad, "no parent");
1028     GST_OBJECT_UNLOCK (pad);
1029     return FALSE;
1030   }
1031 was_ok:
1032   {
1033     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "already %s in mode %d",
1034         active ? "activated" : "deactivated", mode);
1035     goto exit_success;
1036   }
1037 deactivate_failed:
1038   {
1039     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
1040         "failed to %s in switch to mode %d from mode %d",
1041         (active ? "activate" : "deactivate"), mode, old);
1042     goto exit;
1043   }
1044 peer_failed:
1045   {
1046     GST_OBJECT_LOCK (peer);
1047     GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
1048         "activate_mode on peer (%s:%s) failed", GST_DEBUG_PAD_NAME (peer));
1049     GST_OBJECT_UNLOCK (peer);
1050     gst_object_unref (peer);
1051     goto exit;
1052   }
1053 not_linked:
1054   {
1055     GST_CAT_INFO_OBJECT (GST_CAT_PADS, pad, "can't activate unlinked sink "
1056         "pad in pull mode");
1057     goto exit;
1058   }
1059 failure:
1060   {
1061     GST_OBJECT_LOCK (pad);
1062     GST_CAT_INFO_OBJECT (GST_CAT_PADS, pad, "failed to %s in mode %d",
1063         active ? "activate" : "deactivate", mode);
1064     GST_PAD_SET_FLUSHING (pad);
1065     GST_PAD_MODE (pad) = old;
1066     GST_OBJECT_UNLOCK (pad);
1067     goto exit;
1068   }
1069 }
1070
1071 /**
1072  * gst_pad_is_active:
1073  * @pad: the #GstPad to query
1074  *
1075  * Query if a pad is active
1076  *
1077  * Returns: TRUE if the pad is active.
1078  *
1079  * MT safe.
1080  */
1081 gboolean
1082 gst_pad_is_active (GstPad * pad)
1083 {
1084   gboolean result = FALSE;
1085
1086   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1087
1088   GST_OBJECT_LOCK (pad);
1089   result = GST_PAD_IS_ACTIVE (pad);
1090   GST_OBJECT_UNLOCK (pad);
1091
1092   return result;
1093 }
1094
1095 /**
1096  * gst_pad_add_probe:
1097  * @pad: the #GstPad to add the probe to
1098  * @mask: the probe mask
1099  * @callback: #GstPadProbeCallback that will be called with notifications of
1100  *           the pad state
1101  * @user_data: (closure): user data passed to the callback
1102  * @destroy_data: #GDestroyNotify for user_data
1103  *
1104  * Be notified of different states of pads. The provided callback is called for
1105  * every state that matches @mask.
1106  *
1107  * Returns: an id or 0 on error. The id can be used to remove the probe with
1108  * gst_pad_remove_probe().
1109  *
1110  * MT safe.
1111  */
1112 gulong
1113 gst_pad_add_probe (GstPad * pad, GstPadProbeType mask,
1114     GstPadProbeCallback callback, gpointer user_data,
1115     GDestroyNotify destroy_data)
1116 {
1117   GHook *hook;
1118   gulong res;
1119
1120   g_return_val_if_fail (GST_IS_PAD (pad), 0);
1121   g_return_val_if_fail (mask != 0, 0);
1122
1123   GST_OBJECT_LOCK (pad);
1124
1125   /* make a new probe */
1126   hook = g_hook_alloc (&pad->probes);
1127
1128   GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "adding probe for mask 0x%08x",
1129       mask);
1130
1131   /* when no contraints are given for the types, assume all types are
1132    * acceptable */
1133   if ((mask & GST_PAD_PROBE_TYPE_ALL_BOTH) == 0)
1134     mask |= GST_PAD_PROBE_TYPE_ALL_BOTH;
1135   if ((mask & GST_PAD_PROBE_TYPE_SCHEDULING) == 0)
1136     mask |= GST_PAD_PROBE_TYPE_SCHEDULING;
1137
1138   /* store our flags and other fields */
1139   hook->flags |= (mask << G_HOOK_FLAG_USER_SHIFT);
1140   hook->func = callback;
1141   hook->data = user_data;
1142   hook->destroy = destroy_data;
1143   PROBE_COOKIE (hook) = (pad->priv->probe_cookie - 1);
1144
1145   /* add the probe */
1146   g_hook_prepend (&pad->probes, hook);
1147   pad->num_probes++;
1148   /* incremenent cookie so that the new hook get's called */
1149   pad->priv->probe_list_cookie++;
1150
1151   /* get the id of the hook, we return this and it can be used to remove the
1152    * probe later */
1153   res = hook->hook_id;
1154
1155   GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "got probe id %lu", res);
1156
1157   if (mask & GST_PAD_PROBE_TYPE_BLOCKING) {
1158     /* we have a block probe */
1159     pad->num_blocked++;
1160     GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_BLOCKED);
1161     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "added blocking probe, "
1162         "now %d blocking probes", pad->num_blocked);
1163   }
1164
1165   /* call the callback if we need to be called for idle callbacks */
1166   if ((mask & GST_PAD_PROBE_TYPE_IDLE) && (callback != NULL)) {
1167     if (pad->priv->using > 0) {
1168       /* the pad is in use, we can't signal the idle callback yet. Since we set the
1169        * flag above, the last thread to leave the push will do the callback. New
1170        * threads going into the push will block. */
1171       GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
1172           "pad is in use, delay idle callback");
1173       GST_OBJECT_UNLOCK (pad);
1174     } else {
1175       GstPadProbeInfo info = { GST_PAD_PROBE_TYPE_IDLE, res, };
1176
1177       /* the pad is idle now, we can signal the idle callback now */
1178       GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
1179           "pad is idle, trigger idle callback");
1180       GST_OBJECT_UNLOCK (pad);
1181
1182       callback (pad, &info, user_data);
1183     }
1184   } else {
1185     GST_OBJECT_UNLOCK (pad);
1186   }
1187   return res;
1188 }
1189
1190 static void
1191 cleanup_hook (GstPad * pad, GHook * hook)
1192 {
1193   GstPadProbeType type;
1194
1195   type = (hook->flags) >> G_HOOK_FLAG_USER_SHIFT;
1196
1197   if (type & GST_PAD_PROBE_TYPE_BLOCKING) {
1198     /* unblock when we remove the last blocking probe */
1199     pad->num_blocked--;
1200     GST_DEBUG_OBJECT (pad, "remove blocking probe, now %d left",
1201         pad->num_blocked);
1202     if (pad->num_blocked == 0) {
1203       GST_DEBUG_OBJECT (pad, "last blocking probe removed, unblocking");
1204       GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_BLOCKED);
1205       GST_PAD_BLOCK_BROADCAST (pad);
1206     }
1207   }
1208   g_hook_destroy_link (&pad->probes, hook);
1209   pad->num_probes--;
1210 }
1211
1212 /**
1213  * gst_pad_remove_probe:
1214  * @pad: the #GstPad with the probe
1215  * @id: the probe id to remove
1216  *
1217  * Remove the probe with @id from @pad.
1218  *
1219  * MT safe.
1220  */
1221 void
1222 gst_pad_remove_probe (GstPad * pad, gulong id)
1223 {
1224   GHook *hook;
1225
1226   g_return_if_fail (GST_IS_PAD (pad));
1227
1228   GST_OBJECT_LOCK (pad);
1229
1230   hook = g_hook_get (&pad->probes, id);
1231   if (hook == NULL)
1232     goto not_found;
1233
1234   GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "removing hook %ld",
1235       hook->hook_id);
1236   cleanup_hook (pad, hook);
1237   GST_OBJECT_UNLOCK (pad);
1238
1239   return;
1240
1241 not_found:
1242   {
1243     GST_OBJECT_UNLOCK (pad);
1244     g_warning ("%s: pad `%p' has no probe with id `%lu'", G_STRLOC, pad, id);
1245     return;
1246   }
1247 }
1248
1249 /**
1250  * gst_pad_is_blocked:
1251  * @pad: the #GstPad to query
1252  *
1253  * Checks if the pad is blocked or not. This function returns the
1254  * last requested state of the pad. It is not certain that the pad
1255  * is actually blocking at this point (see gst_pad_is_blocking()).
1256  *
1257  * Returns: TRUE if the pad is blocked.
1258  *
1259  * MT safe.
1260  */
1261 gboolean
1262 gst_pad_is_blocked (GstPad * pad)
1263 {
1264   gboolean result = FALSE;
1265
1266   g_return_val_if_fail (GST_IS_PAD (pad), result);
1267
1268   GST_OBJECT_LOCK (pad);
1269   result = GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_BLOCKED);
1270   GST_OBJECT_UNLOCK (pad);
1271
1272   return result;
1273 }
1274
1275 /**
1276  * gst_pad_is_blocking:
1277  * @pad: the #GstPad to query
1278  *
1279  * Checks if the pad is blocking or not. This is a guaranteed state
1280  * of whether the pad is actually blocking on a #GstBuffer or a #GstEvent.
1281  *
1282  * Returns: TRUE if the pad is blocking.
1283  *
1284  * MT safe.
1285  *
1286  * Since: 0.10.11
1287  */
1288 gboolean
1289 gst_pad_is_blocking (GstPad * pad)
1290 {
1291   gboolean result = FALSE;
1292
1293   g_return_val_if_fail (GST_IS_PAD (pad), result);
1294
1295   GST_OBJECT_LOCK (pad);
1296   /* the blocking flag is only valid if the pad is not flushing */
1297   result = GST_PAD_IS_BLOCKING (pad) && !GST_PAD_IS_FLUSHING (pad);
1298   GST_OBJECT_UNLOCK (pad);
1299
1300   return result;
1301 }
1302
1303 /**
1304  * gst_pad_check_reconfigure:
1305  * @pad: the #GstPad to check
1306  *
1307  * Check and clear the #GST_PAD_FLAG_NEED_RECONFIGURE flag on @pad and return %TRUE
1308  * if the flag was set.
1309  *
1310  * Returns: %TRUE is the GST_PAD_FLAG_NEED_RECONFIGURE flag was set on @pad.
1311  */
1312 gboolean
1313 gst_pad_check_reconfigure (GstPad * pad)
1314 {
1315   gboolean reconfigure;
1316
1317   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1318
1319   GST_OBJECT_LOCK (pad);
1320   reconfigure = GST_PAD_NEEDS_RECONFIGURE (pad);
1321   if (reconfigure)
1322     GST_DEBUG_OBJECT (pad, "remove RECONFIGURE flag");
1323   GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_NEED_RECONFIGURE);
1324   GST_OBJECT_UNLOCK (pad);
1325
1326   return reconfigure;
1327 }
1328
1329 /**
1330  * gst_pad_mark_reconfigure:
1331  * @pad: the #GstPad to mark
1332  *
1333  * Mark a pad for needing reconfiguration. The next call to
1334  * gst_pad_check_reconfigure() will return %TRUE after this call.
1335  */
1336 void
1337 gst_pad_mark_reconfigure (GstPad * pad)
1338 {
1339   g_return_if_fail (GST_IS_PAD (pad));
1340
1341   GST_OBJECT_LOCK (pad);
1342   GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_NEED_RECONFIGURE);
1343   GST_OBJECT_UNLOCK (pad);
1344 }
1345
1346 /**
1347  * gst_pad_set_activate_function_full:
1348  * @pad: a #GstPad.
1349  * @activate: the #GstPadActivateFunction to set.
1350  * @user_data: user_data passed to @notify
1351  * @notify: notify called when @activate will not be used anymore.
1352  *
1353  * Sets the given activate function for @pad. The activate function will
1354  * dispatch to gst_pad_activate_push() or gst_pad_activate_pull() to perform
1355  * the actual activation. Only makes sense to set on sink pads.
1356  *
1357  * Call this function if your sink pad can start a pull-based task.
1358  */
1359 void
1360 gst_pad_set_activate_function_full (GstPad * pad,
1361     GstPadActivateFunction activate, gpointer user_data, GDestroyNotify notify)
1362 {
1363   g_return_if_fail (GST_IS_PAD (pad));
1364
1365   if (pad->activatenotify)
1366     pad->activatenotify (pad->activatedata);
1367   GST_PAD_ACTIVATEFUNC (pad) = activate;
1368   pad->activatedata = user_data;
1369   pad->activatenotify = notify;
1370
1371   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "activatefunc set to %s",
1372       GST_DEBUG_FUNCPTR_NAME (activate));
1373 }
1374
1375 /**
1376  * gst_pad_set_activatemode_function_full:
1377  * @pad: a #GstPad.
1378  * @activatemode: the #GstPadActivateModeFunction to set.
1379  * @user_data: user_data passed to @notify
1380  * @notify: notify called when @activatemode will not be used anymore.
1381  *
1382  * Sets the given activate_mode function for the pad. An activate_mode function
1383  * prepares the element for data passing.
1384  */
1385 void
1386 gst_pad_set_activatemode_function_full (GstPad * pad,
1387     GstPadActivateModeFunction activatemode, gpointer user_data,
1388     GDestroyNotify notify)
1389 {
1390   g_return_if_fail (GST_IS_PAD (pad));
1391
1392   if (pad->activatemodenotify)
1393     pad->activatemodenotify (pad->activatemodedata);
1394   GST_PAD_ACTIVATEMODEFUNC (pad) = activatemode;
1395   pad->activatemodedata = user_data;
1396   pad->activatemodenotify = notify;
1397
1398   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "activatemodefunc set to %s",
1399       GST_DEBUG_FUNCPTR_NAME (activatemode));
1400 }
1401
1402 /**
1403  * gst_pad_set_chain_function_full:
1404  * @pad: a sink #GstPad.
1405  * @chain: the #GstPadChainFunction to set.
1406  * @user_data: user_data passed to @notify
1407  * @notify: notify called when @chain will not be used anymore.
1408  *
1409  * Sets the given chain function for the pad. The chain function is called to
1410  * process a #GstBuffer input buffer. see #GstPadChainFunction for more details.
1411  */
1412 void
1413 gst_pad_set_chain_function_full (GstPad * pad, GstPadChainFunction chain,
1414     gpointer user_data, GDestroyNotify notify)
1415 {
1416   g_return_if_fail (GST_IS_PAD (pad));
1417   g_return_if_fail (GST_PAD_IS_SINK (pad));
1418
1419   if (pad->chainnotify)
1420     pad->chainnotify (pad->chaindata);
1421   GST_PAD_CHAINFUNC (pad) = chain;
1422   pad->chaindata = user_data;
1423   pad->chainnotify = notify;
1424
1425   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "chainfunc set to %s",
1426       GST_DEBUG_FUNCPTR_NAME (chain));
1427 }
1428
1429 /**
1430  * gst_pad_set_chain_list_function_full:
1431  * @pad: a sink #GstPad.
1432  * @chainlist: the #GstPadChainListFunction to set.
1433  * @user_data: user_data passed to @notify
1434  * @notify: notify called when @chainlist will not be used anymore.
1435  *
1436  * Sets the given chain list function for the pad. The chainlist function is
1437  * called to process a #GstBufferList input buffer list. See
1438  * #GstPadChainListFunction for more details.
1439  *
1440  * Since: 0.10.24
1441  */
1442 void
1443 gst_pad_set_chain_list_function_full (GstPad * pad,
1444     GstPadChainListFunction chainlist, gpointer user_data,
1445     GDestroyNotify notify)
1446 {
1447   g_return_if_fail (GST_IS_PAD (pad));
1448   g_return_if_fail (GST_PAD_IS_SINK (pad));
1449
1450   if (pad->chainlistnotify)
1451     pad->chainlistnotify (pad->chainlistdata);
1452   GST_PAD_CHAINLISTFUNC (pad) = chainlist;
1453   pad->chainlistdata = user_data;
1454   pad->chainlistnotify = notify;
1455
1456   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "chainlistfunc set to %s",
1457       GST_DEBUG_FUNCPTR_NAME (chainlist));
1458 }
1459
1460 /**
1461  * gst_pad_set_getrange_function_full:
1462  * @pad: a source #GstPad.
1463  * @get: the #GstPadGetRangeFunction to set.
1464  * @user_data: user_data passed to @notify
1465  * @notify: notify called when @get will not be used anymore.
1466  *
1467  * Sets the given getrange function for the pad. The getrange function is
1468  * called to produce a new #GstBuffer to start the processing pipeline. see
1469  * #GstPadGetRangeFunction for a description of the getrange function.
1470  */
1471 void
1472 gst_pad_set_getrange_function_full (GstPad * pad, GstPadGetRangeFunction get,
1473     gpointer user_data, GDestroyNotify notify)
1474 {
1475   g_return_if_fail (GST_IS_PAD (pad));
1476   g_return_if_fail (GST_PAD_IS_SRC (pad));
1477
1478   if (pad->getrangenotify)
1479     pad->getrangenotify (pad->getrangedata);
1480   GST_PAD_GETRANGEFUNC (pad) = get;
1481   pad->getrangedata = user_data;
1482   pad->getrangenotify = notify;
1483
1484   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "getrangefunc set to %s",
1485       GST_DEBUG_FUNCPTR_NAME (get));
1486 }
1487
1488 /**
1489  * gst_pad_set_event_function_full:
1490  * @pad: a #GstPad of either direction.
1491  * @event: the #GstPadEventFunction to set.
1492  * @user_data: user_data passed to @notify
1493  * @notify: notify called when @event will not be used anymore.
1494  *
1495  * Sets the given event handler for the pad.
1496  */
1497 void
1498 gst_pad_set_event_function_full (GstPad * pad, GstPadEventFunction event,
1499     gpointer user_data, GDestroyNotify notify)
1500 {
1501   g_return_if_fail (GST_IS_PAD (pad));
1502
1503   if (pad->eventnotify)
1504     pad->eventnotify (pad->eventdata);
1505   GST_PAD_EVENTFUNC (pad) = event;
1506   pad->eventdata = user_data;
1507   pad->eventnotify = notify;
1508
1509   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "eventfunc for set to %s",
1510       GST_DEBUG_FUNCPTR_NAME (event));
1511 }
1512
1513 /**
1514  * gst_pad_set_query_function_full:
1515  * @pad: a #GstPad of either direction.
1516  * @query: the #GstPadQueryFunction to set.
1517  * @user_data: user_data passed to @notify
1518  * @notify: notify called when @query will not be used anymore.
1519  *
1520  * Set the given query function for the pad.
1521  */
1522 void
1523 gst_pad_set_query_function_full (GstPad * pad, GstPadQueryFunction query,
1524     gpointer user_data, GDestroyNotify notify)
1525 {
1526   g_return_if_fail (GST_IS_PAD (pad));
1527
1528   if (pad->querynotify)
1529     pad->querynotify (pad->querydata);
1530   GST_PAD_QUERYFUNC (pad) = query;
1531   pad->querydata = user_data;
1532   pad->querynotify = notify;
1533
1534   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "queryfunc set to %s",
1535       GST_DEBUG_FUNCPTR_NAME (query));
1536 }
1537
1538 /**
1539  * gst_pad_set_iterate_internal_links_function_full:
1540  * @pad: a #GstPad of either direction.
1541  * @iterintlink: the #GstPadIterIntLinkFunction to set.
1542  * @user_data: user_data passed to @notify
1543  * @notify: notify called when @iterintlink will not be used anymore.
1544  *
1545  * Sets the given internal link iterator function for the pad.
1546  *
1547  * Since: 0.10.21
1548  */
1549 void
1550 gst_pad_set_iterate_internal_links_function_full (GstPad * pad,
1551     GstPadIterIntLinkFunction iterintlink, gpointer user_data,
1552     GDestroyNotify notify)
1553 {
1554   g_return_if_fail (GST_IS_PAD (pad));
1555
1556   if (pad->iterintlinknotify)
1557     pad->iterintlinknotify (pad->iterintlinkdata);
1558   GST_PAD_ITERINTLINKFUNC (pad) = iterintlink;
1559   pad->iterintlinkdata = user_data;
1560   pad->iterintlinknotify = notify;
1561
1562   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "internal link iterator set to %s",
1563       GST_DEBUG_FUNCPTR_NAME (iterintlink));
1564 }
1565
1566 /**
1567  * gst_pad_set_link_function_full:
1568  * @pad: a #GstPad.
1569  * @link: the #GstPadLinkFunction to set.
1570  * @user_data: user_data passed to @notify
1571  * @notify: notify called when @link will not be used anymore.
1572  *
1573  * Sets the given link function for the pad. It will be called when
1574  * the pad is linked with another pad.
1575  *
1576  * The return value #GST_PAD_LINK_OK should be used when the connection can be
1577  * made.
1578  *
1579  * The return value #GST_PAD_LINK_REFUSED should be used when the connection
1580  * cannot be made for some reason.
1581  *
1582  * If @link is installed on a source pad, it should call the #GstPadLinkFunction
1583  * of the peer sink pad, if present.
1584  */
1585 void
1586 gst_pad_set_link_function_full (GstPad * pad, GstPadLinkFunction link,
1587     gpointer user_data, GDestroyNotify notify)
1588 {
1589   g_return_if_fail (GST_IS_PAD (pad));
1590
1591   if (pad->linknotify)
1592     pad->linknotify (pad->linkdata);
1593   GST_PAD_LINKFUNC (pad) = link;
1594   pad->linkdata = user_data;
1595   pad->linknotify = notify;
1596
1597   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "linkfunc set to %s",
1598       GST_DEBUG_FUNCPTR_NAME (link));
1599 }
1600
1601 /**
1602  * gst_pad_set_unlink_function_full:
1603  * @pad: a #GstPad.
1604  * @unlink: the #GstPadUnlinkFunction to set.
1605  * @user_data: user_data passed to @notify
1606  * @notify: notify called when @unlink will not be used anymore.
1607  *
1608  * Sets the given unlink function for the pad. It will be called
1609  * when the pad is unlinked.
1610  */
1611 void
1612 gst_pad_set_unlink_function_full (GstPad * pad, GstPadUnlinkFunction unlink,
1613     gpointer user_data, GDestroyNotify notify)
1614 {
1615   g_return_if_fail (GST_IS_PAD (pad));
1616
1617   if (pad->unlinknotify)
1618     pad->unlinknotify (pad->unlinkdata);
1619   GST_PAD_UNLINKFUNC (pad) = unlink;
1620   pad->unlinkdata = user_data;
1621   pad->unlinknotify = notify;
1622
1623   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "unlinkfunc set to %s",
1624       GST_DEBUG_FUNCPTR_NAME (unlink));
1625 }
1626
1627 /**
1628  * gst_pad_unlink:
1629  * @srcpad: the source #GstPad to unlink.
1630  * @sinkpad: the sink #GstPad to unlink.
1631  *
1632  * Unlinks the source pad from the sink pad. Will emit the #GstPad::unlinked
1633  * signal on both pads.
1634  *
1635  * Returns: TRUE if the pads were unlinked. This function returns FALSE if
1636  * the pads were not linked together.
1637  *
1638  * MT safe.
1639  */
1640 gboolean
1641 gst_pad_unlink (GstPad * srcpad, GstPad * sinkpad)
1642 {
1643   gboolean result = FALSE;
1644   GstElement *parent = NULL;
1645
1646   g_return_val_if_fail (GST_IS_PAD (srcpad), FALSE);
1647   g_return_val_if_fail (GST_PAD_IS_SRC (srcpad), FALSE);
1648   g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
1649   g_return_val_if_fail (GST_PAD_IS_SINK (sinkpad), FALSE);
1650
1651   GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "unlinking %s:%s(%p) and %s:%s(%p)",
1652       GST_DEBUG_PAD_NAME (srcpad), srcpad,
1653       GST_DEBUG_PAD_NAME (sinkpad), sinkpad);
1654
1655   /* We need to notify the parent before taking any pad locks as the bin in
1656    * question might be waiting for a lock on the pad while holding its lock
1657    * that our message will try to take. */
1658   if ((parent = GST_ELEMENT_CAST (gst_pad_get_parent (srcpad)))) {
1659     if (GST_IS_ELEMENT (parent)) {
1660       gst_element_post_message (parent,
1661           gst_message_new_structure_change (GST_OBJECT_CAST (sinkpad),
1662               GST_STRUCTURE_CHANGE_TYPE_PAD_UNLINK, parent, TRUE));
1663     } else {
1664       gst_object_unref (parent);
1665       parent = NULL;
1666     }
1667   }
1668
1669   GST_OBJECT_LOCK (srcpad);
1670   GST_OBJECT_LOCK (sinkpad);
1671
1672   if (G_UNLIKELY (GST_PAD_PEER (srcpad) != sinkpad))
1673     goto not_linked_together;
1674
1675   if (GST_PAD_UNLINKFUNC (srcpad)) {
1676     GST_PAD_UNLINKFUNC (srcpad) (srcpad);
1677   }
1678   if (GST_PAD_UNLINKFUNC (sinkpad)) {
1679     GST_PAD_UNLINKFUNC (sinkpad) (sinkpad);
1680   }
1681
1682   /* first clear peers */
1683   GST_PAD_PEER (srcpad) = NULL;
1684   GST_PAD_PEER (sinkpad) = NULL;
1685
1686   GST_OBJECT_UNLOCK (sinkpad);
1687   GST_OBJECT_UNLOCK (srcpad);
1688
1689   /* fire off a signal to each of the pads telling them
1690    * that they've been unlinked */
1691   g_signal_emit (srcpad, gst_pad_signals[PAD_UNLINKED], 0, sinkpad);
1692   g_signal_emit (sinkpad, gst_pad_signals[PAD_UNLINKED], 0, srcpad);
1693
1694   GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "unlinked %s:%s and %s:%s",
1695       GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
1696
1697   result = TRUE;
1698
1699 done:
1700   if (parent != NULL) {
1701     gst_element_post_message (parent,
1702         gst_message_new_structure_change (GST_OBJECT_CAST (sinkpad),
1703             GST_STRUCTURE_CHANGE_TYPE_PAD_UNLINK, parent, FALSE));
1704     gst_object_unref (parent);
1705   }
1706   return result;
1707
1708   /* ERRORS */
1709 not_linked_together:
1710   {
1711     /* we do not emit a warning in this case because unlinking cannot
1712      * be made MT safe.*/
1713     GST_OBJECT_UNLOCK (sinkpad);
1714     GST_OBJECT_UNLOCK (srcpad);
1715     goto done;
1716   }
1717 }
1718
1719 /**
1720  * gst_pad_is_linked:
1721  * @pad: pad to check
1722  *
1723  * Checks if a @pad is linked to another pad or not.
1724  *
1725  * Returns: TRUE if the pad is linked, FALSE otherwise.
1726  *
1727  * MT safe.
1728  */
1729 gboolean
1730 gst_pad_is_linked (GstPad * pad)
1731 {
1732   gboolean result;
1733
1734   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1735
1736   GST_OBJECT_LOCK (pad);
1737   result = (GST_PAD_PEER (pad) != NULL);
1738   GST_OBJECT_UNLOCK (pad);
1739
1740   return result;
1741 }
1742
1743 /* get the caps from both pads and see if the intersection
1744  * is not empty.
1745  *
1746  * This function should be called with the pad LOCK on both
1747  * pads
1748  */
1749 static gboolean
1750 gst_pad_link_check_compatible_unlocked (GstPad * src, GstPad * sink,
1751     GstPadLinkCheck flags)
1752 {
1753   GstCaps *srccaps = NULL;
1754   GstCaps *sinkcaps = NULL;
1755   gboolean compatible = FALSE;
1756
1757   if (!(flags & (GST_PAD_LINK_CHECK_CAPS | GST_PAD_LINK_CHECK_TEMPLATE_CAPS)))
1758     return TRUE;
1759
1760   /* Doing the expensive caps checking takes priority over only checking the template caps */
1761   if (flags & GST_PAD_LINK_CHECK_CAPS) {
1762     GST_OBJECT_UNLOCK (sink);
1763     GST_OBJECT_UNLOCK (src);
1764
1765     srccaps = gst_pad_query_caps (src, NULL);
1766     sinkcaps = gst_pad_query_caps (sink, NULL);
1767
1768     GST_OBJECT_LOCK (src);
1769     GST_OBJECT_LOCK (sink);
1770   } else {
1771     /* If one of the two pads doesn't have a template, consider the intersection
1772      * as valid.*/
1773     if (G_UNLIKELY ((GST_PAD_PAD_TEMPLATE (src) == NULL)
1774             || (GST_PAD_PAD_TEMPLATE (sink) == NULL))) {
1775       compatible = TRUE;
1776       goto done;
1777     }
1778     srccaps = gst_caps_ref (GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (src)));
1779     sinkcaps =
1780         gst_caps_ref (GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (sink)));
1781   }
1782
1783   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, src, "src caps %" GST_PTR_FORMAT,
1784       srccaps);
1785   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, sink, "sink caps %" GST_PTR_FORMAT,
1786       sinkcaps);
1787
1788   /* if we have caps on both pads we can check the intersection. If one
1789    * of the caps is NULL, we return TRUE. */
1790   if (G_UNLIKELY (srccaps == NULL || sinkcaps == NULL)) {
1791     if (srccaps)
1792       gst_caps_unref (srccaps);
1793     if (sinkcaps)
1794       gst_caps_unref (sinkcaps);
1795     goto done;
1796   }
1797
1798   compatible = gst_caps_can_intersect (srccaps, sinkcaps);
1799   gst_caps_unref (srccaps);
1800   gst_caps_unref (sinkcaps);
1801
1802 done:
1803   GST_CAT_DEBUG (GST_CAT_CAPS, "caps are %scompatible",
1804       (compatible ? "" : "not"));
1805
1806   return compatible;
1807 }
1808
1809 /* check if the grandparents of both pads are the same.
1810  * This check is required so that we don't try to link
1811  * pads from elements in different bins without ghostpads.
1812  *
1813  * The LOCK should be held on both pads
1814  */
1815 static gboolean
1816 gst_pad_link_check_hierarchy (GstPad * src, GstPad * sink)
1817 {
1818   GstObject *psrc, *psink;
1819
1820   psrc = GST_OBJECT_PARENT (src);
1821   psink = GST_OBJECT_PARENT (sink);
1822
1823   /* if one of the pads has no parent, we allow the link */
1824   if (G_UNLIKELY (psrc == NULL || psink == NULL))
1825     goto no_parent;
1826
1827   /* only care about parents that are elements */
1828   if (G_UNLIKELY (!GST_IS_ELEMENT (psrc) || !GST_IS_ELEMENT (psink)))
1829     goto no_element_parent;
1830
1831   /* if the parents are the same, we have a loop */
1832   if (G_UNLIKELY (psrc == psink))
1833     goto same_parents;
1834
1835   /* if they both have a parent, we check the grandparents. We can not lock
1836    * the parent because we hold on the child (pad) and the locking order is
1837    * parent >> child. */
1838   psrc = GST_OBJECT_PARENT (psrc);
1839   psink = GST_OBJECT_PARENT (psink);
1840
1841   /* if they have grandparents but they are not the same */
1842   if (G_UNLIKELY (psrc != psink))
1843     goto wrong_grandparents;
1844
1845   return TRUE;
1846
1847   /* ERRORS */
1848 no_parent:
1849   {
1850     GST_CAT_DEBUG (GST_CAT_CAPS,
1851         "one of the pads has no parent %" GST_PTR_FORMAT " and %"
1852         GST_PTR_FORMAT, psrc, psink);
1853     return TRUE;
1854   }
1855 no_element_parent:
1856   {
1857     GST_CAT_DEBUG (GST_CAT_CAPS,
1858         "one of the pads has no element parent %" GST_PTR_FORMAT " and %"
1859         GST_PTR_FORMAT, psrc, psink);
1860     return TRUE;
1861   }
1862 same_parents:
1863   {
1864     GST_CAT_DEBUG (GST_CAT_CAPS, "pads have same parent %" GST_PTR_FORMAT,
1865         psrc);
1866     return FALSE;
1867   }
1868 wrong_grandparents:
1869   {
1870     GST_CAT_DEBUG (GST_CAT_CAPS,
1871         "pads have different grandparents %" GST_PTR_FORMAT " and %"
1872         GST_PTR_FORMAT, psrc, psink);
1873     return FALSE;
1874   }
1875 }
1876
1877 /* FIXME leftover from an attempt at refactoring... */
1878 /* call with the two pads unlocked, when this function returns GST_PAD_LINK_OK,
1879  * the two pads will be locked in the srcpad, sinkpad order. */
1880 static GstPadLinkReturn
1881 gst_pad_link_prepare (GstPad * srcpad, GstPad * sinkpad, GstPadLinkCheck flags)
1882 {
1883   GST_CAT_INFO (GST_CAT_PADS, "trying to link %s:%s and %s:%s",
1884       GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
1885
1886   GST_OBJECT_LOCK (srcpad);
1887
1888   if (G_UNLIKELY (GST_PAD_PEER (srcpad) != NULL))
1889     goto src_was_linked;
1890
1891   GST_OBJECT_LOCK (sinkpad);
1892
1893   if (G_UNLIKELY (GST_PAD_PEER (sinkpad) != NULL))
1894     goto sink_was_linked;
1895
1896   /* check hierarchy, pads can only be linked if the grandparents
1897    * are the same. */
1898   if ((flags & GST_PAD_LINK_CHECK_HIERARCHY)
1899       && !gst_pad_link_check_hierarchy (srcpad, sinkpad))
1900     goto wrong_hierarchy;
1901
1902   /* check pad caps for non-empty intersection */
1903   if (!gst_pad_link_check_compatible_unlocked (srcpad, sinkpad, flags))
1904     goto no_format;
1905
1906   /* FIXME check pad scheduling for non-empty intersection */
1907
1908   return GST_PAD_LINK_OK;
1909
1910 src_was_linked:
1911   {
1912     GST_CAT_INFO (GST_CAT_PADS, "src %s:%s was already linked to %s:%s",
1913         GST_DEBUG_PAD_NAME (srcpad),
1914         GST_DEBUG_PAD_NAME (GST_PAD_PEER (srcpad)));
1915     /* we do not emit a warning in this case because unlinking cannot
1916      * be made MT safe.*/
1917     GST_OBJECT_UNLOCK (srcpad);
1918     return GST_PAD_LINK_WAS_LINKED;
1919   }
1920 sink_was_linked:
1921   {
1922     GST_CAT_INFO (GST_CAT_PADS, "sink %s:%s was already linked to %s:%s",
1923         GST_DEBUG_PAD_NAME (sinkpad),
1924         GST_DEBUG_PAD_NAME (GST_PAD_PEER (sinkpad)));
1925     /* we do not emit a warning in this case because unlinking cannot
1926      * be made MT safe.*/
1927     GST_OBJECT_UNLOCK (sinkpad);
1928     GST_OBJECT_UNLOCK (srcpad);
1929     return GST_PAD_LINK_WAS_LINKED;
1930   }
1931 wrong_hierarchy:
1932   {
1933     GST_CAT_INFO (GST_CAT_PADS, "pads have wrong hierarchy");
1934     GST_OBJECT_UNLOCK (sinkpad);
1935     GST_OBJECT_UNLOCK (srcpad);
1936     return GST_PAD_LINK_WRONG_HIERARCHY;
1937   }
1938 no_format:
1939   {
1940     GST_CAT_INFO (GST_CAT_PADS, "caps are incompatible");
1941     GST_OBJECT_UNLOCK (sinkpad);
1942     GST_OBJECT_UNLOCK (srcpad);
1943     return GST_PAD_LINK_NOFORMAT;
1944   }
1945 }
1946
1947 /**
1948  * gst_pad_can_link:
1949  * @srcpad: the source #GstPad.
1950  * @sinkpad: the sink #GstPad.
1951  *
1952  * Checks if the source pad and the sink pad are compatible so they can be
1953  * linked.
1954  *
1955  * Returns: TRUE if the pads can be linked.
1956  */
1957 gboolean
1958 gst_pad_can_link (GstPad * srcpad, GstPad * sinkpad)
1959 {
1960   GstPadLinkReturn result;
1961
1962   /* generic checks */
1963   g_return_val_if_fail (GST_IS_PAD (srcpad), FALSE);
1964   g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
1965
1966   GST_CAT_INFO (GST_CAT_PADS, "check if %s:%s can link with %s:%s",
1967       GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
1968
1969   /* gst_pad_link_prepare does everything for us, we only release the locks
1970    * on the pads that it gets us. If this function returns !OK the locks are not
1971    * taken anymore. */
1972   result = gst_pad_link_prepare (srcpad, sinkpad, GST_PAD_LINK_CHECK_DEFAULT);
1973   if (result != GST_PAD_LINK_OK)
1974     goto done;
1975
1976   GST_OBJECT_UNLOCK (srcpad);
1977   GST_OBJECT_UNLOCK (sinkpad);
1978
1979 done:
1980   return result == GST_PAD_LINK_OK;
1981 }
1982
1983 /**
1984  * gst_pad_link_full:
1985  * @srcpad: the source #GstPad to link.
1986  * @sinkpad: the sink #GstPad to link.
1987  * @flags: the checks to validate when linking
1988  *
1989  * Links the source pad and the sink pad.
1990  *
1991  * This variant of #gst_pad_link provides a more granular control on the
1992  * checks being done when linking. While providing some considerable speedups
1993  * the caller of this method must be aware that wrong usage of those flags
1994  * can cause severe issues. Refer to the documentation of #GstPadLinkCheck
1995  * for more information.
1996  *
1997  * MT Safe.
1998  *
1999  * Returns: A result code indicating if the connection worked or
2000  *          what went wrong.
2001  *
2002  * Since: 0.10.30
2003  */
2004 GstPadLinkReturn
2005 gst_pad_link_full (GstPad * srcpad, GstPad * sinkpad, GstPadLinkCheck flags)
2006 {
2007   GstPadLinkReturn result;
2008   GstElement *parent;
2009   GstPadLinkFunction srcfunc, sinkfunc;
2010
2011   g_return_val_if_fail (GST_IS_PAD (srcpad), GST_PAD_LINK_REFUSED);
2012   g_return_val_if_fail (GST_PAD_IS_SRC (srcpad), GST_PAD_LINK_WRONG_DIRECTION);
2013   g_return_val_if_fail (GST_IS_PAD (sinkpad), GST_PAD_LINK_REFUSED);
2014   g_return_val_if_fail (GST_PAD_IS_SINK (sinkpad),
2015       GST_PAD_LINK_WRONG_DIRECTION);
2016
2017   /* Notify the parent early. See gst_pad_unlink for details. */
2018   if (G_LIKELY ((parent = GST_ELEMENT_CAST (gst_pad_get_parent (srcpad))))) {
2019     if (G_LIKELY (GST_IS_ELEMENT (parent))) {
2020       gst_element_post_message (parent,
2021           gst_message_new_structure_change (GST_OBJECT_CAST (sinkpad),
2022               GST_STRUCTURE_CHANGE_TYPE_PAD_LINK, parent, TRUE));
2023     } else {
2024       gst_object_unref (parent);
2025       parent = NULL;
2026     }
2027   }
2028
2029   /* prepare will also lock the two pads */
2030   result = gst_pad_link_prepare (srcpad, sinkpad, flags);
2031
2032   if (G_UNLIKELY (result != GST_PAD_LINK_OK))
2033     goto done;
2034
2035   /* must set peers before calling the link function */
2036   GST_PAD_PEER (srcpad) = sinkpad;
2037   GST_PAD_PEER (sinkpad) = srcpad;
2038
2039   /* check events, when something is different, mark pending */
2040   schedule_events (srcpad, sinkpad);
2041
2042   /* get the link functions */
2043   srcfunc = GST_PAD_LINKFUNC (srcpad);
2044   sinkfunc = GST_PAD_LINKFUNC (sinkpad);
2045
2046   if (G_UNLIKELY (srcfunc || sinkfunc)) {
2047     /* custom link functions, execute them */
2048     GST_OBJECT_UNLOCK (sinkpad);
2049     GST_OBJECT_UNLOCK (srcpad);
2050
2051     if (srcfunc) {
2052       /* this one will call the peer link function */
2053       result = srcfunc (srcpad, sinkpad);
2054     } else if (sinkfunc) {
2055       /* if no source link function, we need to call the sink link
2056        * function ourselves. */
2057       result = sinkfunc (sinkpad, srcpad);
2058     }
2059
2060     GST_OBJECT_LOCK (srcpad);
2061     GST_OBJECT_LOCK (sinkpad);
2062
2063     /* we released the lock, check if the same pads are linked still */
2064     if (GST_PAD_PEER (srcpad) != sinkpad || GST_PAD_PEER (sinkpad) != srcpad)
2065       goto concurrent_link;
2066
2067     if (G_UNLIKELY (result != GST_PAD_LINK_OK))
2068       goto link_failed;
2069   }
2070   GST_OBJECT_UNLOCK (sinkpad);
2071   GST_OBJECT_UNLOCK (srcpad);
2072
2073   /* fire off a signal to each of the pads telling them
2074    * that they've been linked */
2075   g_signal_emit (srcpad, gst_pad_signals[PAD_LINKED], 0, sinkpad);
2076   g_signal_emit (sinkpad, gst_pad_signals[PAD_LINKED], 0, srcpad);
2077
2078   GST_CAT_INFO (GST_CAT_PADS, "linked %s:%s and %s:%s, successful",
2079       GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
2080
2081   gst_pad_send_event (srcpad, gst_event_new_reconfigure ());
2082
2083 done:
2084   if (G_LIKELY (parent)) {
2085     gst_element_post_message (parent,
2086         gst_message_new_structure_change (GST_OBJECT_CAST (sinkpad),
2087             GST_STRUCTURE_CHANGE_TYPE_PAD_LINK, parent, FALSE));
2088     gst_object_unref (parent);
2089   }
2090
2091   return result;
2092
2093   /* ERRORS */
2094 concurrent_link:
2095   {
2096     GST_CAT_INFO (GST_CAT_PADS, "concurrent link between %s:%s and %s:%s",
2097         GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
2098     GST_OBJECT_UNLOCK (sinkpad);
2099     GST_OBJECT_UNLOCK (srcpad);
2100
2101     /* The other link operation succeeded first */
2102     result = GST_PAD_LINK_WAS_LINKED;
2103     goto done;
2104   }
2105 link_failed:
2106   {
2107     GST_CAT_INFO (GST_CAT_PADS, "link between %s:%s and %s:%s failed",
2108         GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
2109
2110     GST_PAD_PEER (srcpad) = NULL;
2111     GST_PAD_PEER (sinkpad) = NULL;
2112
2113     GST_OBJECT_UNLOCK (sinkpad);
2114     GST_OBJECT_UNLOCK (srcpad);
2115
2116     goto done;
2117   }
2118 }
2119
2120 /**
2121  * gst_pad_link:
2122  * @srcpad: the source #GstPad to link.
2123  * @sinkpad: the sink #GstPad to link.
2124  *
2125  * Links the source pad and the sink pad.
2126  *
2127  * Returns: A result code indicating if the connection worked or
2128  *          what went wrong.
2129  *
2130  * MT Safe.
2131  */
2132 GstPadLinkReturn
2133 gst_pad_link (GstPad * srcpad, GstPad * sinkpad)
2134 {
2135   return gst_pad_link_full (srcpad, sinkpad, GST_PAD_LINK_CHECK_DEFAULT);
2136 }
2137
2138 static void
2139 gst_pad_set_pad_template (GstPad * pad, GstPadTemplate * templ)
2140 {
2141   GstPadTemplate **template_p;
2142
2143   /* this function would need checks if it weren't static */
2144
2145   GST_OBJECT_LOCK (pad);
2146   template_p = &pad->padtemplate;
2147   gst_object_replace ((GstObject **) template_p, (GstObject *) templ);
2148   GST_OBJECT_UNLOCK (pad);
2149
2150   if (templ)
2151     gst_pad_template_pad_created (templ, pad);
2152 }
2153
2154 /**
2155  * gst_pad_get_pad_template:
2156  * @pad: a #GstPad.
2157  *
2158  * Gets the template for @pad.
2159  *
2160  * Returns: (transfer full): the #GstPadTemplate from which this pad was
2161  *     instantiated, or %NULL if this pad has no template. Unref after
2162  *     usage.
2163  */
2164 GstPadTemplate *
2165 gst_pad_get_pad_template (GstPad * pad)
2166 {
2167   GstPadTemplate *templ;
2168
2169   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2170
2171   templ = GST_PAD_PAD_TEMPLATE (pad);
2172
2173   return (templ ? gst_object_ref (templ) : NULL);
2174 }
2175
2176 /**
2177  * gst_pad_has_current_caps:
2178  * @pad: a  #GstPad to check
2179  *
2180  * Check if @pad has caps set on it with a #GST_EVENT_CAPS event.
2181  *
2182  * Returns: TRUE when @pad has caps associated with it.
2183  */
2184 gboolean
2185 gst_pad_has_current_caps (GstPad * pad)
2186 {
2187   gboolean result;
2188   GstCaps *caps;
2189
2190   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2191
2192   GST_OBJECT_LOCK (pad);
2193   caps = get_pad_caps (pad);
2194   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2195       "check current pad caps %" GST_PTR_FORMAT, caps);
2196   result = (caps != NULL);
2197   GST_OBJECT_UNLOCK (pad);
2198
2199   return result;
2200 }
2201
2202 /**
2203  * gst_pad_get_current_caps:
2204  * @pad: a  #GstPad to get the current capabilities of.
2205  *
2206  * Gets the capabilities currently configured on @pad with the last
2207  * #GST_EVENT_CAPS event.
2208  *
2209  * Returns: the current caps of the pad with incremented ref-count.
2210  */
2211 GstCaps *
2212 gst_pad_get_current_caps (GstPad * pad)
2213 {
2214   GstCaps *result;
2215
2216   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2217
2218   GST_OBJECT_LOCK (pad);
2219   if ((result = get_pad_caps (pad)))
2220     gst_caps_ref (result);
2221   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2222       "get current pad caps %" GST_PTR_FORMAT, result);
2223   GST_OBJECT_UNLOCK (pad);
2224
2225   return result;
2226 }
2227
2228 /**
2229  * gst_pad_set_caps:
2230  * @pad: a  #GstPad to set the capabilities of.
2231  * @caps: (transfer none): a #GstCaps to set.
2232  *
2233  * Sets the capabilities of this pad. The caps must be fixed. Any previous
2234  * caps on the pad will be unreffed. This function refs the caps so you should
2235  * unref if as soon as you don't need it anymore.
2236  * It is possible to set NULL caps, which will make the pad unnegotiated
2237  * again.
2238  *
2239  * Returns: TRUE if the caps could be set. FALSE if the caps were not fixed
2240  * or bad parameters were provided to this function.
2241  *
2242  * MT safe.
2243  */
2244 gboolean
2245 gst_pad_set_caps (GstPad * pad, GstCaps * caps)
2246 {
2247   GstEvent *event;
2248   gboolean res = TRUE;
2249
2250   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2251   g_return_val_if_fail (caps != NULL && gst_caps_is_fixed (caps), FALSE);
2252
2253   event = gst_event_new_caps (caps);
2254
2255   if (GST_PAD_IS_SRC (pad))
2256     res = gst_pad_push_event (pad, event);
2257   else
2258     res = gst_pad_send_event (pad, event);
2259
2260   return res;
2261 }
2262
2263 /**
2264  * gst_pad_get_pad_template_caps:
2265  * @pad: a #GstPad to get the template capabilities from.
2266  *
2267  * Gets the capabilities for @pad's template.
2268  *
2269  * Returns: (transfer full): the #GstCaps of this pad template.
2270  * Unref after usage.
2271  */
2272 GstCaps *
2273 gst_pad_get_pad_template_caps (GstPad * pad)
2274 {
2275   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2276
2277   if (GST_PAD_PAD_TEMPLATE (pad))
2278     return gst_pad_template_get_caps (GST_PAD_PAD_TEMPLATE (pad));
2279
2280   return gst_caps_ref (GST_CAPS_ANY);
2281 }
2282
2283 /**
2284  * gst_pad_get_peer:
2285  * @pad: a #GstPad to get the peer of.
2286  *
2287  * Gets the peer of @pad. This function refs the peer pad so
2288  * you need to unref it after use.
2289  *
2290  * Returns: (transfer full): the peer #GstPad. Unref after usage.
2291  *
2292  * MT safe.
2293  */
2294 GstPad *
2295 gst_pad_get_peer (GstPad * pad)
2296 {
2297   GstPad *result;
2298
2299   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2300
2301   GST_OBJECT_LOCK (pad);
2302   result = GST_PAD_PEER (pad);
2303   if (result)
2304     gst_object_ref (result);
2305   GST_OBJECT_UNLOCK (pad);
2306
2307   return result;
2308 }
2309
2310 /**
2311  * gst_pad_get_allowed_caps:
2312  * @pad: a #GstPad.
2313  *
2314  * Gets the capabilities of the allowed media types that can flow through
2315  * @pad and its peer.
2316  *
2317  * The allowed capabilities is calculated as the intersection of the results of
2318  * calling gst_pad_query_caps() on @pad and its peer. The caller owns a reference
2319  * on the resulting caps.
2320  *
2321  * Returns: (transfer full): the allowed #GstCaps of the pad link. Unref the
2322  *     caps when you no longer need it. This function returns NULL when @pad
2323  *     has no peer.
2324  *
2325  * MT safe.
2326  */
2327 GstCaps *
2328 gst_pad_get_allowed_caps (GstPad * pad)
2329 {
2330   GstCaps *mycaps;
2331   GstCaps *caps;
2332   GstCaps *peercaps;
2333   GstPad *peer;
2334
2335   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2336
2337   GST_OBJECT_LOCK (pad);
2338   peer = GST_PAD_PEER (pad);
2339   if (G_UNLIKELY (peer == NULL))
2340     goto no_peer;
2341
2342   GST_CAT_DEBUG_OBJECT (GST_CAT_PROPERTIES, pad, "getting allowed caps");
2343
2344   gst_object_ref (peer);
2345   GST_OBJECT_UNLOCK (pad);
2346   mycaps = gst_pad_query_caps (pad, NULL);
2347
2348   peercaps = gst_pad_query_caps (peer, NULL);
2349   gst_object_unref (peer);
2350
2351   caps = gst_caps_intersect (mycaps, peercaps);
2352   gst_caps_unref (peercaps);
2353   gst_caps_unref (mycaps);
2354
2355   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "allowed caps %" GST_PTR_FORMAT,
2356       caps);
2357
2358   return caps;
2359
2360 no_peer:
2361   {
2362     GST_CAT_DEBUG_OBJECT (GST_CAT_PROPERTIES, pad, "no peer");
2363     GST_OBJECT_UNLOCK (pad);
2364
2365     return NULL;
2366   }
2367 }
2368
2369 /**
2370  * gst_pad_iterate_internal_links_default:
2371  * @pad: the #GstPad to get the internal links of.
2372  * @parent: the parent of @pad or NULL
2373  *
2374  * Iterate the list of pads to which the given pad is linked to inside of
2375  * the parent element.
2376  * This is the default handler, and thus returns an iterator of all of the
2377  * pads inside the parent element with opposite direction.
2378  *
2379  * The caller must free this iterator after use with gst_iterator_free().
2380  *
2381  * Returns: a #GstIterator of #GstPad, or NULL if @pad has no parent. Unref each
2382  * returned pad with gst_object_unref().
2383  *
2384  * Since: 0.10.21
2385  */
2386 GstIterator *
2387 gst_pad_iterate_internal_links_default (GstPad * pad, GstObject * parent)
2388 {
2389   GstIterator *res;
2390   GList **padlist;
2391   guint32 *cookie;
2392   GMutex *lock;
2393   gpointer owner;
2394   GstElement *eparent;
2395
2396   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2397
2398   if (parent != NULL && GST_IS_ELEMENT (parent)) {
2399     eparent = GST_ELEMENT_CAST (gst_object_ref (parent));
2400   } else {
2401     GST_OBJECT_LOCK (pad);
2402     eparent = GST_PAD_PARENT (pad);
2403     if (!eparent || !GST_IS_ELEMENT (eparent))
2404       goto no_parent;
2405
2406     gst_object_ref (eparent);
2407     GST_OBJECT_UNLOCK (pad);
2408   }
2409
2410   if (pad->direction == GST_PAD_SRC)
2411     padlist = &eparent->sinkpads;
2412   else
2413     padlist = &eparent->srcpads;
2414
2415   GST_DEBUG_OBJECT (pad, "Making iterator");
2416
2417   cookie = &eparent->pads_cookie;
2418   owner = eparent;
2419   lock = GST_OBJECT_GET_LOCK (eparent);
2420
2421   res = gst_iterator_new_list (GST_TYPE_PAD,
2422       lock, cookie, padlist, (GObject *) owner, NULL);
2423
2424   gst_object_unref (owner);
2425
2426   return res;
2427
2428   /* ERRORS */
2429 no_parent:
2430   {
2431     GST_OBJECT_UNLOCK (pad);
2432     GST_DEBUG_OBJECT (pad, "no parent element");
2433     return NULL;
2434   }
2435 }
2436
2437 /**
2438  * gst_pad_iterate_internal_links:
2439  * @pad: the GstPad to get the internal links of.
2440  *
2441  * Gets an iterator for the pads to which the given pad is linked to inside
2442  * of the parent element.
2443  *
2444  * Each #GstPad element yielded by the iterator will have its refcount increased,
2445  * so unref after use.
2446  *
2447  * Free-function: gst_iterator_free
2448  *
2449  * Returns: (transfer full): a new #GstIterator of #GstPad or %NULL when the
2450  *     pad does not have an iterator function configured. Use
2451  *     gst_iterator_free() after usage.
2452  *
2453  * Since: 0.10.21
2454  */
2455 GstIterator *
2456 gst_pad_iterate_internal_links (GstPad * pad)
2457 {
2458   GstIterator *res = NULL;
2459   GstObject *parent;
2460
2461   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2462
2463   GST_OBJECT_LOCK (pad);
2464   ACQUIRE_PARENT (pad, parent, no_parent);
2465   GST_OBJECT_UNLOCK (pad);
2466
2467   if (GST_PAD_ITERINTLINKFUNC (pad))
2468     res = GST_PAD_ITERINTLINKFUNC (pad) (pad, parent);
2469
2470   RELEASE_PARENT (parent);
2471
2472   return res;
2473
2474   /* ERRORS */
2475 no_parent:
2476   {
2477     GST_DEBUG_OBJECT (pad, "no parent");
2478     GST_OBJECT_UNLOCK (pad);
2479     return FALSE;
2480   }
2481 }
2482
2483 /**
2484  * gst_pad_forward:
2485  * @pad: a #GstPad
2486  * @forward: a #GstPadForwardFunction
2487  * @user_data: user data passed to @forward
2488  *
2489  * Calls @forward for all internally linked pads of @pad. This function deals with
2490  * dynamically changing internal pads and will make sure that the @forward
2491  * function is only called once for each pad.
2492  *
2493  * When @forward returns TRUE, no further pads will be processed.
2494  *
2495  * Returns: TRUE if one of the dispatcher functions returned TRUE.
2496  */
2497 gboolean
2498 gst_pad_forward (GstPad * pad, GstPadForwardFunction forward,
2499     gpointer user_data)
2500 {
2501   gboolean result = FALSE;
2502   GstIterator *iter;
2503   gboolean done = FALSE;
2504   GValue item = { 0, };
2505   GList *pushed_pads = NULL;
2506
2507   iter = gst_pad_iterate_internal_links (pad);
2508
2509   if (!iter)
2510     goto no_iter;
2511
2512   while (!done) {
2513     switch (gst_iterator_next (iter, &item)) {
2514       case GST_ITERATOR_OK:
2515       {
2516         GstPad *intpad;
2517
2518         intpad = g_value_get_object (&item);
2519
2520         /* if already pushed, skip. FIXME, find something faster to tag pads */
2521         if (intpad == NULL || g_list_find (pushed_pads, intpad)) {
2522           g_value_reset (&item);
2523           break;
2524         }
2525
2526         GST_LOG_OBJECT (pad, "calling forward function on pad %s:%s",
2527             GST_DEBUG_PAD_NAME (intpad));
2528         done = result = forward (intpad, user_data);
2529
2530         pushed_pads = g_list_prepend (pushed_pads, intpad);
2531
2532         g_value_reset (&item);
2533         break;
2534       }
2535       case GST_ITERATOR_RESYNC:
2536         /* We don't reset the result here because we don't push the event
2537          * again on pads that got the event already and because we need
2538          * to consider the result of the previous pushes */
2539         gst_iterator_resync (iter);
2540         break;
2541       case GST_ITERATOR_ERROR:
2542         GST_ERROR_OBJECT (pad, "Could not iterate over internally linked pads");
2543         done = TRUE;
2544         break;
2545       case GST_ITERATOR_DONE:
2546         done = TRUE;
2547         break;
2548     }
2549   }
2550   g_value_unset (&item);
2551   gst_iterator_free (iter);
2552
2553   g_list_free (pushed_pads);
2554
2555 no_iter:
2556   return result;
2557 }
2558
2559 typedef struct
2560 {
2561   GstEvent *event;
2562   gboolean result;
2563   gboolean dispatched;
2564 } EventData;
2565
2566 static gboolean
2567 event_forward_func (GstPad * pad, EventData * data)
2568 {
2569   /* for each pad we send to, we should ref the event; it's up
2570    * to downstream to unref again when handled. */
2571   GST_LOG_OBJECT (pad, "Reffing and pushing event %p (%s) to %s:%s",
2572       data->event, GST_EVENT_TYPE_NAME (data->event), GST_DEBUG_PAD_NAME (pad));
2573
2574   data->result |= gst_pad_push_event (pad, gst_event_ref (data->event));
2575
2576   data->dispatched = TRUE;
2577
2578   /* don't stop */
2579   return FALSE;
2580 }
2581
2582 /**
2583  * gst_pad_event_default:
2584  * @pad: a #GstPad to call the default event handler on.
2585  * @parent: the parent of @pad or NULL
2586  * @event: (transfer full): the #GstEvent to handle.
2587  *
2588  * Invokes the default event handler for the given pad.
2589  *
2590  * The EOS event will pause the task associated with @pad before it is forwarded
2591  * to all internally linked pads,
2592  *
2593  * The the event is sent to all pads internally linked to @pad. This function
2594  * takes ownership of @event.
2595  *
2596  * Returns: TRUE if the event was sent successfully.
2597  */
2598 gboolean
2599 gst_pad_event_default (GstPad * pad, GstObject * parent, GstEvent * event)
2600 {
2601   gboolean result, forward = TRUE;
2602
2603   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2604   g_return_val_if_fail (event != NULL, FALSE);
2605
2606   GST_LOG_OBJECT (pad, "default event handler");
2607
2608   switch (GST_EVENT_TYPE (event)) {
2609     case GST_EVENT_EOS:
2610     {
2611       GST_DEBUG_OBJECT (pad, "pausing task because of eos");
2612       gst_pad_pause_task (pad);
2613       break;
2614     }
2615     case GST_EVENT_CAPS:
2616       forward = GST_PAD_IS_PROXY_CAPS (pad);
2617       result = TRUE;
2618       break;
2619     default:
2620       break;
2621   }
2622
2623   if (forward) {
2624     EventData data;
2625
2626     data.event = event;
2627     data.dispatched = FALSE;
2628     data.result = FALSE;
2629
2630     gst_pad_forward (pad, (GstPadForwardFunction) event_forward_func, &data);
2631
2632     /* for sinkpads without a parent element or without internal links, nothing
2633      * will be dispatched but we still want to return TRUE. */
2634     if (data.dispatched)
2635       result = data.result;
2636     else
2637       result = TRUE;
2638   }
2639
2640   gst_event_unref (event);
2641
2642   return result;
2643 }
2644
2645 /* Default accept caps implementation just checks against
2646  * the allowed caps for the pad */
2647 static gboolean
2648 gst_pad_query_accept_caps_default (GstPad * pad, GstQuery * query)
2649 {
2650   /* get the caps and see if it intersects to something not empty */
2651   GstCaps *caps, *allowed;
2652   gboolean result;
2653
2654   GST_DEBUG_OBJECT (pad, "query accept-caps %" GST_PTR_FORMAT, query);
2655
2656   /* first forward the query to internally linked pads when we are dealing with
2657    * a PROXY CAPS */
2658   if (GST_PAD_IS_PROXY_CAPS (pad)) {
2659     if ((result = gst_pad_proxy_query_accept_caps (pad, query))) {
2660       goto done;
2661     }
2662   }
2663
2664   GST_CAT_DEBUG_OBJECT (GST_CAT_PERFORMANCE, pad,
2665       "fallback ACCEPT_CAPS query, consider implementing a specialized version");
2666
2667   allowed = gst_pad_query_caps (pad, NULL);
2668   gst_query_parse_accept_caps (query, &caps);
2669
2670   if (allowed) {
2671     GST_DEBUG_OBJECT (pad, "allowed caps %" GST_PTR_FORMAT, allowed);
2672     result = gst_caps_is_subset (caps, allowed);
2673     gst_caps_unref (allowed);
2674   } else {
2675     GST_DEBUG_OBJECT (pad, "no caps allowed on the pad");
2676     result = FALSE;
2677   }
2678   gst_query_set_accept_caps_result (query, result);
2679
2680 done:
2681   return TRUE;
2682 }
2683
2684 /* Default caps implementation */
2685 static gboolean
2686 gst_pad_query_caps_default (GstPad * pad, GstQuery * query)
2687 {
2688   GstCaps *result = NULL, *filter;
2689   GstPadTemplate *templ;
2690   gboolean fixed_caps;
2691
2692   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "get pad caps");
2693
2694   gst_query_parse_caps (query, &filter);
2695
2696   /* first try to proxy if we must */
2697   if (GST_PAD_IS_PROXY_CAPS (pad)) {
2698     if ((gst_pad_proxy_query_caps (pad, query))) {
2699       gst_query_parse_caps_result (query, &result);
2700       goto filter_done;
2701     }
2702   }
2703
2704   /* no proxy or it failed, do default handling */
2705   fixed_caps = GST_PAD_IS_FIXED_CAPS (pad);
2706
2707   GST_OBJECT_LOCK (pad);
2708   if (fixed_caps) {
2709     /* fixed caps, try the negotiated caps first */
2710     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "fixed pad caps: trying pad caps");
2711     if ((result = get_pad_caps (pad)))
2712       goto filter_done_unlock;
2713   }
2714
2715   if ((templ = GST_PAD_PAD_TEMPLATE (pad))) {
2716     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "trying pad template caps");
2717     if ((result = GST_PAD_TEMPLATE_CAPS (templ)))
2718       goto filter_done_unlock;
2719   }
2720
2721   if (!fixed_caps) {
2722     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2723         "non-fixed pad caps: trying pad caps");
2724     /* non fixed caps, try the negotiated caps */
2725     if ((result = get_pad_caps (pad)))
2726       goto filter_done_unlock;
2727   }
2728
2729   /* this almost never happens */
2730   GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "pad has no caps");
2731   result = GST_CAPS_ANY;
2732
2733 filter_done_unlock:
2734   GST_OBJECT_UNLOCK (pad);
2735
2736 filter_done:
2737   /* run the filter on the result */
2738   if (filter) {
2739     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2740         "using caps %p %" GST_PTR_FORMAT " with filter %p %"
2741         GST_PTR_FORMAT, result, result, filter, filter);
2742     result = gst_caps_intersect_full (filter, result, GST_CAPS_INTERSECT_FIRST);
2743     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "result %p %" GST_PTR_FORMAT,
2744         result, result);
2745   } else {
2746     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2747         "using caps %p %" GST_PTR_FORMAT, result, result);
2748     result = gst_caps_ref (result);
2749   }
2750
2751   gst_query_set_caps_result (query, result);
2752   gst_caps_unref (result);
2753
2754   return TRUE;
2755 }
2756
2757 /**
2758  * gst_pad_query_default:
2759  * @pad: a #GstPad to call the default query handler on.
2760  * @parent: the parent of @pad or NULL
2761  * @query: (transfer none): the #GstQuery to handle.
2762  *
2763  * Invokes the default query handler for the given pad.
2764  * The query is sent to all pads internally linked to @pad. Note that
2765  * if there are many possible sink pads that are internally linked to
2766  * @pad, only one will be sent the query.
2767  * Multi-sinkpad elements should implement custom query handlers.
2768  *
2769  * Returns: TRUE if the query was performed successfully.
2770  */
2771 gboolean
2772 gst_pad_query_default (GstPad * pad, GstObject * parent, GstQuery * query)
2773 {
2774   gboolean forward, ret = FALSE;
2775
2776   switch (GST_QUERY_TYPE (query)) {
2777     case GST_QUERY_SCHEDULING:
2778       forward = FALSE;
2779       break;
2780     case GST_QUERY_ALLOCATION:
2781       forward = GST_PAD_IS_PROXY_ALLOCATION (pad);
2782       break;
2783     case GST_QUERY_ACCEPT_CAPS:
2784       ret = gst_pad_query_accept_caps_default (pad, query);
2785       forward = FALSE;
2786       break;
2787     case GST_QUERY_CAPS:
2788       ret = gst_pad_query_caps_default (pad, query);
2789       forward = FALSE;
2790       break;
2791     case GST_QUERY_POSITION:
2792     case GST_QUERY_SEEKING:
2793     case GST_QUERY_FORMATS:
2794     case GST_QUERY_LATENCY:
2795     case GST_QUERY_JITTER:
2796     case GST_QUERY_RATE:
2797     case GST_QUERY_CONVERT:
2798     default:
2799       forward = TRUE;
2800       break;
2801   }
2802
2803   if (forward) {
2804     ret = gst_pad_forward
2805         (pad, (GstPadForwardFunction) gst_pad_peer_query, query);
2806   }
2807   return ret;
2808 }
2809
2810 static void
2811 probe_hook_marshal (GHook * hook, ProbeMarshall * data)
2812 {
2813   GstPad *pad = data->pad;
2814   GstPadProbeInfo *info = data->info;
2815   GstPadProbeType type, flags;
2816   GstPadProbeCallback callback;
2817   GstPadProbeReturn ret;
2818
2819   /* if we have called this callback, do nothing */
2820   if (PROBE_COOKIE (hook) == data->cookie) {
2821     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
2822         "hook %lu, cookie %u already called", hook->hook_id,
2823         PROBE_COOKIE (hook));
2824     return;
2825   }
2826
2827   PROBE_COOKIE (hook) = data->cookie;
2828
2829   flags = hook->flags >> G_HOOK_FLAG_USER_SHIFT;
2830   type = info->type;
2831
2832   /* one of the data types */
2833   if ((flags & GST_PAD_PROBE_TYPE_ALL_BOTH & type) == 0)
2834     goto no_match;
2835   /* one of the scheduling types */
2836   if ((flags & GST_PAD_PROBE_TYPE_SCHEDULING & type) == 0)
2837     goto no_match;
2838   /* one of the blocking types must match */
2839   if ((type & GST_PAD_PROBE_TYPE_BLOCKING) &&
2840       (flags & GST_PAD_PROBE_TYPE_BLOCKING & type) == 0)
2841     goto no_match;
2842   /* only probes that have GST_PAD_PROBE_TYPE_EVENT_FLUSH set */
2843   if ((type & GST_PAD_PROBE_TYPE_EVENT_FLUSH) &&
2844       (flags & GST_PAD_PROBE_TYPE_EVENT_FLUSH & type) == 0)
2845     goto no_match;
2846
2847   GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
2848       "hook %lu, cookie %u with flags 0x%08x matches", hook->hook_id,
2849       PROBE_COOKIE (hook), flags);
2850
2851   data->marshalled = TRUE;
2852
2853   callback = (GstPadProbeCallback) hook->func;
2854   if (callback == NULL)
2855     return;
2856
2857   info->id = hook->hook_id;
2858
2859   GST_OBJECT_UNLOCK (pad);
2860
2861   ret = callback (pad, info, hook->data);
2862
2863   GST_OBJECT_LOCK (pad);
2864
2865   switch (ret) {
2866     case GST_PAD_PROBE_REMOVE:
2867       /* remove the probe */
2868       GST_DEBUG_OBJECT (pad, "asked to remove hook");
2869       cleanup_hook (pad, hook);
2870       break;
2871     case GST_PAD_PROBE_DROP:
2872       /* need to drop the data, make sure other probes don't get called
2873        * anymore */
2874       GST_DEBUG_OBJECT (pad, "asked to drop item");
2875       info->type = GST_PAD_PROBE_TYPE_INVALID;
2876       data->dropped = TRUE;
2877       break;
2878     case GST_PAD_PROBE_PASS:
2879       /* inform the pad block to let things pass */
2880       GST_DEBUG_OBJECT (pad, "asked to pass item");
2881       data->pass = TRUE;
2882       break;
2883     default:
2884       GST_DEBUG_OBJECT (pad, "probe returned %d", ret);
2885       break;
2886   }
2887   return;
2888
2889 no_match:
2890   {
2891     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
2892         "hook %lu, cookie %u with flags 0x%08x does not match %08x",
2893         hook->hook_id, PROBE_COOKIE (hook), flags, info->type);
2894     return;
2895   }
2896 }
2897
2898 #define PROBE_PRE_PULL(pad,mask,data,offs,size,label,probed,defaultval)    \
2899   G_STMT_START {                                                \
2900     if (G_UNLIKELY (pad->num_probes)) {                         \
2901       /* we start with passing NULL as the data item */         \
2902       GstPadProbeInfo info = { mask, 0, NULL, offs, size };     \
2903       ret = do_probe_callbacks (pad, &info, defaultval);        \
2904       /* store the possibly updated data item */                \
2905       data = GST_PAD_PROBE_INFO_DATA (&info);                   \
2906       /* if something went wrong, exit */                       \
2907       if (G_UNLIKELY (ret != defaultval && ret != GST_FLOW_OK)) \
2908         goto label;                                             \
2909       /* otherwise check if the probe retured data */           \
2910       if (G_UNLIKELY (data != NULL))                            \
2911         goto probed;                                            \
2912     }                                                           \
2913   } G_STMT_END
2914
2915
2916 /* a probe that does not take or return any data */
2917 #define PROBE_NO_DATA(pad,mask,label,defaultval)                \
2918   G_STMT_START {                                                \
2919     if (G_UNLIKELY (pad->num_probes)) {                         \
2920       /* pass NULL as the data item */                          \
2921       GstPadProbeInfo info = { mask, 0, NULL, 0, 0 };           \
2922       ret = do_probe_callbacks (pad, &info, defaultval);        \
2923       if (G_UNLIKELY (ret != defaultval && ret != GST_FLOW_OK)) \
2924         goto label;                                             \
2925     }                                                           \
2926   } G_STMT_END
2927
2928 #define PROBE_FULL(pad,mask,data,offs,size,label,defaultval)    \
2929   G_STMT_START {                                                \
2930     if (G_UNLIKELY (pad->num_probes)) {                         \
2931       GstPadProbeInfo info = { mask, 0, data, offs, size };     \
2932       ret = do_probe_callbacks (pad, &info, defaultval);        \
2933       data = GST_PAD_PROBE_INFO_DATA (&info);                   \
2934       if (G_UNLIKELY (ret != defaultval && ret != GST_FLOW_OK)) \
2935         goto label;                                             \
2936     }                                                           \
2937   } G_STMT_END
2938
2939 #define PROBE_PUSH(pad,mask,data,label)                         \
2940   PROBE_FULL(pad, mask, data, -1, -1, label, GST_FLOW_OK);
2941 #define PROBE_PULL(pad,mask,data,offs,size,label)               \
2942   PROBE_FULL(pad, mask, data, offs, size, label, GST_FLOW_OK);
2943
2944 static GstFlowReturn
2945 do_probe_callbacks (GstPad * pad, GstPadProbeInfo * info,
2946     GstFlowReturn defaultval)
2947 {
2948   ProbeMarshall data;
2949   guint cookie;
2950   gboolean is_block;
2951
2952   data.pad = pad;
2953   data.info = info;
2954   data.pass = FALSE;
2955   data.marshalled = FALSE;
2956   data.dropped = FALSE;
2957   data.cookie = ++pad->priv->probe_cookie;
2958
2959   is_block =
2960       (info->type & GST_PAD_PROBE_TYPE_BLOCK) == GST_PAD_PROBE_TYPE_BLOCK;
2961
2962 again:
2963   GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
2964       "do probes cookie %u", data.cookie);
2965   cookie = pad->priv->probe_list_cookie;
2966
2967   g_hook_list_marshal (&pad->probes, TRUE,
2968       (GHookMarshaller) probe_hook_marshal, &data);
2969
2970   /* if the list changed, call the new callbacks (they will not have their
2971    * cookie set to data.cookie */
2972   if (cookie != pad->priv->probe_list_cookie) {
2973     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
2974         "probe list changed, restarting");
2975     goto again;
2976   }
2977
2978   /* the first item that dropped will stop the hooks and then we drop here */
2979   if (data.dropped)
2980     goto dropped;
2981
2982   /* if no handler matched and we are blocking, let the item pass */
2983   if (!data.marshalled && is_block)
2984     goto passed;
2985
2986   /* At this point, all handlers returned either OK or PASS. If one handler
2987    * returned PASS, let the item pass */
2988   if (data.pass)
2989     goto passed;
2990
2991   if (is_block) {
2992     while (GST_PAD_IS_BLOCKED (pad)) {
2993       GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
2994           "we are blocked %d times", pad->num_blocked);
2995
2996       /* we might have released the lock */
2997       if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
2998         goto flushing;
2999
3000       /* now we block the streaming thread. It can be unlocked when we
3001        * deactivate the pad (which will also set the FLUSHING flag) or
3002        * when the pad is unblocked. A flushing event will also unblock
3003        * the pad after setting the FLUSHING flag. */
3004       GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3005           "Waiting to be unblocked or set flushing");
3006       GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_BLOCKING);
3007       GST_PAD_BLOCK_WAIT (pad);
3008       GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_BLOCKING);
3009       GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "We got unblocked");
3010
3011       if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
3012         goto flushing;
3013     }
3014   }
3015
3016   return defaultval;
3017
3018   /* ERRORS */
3019 flushing:
3020   {
3021     GST_DEBUG_OBJECT (pad, "pad is flushing");
3022     return GST_FLOW_FLUSHING;
3023   }
3024 dropped:
3025   {
3026     GST_DEBUG_OBJECT (pad, "data is dropped");
3027     return GST_FLOW_CUSTOM_SUCCESS;
3028   }
3029 passed:
3030   {
3031     /* FIXME : Should we return FLOW_OK or the defaultval ?? */
3032     GST_DEBUG_OBJECT (pad, "data is passed");
3033     return GST_FLOW_OK;
3034   }
3035 }
3036
3037 /* pad offsets */
3038
3039 /**
3040  * gst_pad_get_offset:
3041  * @pad: a #GstPad
3042  *
3043  * Get the offset applied to the running time of @pad. @pad has to be a source
3044  * pad.
3045  *
3046  * Returns: the offset.
3047  */
3048 gint64
3049 gst_pad_get_offset (GstPad * pad)
3050 {
3051   gint64 result;
3052
3053   g_return_val_if_fail (GST_IS_PAD (pad), 0);
3054
3055   GST_OBJECT_LOCK (pad);
3056   result = pad->offset;
3057   GST_OBJECT_UNLOCK (pad);
3058
3059   return result;
3060 }
3061
3062 /**
3063  * gst_pad_set_offset:
3064  * @pad: a #GstPad
3065  * @offset: the offset
3066  *
3067  * Set the offset that will be applied to the running time of @pad.
3068  */
3069 void
3070 gst_pad_set_offset (GstPad * pad, gint64 offset)
3071 {
3072   PadEvent *ev;
3073
3074   g_return_if_fail (GST_IS_PAD (pad));
3075
3076   GST_OBJECT_LOCK (pad);
3077   /* if nothing changed, do nothing */
3078   if (pad->offset == offset)
3079     goto done;
3080
3081   pad->offset = offset;
3082   GST_DEBUG_OBJECT (pad, "changed offset to %" G_GINT64_FORMAT, offset);
3083
3084   /* sinkpads will apply their offset the next time a segment
3085    * event is received. */
3086   if (GST_PAD_IS_SINK (pad))
3087     goto done;
3088
3089   /* resend the last segment event on next buffer push */
3090   if ((ev = find_event_by_type (pad, GST_EVENT_SEGMENT, 0))) {
3091     ev->received = FALSE;
3092     GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
3093   }
3094
3095 done:
3096   GST_OBJECT_UNLOCK (pad);
3097 }
3098
3099
3100 /**
3101  * gst_pad_query:
3102  * @pad: a #GstPad to invoke the default query on.
3103  * @query: (transfer none): the #GstQuery to perform.
3104  *
3105  * Dispatches a query to a pad. The query should have been allocated by the
3106  * caller via one of the type-specific allocation functions. The element that
3107  * the pad belongs to is responsible for filling the query with an appropriate
3108  * response, which should then be parsed with a type-specific query parsing
3109  * function.
3110  *
3111  * Again, the caller is responsible for both the allocation and deallocation of
3112  * the query structure.
3113  *
3114  * Please also note that some queries might need a running pipeline to work.
3115  *
3116  * Returns: TRUE if the query could be performed.
3117  */
3118 gboolean
3119 gst_pad_query (GstPad * pad, GstQuery * query)
3120 {
3121   GstObject *parent;
3122   gboolean res;
3123   GstPadQueryFunction func;
3124   GstPadProbeType type;
3125   GstFlowReturn ret;
3126
3127   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3128   g_return_val_if_fail (GST_IS_QUERY (query), FALSE);
3129
3130   GST_DEBUG_OBJECT (pad, "sending query %p (%s)", query,
3131       GST_QUERY_TYPE_NAME (query));
3132
3133   if (GST_PAD_IS_SRC (pad))
3134     type = GST_PAD_PROBE_TYPE_QUERY_UPSTREAM;
3135   else
3136     type = GST_PAD_PROBE_TYPE_QUERY_DOWNSTREAM;
3137
3138   GST_OBJECT_LOCK (pad);
3139   PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH |
3140       GST_PAD_PROBE_TYPE_BLOCK, query, probe_stopped);
3141   PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH, query, probe_stopped);
3142
3143   ACQUIRE_PARENT (pad, parent, no_parent);
3144   GST_OBJECT_UNLOCK (pad);
3145
3146   if ((func = GST_PAD_QUERYFUNC (pad)) == NULL)
3147     goto no_func;
3148
3149   res = func (pad, parent, query);
3150
3151   RELEASE_PARENT (parent);
3152
3153   GST_DEBUG_OBJECT (pad, "sent query %p (%s), result %d", query,
3154       GST_QUERY_TYPE_NAME (query), res);
3155
3156   if (res != TRUE)
3157     goto query_failed;
3158
3159   GST_OBJECT_LOCK (pad);
3160   PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PULL, query, probe_stopped);
3161   GST_OBJECT_UNLOCK (pad);
3162
3163   return res;
3164
3165   /* ERRORS */
3166 no_parent:
3167   {
3168     GST_DEBUG_OBJECT (pad, "had no parent");
3169     GST_OBJECT_UNLOCK (pad);
3170     return FALSE;
3171   }
3172 no_func:
3173   {
3174     GST_DEBUG_OBJECT (pad, "had no query function");
3175     RELEASE_PARENT (parent);
3176     return FALSE;
3177   }
3178 query_failed:
3179   {
3180     GST_DEBUG_OBJECT (pad, "query failed");
3181     return FALSE;
3182   }
3183 probe_stopped:
3184   {
3185     GST_DEBUG_OBJECT (pad, "probe stopped: %s", gst_flow_get_name (ret));
3186     GST_OBJECT_UNLOCK (pad);
3187     return FALSE;
3188   }
3189 }
3190
3191 /**
3192  * gst_pad_peer_query:
3193  * @pad: a #GstPad to invoke the peer query on.
3194  * @query: (transfer none): the #GstQuery to perform.
3195  *
3196  * Performs gst_pad_query() on the peer of @pad.
3197  *
3198  * The caller is responsible for both the allocation and deallocation of
3199  * the query structure.
3200  *
3201  * Returns: TRUE if the query could be performed. This function returns %FALSE
3202  * if @pad has no peer.
3203  *
3204  * Since: 0.10.15
3205  */
3206 gboolean
3207 gst_pad_peer_query (GstPad * pad, GstQuery * query)
3208 {
3209   GstPad *peerpad;
3210   GstPadProbeType type;
3211   gboolean res;
3212   GstFlowReturn ret;
3213
3214   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3215   g_return_val_if_fail (GST_IS_QUERY (query), FALSE);
3216
3217   if (GST_PAD_IS_SRC (pad))
3218     type = GST_PAD_PROBE_TYPE_QUERY_DOWNSTREAM;
3219   else
3220     type = GST_PAD_PROBE_TYPE_QUERY_UPSTREAM;
3221
3222   GST_DEBUG_OBJECT (pad, "peer query %p (%s)", query,
3223       GST_QUERY_TYPE_NAME (query));
3224
3225   GST_OBJECT_LOCK (pad);
3226   PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH |
3227       GST_PAD_PROBE_TYPE_BLOCK, query, probe_stopped);
3228   PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH, query, probe_stopped);
3229
3230   peerpad = GST_PAD_PEER (pad);
3231   if (G_UNLIKELY (peerpad == NULL))
3232     goto no_peer;
3233
3234   gst_object_ref (peerpad);
3235   GST_OBJECT_UNLOCK (pad);
3236
3237   res = gst_pad_query (peerpad, query);
3238
3239   gst_object_unref (peerpad);
3240
3241   if (res != TRUE)
3242     goto query_failed;
3243
3244   GST_OBJECT_LOCK (pad);
3245   PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PULL, query, probe_stopped);
3246   GST_OBJECT_UNLOCK (pad);
3247
3248   return res;
3249
3250   /* ERRORS */
3251 no_peer:
3252   {
3253     GST_WARNING_OBJECT (pad, "pad has no peer");
3254     GST_OBJECT_UNLOCK (pad);
3255     return FALSE;
3256   }
3257 query_failed:
3258   {
3259     GST_DEBUG_OBJECT (pad, "query failed");
3260     return FALSE;
3261   }
3262 probe_stopped:
3263   {
3264     GST_DEBUG_OBJECT (pad, "probe stopped: %s", gst_flow_get_name (ret));
3265     GST_OBJECT_UNLOCK (pad);
3266     return FALSE;
3267   }
3268 }
3269
3270 /**********************************************************************
3271  * Data passing functions
3272  */
3273
3274 static gboolean
3275 push_sticky (GstPad * pad, PadEvent * ev, gpointer user_data)
3276 {
3277   GstFlowReturn *data = user_data;
3278   gboolean stored;
3279
3280   if (ev->received) {
3281     GST_DEBUG_OBJECT (pad, "event %s was already received",
3282         GST_EVENT_TYPE_NAME (ev->event));
3283     return TRUE;
3284   }
3285   GST_OBJECT_UNLOCK (pad);
3286
3287   *data = gst_pad_push_event_unchecked (pad, gst_event_ref (ev->event),
3288       GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM, &stored);
3289
3290   GST_OBJECT_LOCK (pad);
3291   return *data == GST_FLOW_OK;
3292 }
3293
3294 /* this is the chain function that does not perform the additional argument
3295  * checking for that little extra speed.
3296  */
3297 static inline GstFlowReturn
3298 gst_pad_chain_data_unchecked (GstPad * pad, GstPadProbeType type, void *data)
3299 {
3300   GstFlowReturn ret;
3301   GstObject *parent;
3302
3303   GST_PAD_STREAM_LOCK (pad);
3304
3305   GST_OBJECT_LOCK (pad);
3306   if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
3307     goto flushing;
3308
3309   if (G_UNLIKELY (GST_PAD_MODE (pad) != GST_PAD_MODE_PUSH))
3310     goto wrong_mode;
3311
3312   PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_BLOCK, data, probe_stopped);
3313
3314   PROBE_PUSH (pad, type, data, probe_stopped);
3315
3316   parent = GST_OBJECT_PARENT (pad);
3317   GST_OBJECT_UNLOCK (pad);
3318
3319   /* NOTE: we read the chainfunc unlocked.
3320    * we cannot hold the lock for the pad so we might send
3321    * the data to the wrong function. This is not really a
3322    * problem since functions are assigned at creation time
3323    * and don't change that often... */
3324   if (G_LIKELY (type & GST_PAD_PROBE_TYPE_BUFFER)) {
3325     GstPadChainFunction chainfunc;
3326
3327     if (G_UNLIKELY ((chainfunc = GST_PAD_CHAINFUNC (pad)) == NULL))
3328       goto no_function;
3329
3330     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3331         "calling chainfunction &%s with buffer %" GST_PTR_FORMAT,
3332         GST_DEBUG_FUNCPTR_NAME (chainfunc), GST_BUFFER (data));
3333
3334     ret = chainfunc (pad, parent, GST_BUFFER_CAST (data));
3335
3336     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3337         "called chainfunction &%s with buffer %p, returned %s",
3338         GST_DEBUG_FUNCPTR_NAME (chainfunc), data, gst_flow_get_name (ret));
3339   } else {
3340     GstPadChainListFunction chainlistfunc;
3341
3342     if (G_UNLIKELY ((chainlistfunc = GST_PAD_CHAINLISTFUNC (pad)) == NULL))
3343       goto no_function;
3344
3345     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3346         "calling chainlistfunction &%s",
3347         GST_DEBUG_FUNCPTR_NAME (chainlistfunc));
3348
3349     ret = chainlistfunc (pad, parent, GST_BUFFER_LIST_CAST (data));
3350
3351     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3352         "called chainlistfunction &%s, returned %s",
3353         GST_DEBUG_FUNCPTR_NAME (chainlistfunc), gst_flow_get_name (ret));
3354   }
3355
3356   GST_PAD_STREAM_UNLOCK (pad);
3357
3358   return ret;
3359
3360   /* ERRORS */
3361 flushing:
3362   {
3363     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3364         "chaining, but pad was flushing");
3365     GST_OBJECT_UNLOCK (pad);
3366     GST_PAD_STREAM_UNLOCK (pad);
3367     gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
3368     return GST_FLOW_FLUSHING;
3369   }
3370 wrong_mode:
3371   {
3372     g_critical ("chain on pad %s:%s but it was not in push mode",
3373         GST_DEBUG_PAD_NAME (pad));
3374     GST_OBJECT_UNLOCK (pad);
3375     GST_PAD_STREAM_UNLOCK (pad);
3376     gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
3377     return GST_FLOW_ERROR;
3378   }
3379 probe_stopped:
3380   {
3381     GST_OBJECT_UNLOCK (pad);
3382     GST_PAD_STREAM_UNLOCK (pad);
3383     gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
3384
3385     switch (ret) {
3386       case GST_FLOW_CUSTOM_SUCCESS:
3387         GST_DEBUG_OBJECT (pad, "dropped buffer");
3388         ret = GST_FLOW_OK;
3389         break;
3390       default:
3391         GST_DEBUG_OBJECT (pad, "an error occured %s", gst_flow_get_name (ret));
3392         break;
3393     }
3394     return ret;
3395   }
3396 no_function:
3397   {
3398     gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
3399     g_critical ("chain on pad %s:%s but it has no chainfunction",
3400         GST_DEBUG_PAD_NAME (pad));
3401     GST_PAD_STREAM_UNLOCK (pad);
3402     return GST_FLOW_NOT_SUPPORTED;
3403   }
3404 }
3405
3406 /**
3407  * gst_pad_chain:
3408  * @pad: a sink #GstPad, returns GST_FLOW_ERROR if not.
3409  * @buffer: (transfer full): the #GstBuffer to send, return GST_FLOW_ERROR
3410  *     if not.
3411  *
3412  * Chain a buffer to @pad.
3413  *
3414  * The function returns #GST_FLOW_FLUSHING if the pad was flushing.
3415  *
3416  * If the buffer type is not acceptable for @pad (as negotiated with a
3417  * preceeding GST_EVENT_CAPS event), this function returns
3418  * #GST_FLOW_NOT_NEGOTIATED.
3419  *
3420  * The function proceeds calling the chain function installed on @pad (see
3421  * gst_pad_set_chain_function()) and the return value of that function is
3422  * returned to the caller. #GST_FLOW_NOT_SUPPORTED is returned if @pad has no
3423  * chain function.
3424  *
3425  * In all cases, success or failure, the caller loses its reference to @buffer
3426  * after calling this function.
3427  *
3428  * Returns: a #GstFlowReturn from the pad.
3429  *
3430  * MT safe.
3431  */
3432 GstFlowReturn
3433 gst_pad_chain (GstPad * pad, GstBuffer * buffer)
3434 {
3435   g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
3436   g_return_val_if_fail (GST_PAD_IS_SINK (pad), GST_FLOW_ERROR);
3437   g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
3438
3439   return gst_pad_chain_data_unchecked (pad,
3440       GST_PAD_PROBE_TYPE_BUFFER | GST_PAD_PROBE_TYPE_PUSH, buffer);
3441 }
3442
3443 static GstFlowReturn
3444 gst_pad_chain_list_default (GstPad * pad, GstObject * parent,
3445     GstBufferList * list)
3446 {
3447   guint i, len;
3448   GstBuffer *buffer;
3449   GstFlowReturn ret;
3450
3451   GST_INFO_OBJECT (pad, "chaining each group in list as a merged buffer");
3452
3453   len = gst_buffer_list_length (list);
3454
3455   ret = GST_FLOW_OK;
3456   for (i = 0; i < len; i++) {
3457     buffer = gst_buffer_list_get (list, i);
3458     ret =
3459         gst_pad_chain_data_unchecked (pad,
3460         GST_PAD_PROBE_TYPE_BUFFER | GST_PAD_PROBE_TYPE_PUSH,
3461         gst_buffer_ref (buffer));
3462     if (ret != GST_FLOW_OK)
3463       break;
3464   }
3465   gst_buffer_list_unref (list);
3466
3467   return ret;
3468 }
3469
3470 /**
3471  * gst_pad_chain_list:
3472  * @pad: a sink #GstPad, returns GST_FLOW_ERROR if not.
3473  * @list: (transfer full): the #GstBufferList to send, return GST_FLOW_ERROR
3474  *     if not.
3475  *
3476  * Chain a bufferlist to @pad.
3477  *
3478  * The function returns #GST_FLOW_FLUSHING if the pad was flushing.
3479  *
3480  * If @pad was not negotiated properly with a CAPS event, this function
3481  * returns #GST_FLOW_NOT_NEGOTIATED.
3482  *
3483  * The function proceeds calling the chainlist function installed on @pad (see
3484  * gst_pad_set_chain_list_function()) and the return value of that function is
3485  * returned to the caller. #GST_FLOW_NOT_SUPPORTED is returned if @pad has no
3486  * chainlist function.
3487  *
3488  * In all cases, success or failure, the caller loses its reference to @list
3489  * after calling this function.
3490  *
3491  * MT safe.
3492  *
3493  * Returns: a #GstFlowReturn from the pad.
3494  *
3495  * Since: 0.10.24
3496  */
3497 GstFlowReturn
3498 gst_pad_chain_list (GstPad * pad, GstBufferList * list)
3499 {
3500   g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
3501   g_return_val_if_fail (GST_PAD_IS_SINK (pad), GST_FLOW_ERROR);
3502   g_return_val_if_fail (GST_IS_BUFFER_LIST (list), GST_FLOW_ERROR);
3503
3504   return gst_pad_chain_data_unchecked (pad,
3505       GST_PAD_PROBE_TYPE_BUFFER_LIST | GST_PAD_PROBE_TYPE_PUSH, list);
3506 }
3507
3508 static GstFlowReturn
3509 gst_pad_push_data (GstPad * pad, GstPadProbeType type, void *data)
3510 {
3511   GstPad *peer;
3512   GstFlowReturn ret;
3513
3514   GST_OBJECT_LOCK (pad);
3515   if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
3516     goto flushing;
3517
3518   if (G_UNLIKELY (GST_PAD_MODE (pad) != GST_PAD_MODE_PUSH))
3519     goto wrong_mode;
3520
3521   if (G_UNLIKELY (GST_PAD_HAS_PENDING_EVENTS (pad))) {
3522     GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_PENDING_EVENTS);
3523
3524     GST_DEBUG_OBJECT (pad, "pushing all sticky events");
3525
3526     ret = GST_FLOW_OK;
3527     events_foreach (pad, push_sticky, &ret);
3528     if (ret != GST_FLOW_OK)
3529       goto events_error;
3530   }
3531
3532   /* do block probes */
3533   PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_BLOCK, data, probe_stopped);
3534
3535   /* do post-blocking probes */
3536   PROBE_PUSH (pad, type, data, probe_stopped);
3537
3538   if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
3539     goto not_linked;
3540
3541   /* take ref to peer pad before releasing the lock */
3542   gst_object_ref (peer);
3543   pad->priv->using++;
3544   GST_OBJECT_UNLOCK (pad);
3545
3546   ret = gst_pad_chain_data_unchecked (peer, type, data);
3547
3548   gst_object_unref (peer);
3549
3550   GST_OBJECT_LOCK (pad);
3551   pad->priv->using--;
3552   if (pad->priv->using == 0) {
3553     /* pad is not active anymore, trigger idle callbacks */
3554     PROBE_NO_DATA (pad, GST_PAD_PROBE_TYPE_PUSH | GST_PAD_PROBE_TYPE_IDLE,
3555         probe_stopped, ret);
3556   }
3557   GST_OBJECT_UNLOCK (pad);
3558
3559   return ret;
3560
3561   /* ERROR recovery here */
3562   /* ERRORS */
3563 flushing:
3564   {
3565     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3566         "pushing, but pad was flushing");
3567     GST_OBJECT_UNLOCK (pad);
3568     gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
3569     return GST_FLOW_FLUSHING;
3570   }
3571 wrong_mode:
3572   {
3573     g_critical ("pushing on pad %s:%s but it was not activated in push mode",
3574         GST_DEBUG_PAD_NAME (pad));
3575     GST_OBJECT_UNLOCK (pad);
3576     gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
3577     return GST_FLOW_ERROR;
3578   }
3579 events_error:
3580   {
3581     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3582         "error pushing events, return %s", gst_flow_get_name (ret));
3583     GST_OBJECT_UNLOCK (pad);
3584     gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
3585     return ret;
3586   }
3587 probe_stopped:
3588   {
3589     GST_OBJECT_UNLOCK (pad);
3590     gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
3591
3592     switch (ret) {
3593       case GST_FLOW_CUSTOM_SUCCESS:
3594         GST_DEBUG_OBJECT (pad, "dropped buffer");
3595         ret = GST_FLOW_OK;
3596         break;
3597       default:
3598         GST_DEBUG_OBJECT (pad, "an error occured %s", gst_flow_get_name (ret));
3599         break;
3600     }
3601     return ret;
3602   }
3603 not_linked:
3604   {
3605     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3606         "pushing, but it was not linked");
3607     GST_OBJECT_UNLOCK (pad);
3608     gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
3609     return GST_FLOW_NOT_LINKED;
3610   }
3611 }
3612
3613 /**
3614  * gst_pad_push:
3615  * @pad: a source #GstPad, returns #GST_FLOW_ERROR if not.
3616  * @buffer: (transfer full): the #GstBuffer to push returns GST_FLOW_ERROR
3617  *     if not.
3618  *
3619  * Pushes a buffer to the peer of @pad.
3620  *
3621  * This function will call installed block probes before triggering any
3622  * installed data probes.
3623  *
3624  * The function proceeds calling gst_pad_chain() on the peer pad and returns
3625  * the value from that function. If @pad has no peer, #GST_FLOW_NOT_LINKED will
3626  * be returned.
3627  *
3628  * In all cases, success or failure, the caller loses its reference to @buffer
3629  * after calling this function.
3630  *
3631  * Returns: a #GstFlowReturn from the peer pad.
3632  *
3633  * MT safe.
3634  */
3635 GstFlowReturn
3636 gst_pad_push (GstPad * pad, GstBuffer * buffer)
3637 {
3638   g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
3639   g_return_val_if_fail (GST_PAD_IS_SRC (pad), GST_FLOW_ERROR);
3640   g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
3641
3642   return gst_pad_push_data (pad,
3643       GST_PAD_PROBE_TYPE_BUFFER | GST_PAD_PROBE_TYPE_PUSH, buffer);
3644 }
3645
3646 /**
3647  * gst_pad_push_list:
3648  * @pad: a source #GstPad, returns #GST_FLOW_ERROR if not.
3649  * @list: (transfer full): the #GstBufferList to push returns GST_FLOW_ERROR
3650  *     if not.
3651  *
3652  * Pushes a buffer list to the peer of @pad.
3653  *
3654  * This function will call installed block probes before triggering any
3655  * installed data probes.
3656  *
3657  * The function proceeds calling the chain function on the peer pad and returns
3658  * the value from that function. If @pad has no peer, #GST_FLOW_NOT_LINKED will
3659  * be returned. If the peer pad does not have any installed chainlist function
3660  * every group buffer of the list will be merged into a normal #GstBuffer and
3661  * chained via gst_pad_chain().
3662  *
3663  * In all cases, success or failure, the caller loses its reference to @list
3664  * after calling this function.
3665  *
3666  * Returns: a #GstFlowReturn from the peer pad.
3667  *
3668  * MT safe.
3669  *
3670  * Since: 0.10.24
3671  */
3672 GstFlowReturn
3673 gst_pad_push_list (GstPad * pad, GstBufferList * list)
3674 {
3675   g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
3676   g_return_val_if_fail (GST_PAD_IS_SRC (pad), GST_FLOW_ERROR);
3677   g_return_val_if_fail (GST_IS_BUFFER_LIST (list), GST_FLOW_ERROR);
3678
3679   return gst_pad_push_data (pad,
3680       GST_PAD_PROBE_TYPE_BUFFER_LIST | GST_PAD_PROBE_TYPE_PUSH, list);
3681 }
3682
3683 static GstFlowReturn
3684 gst_pad_get_range_unchecked (GstPad * pad, guint64 offset, guint size,
3685     GstBuffer ** buffer)
3686 {
3687   GstFlowReturn ret;
3688   GstPadGetRangeFunction getrangefunc;
3689   GstObject *parent;
3690
3691   GST_PAD_STREAM_LOCK (pad);
3692
3693   GST_OBJECT_LOCK (pad);
3694   if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
3695     goto flushing;
3696
3697   if (G_UNLIKELY (GST_PAD_MODE (pad) != GST_PAD_MODE_PULL))
3698     goto wrong_mode;
3699
3700   if (G_UNLIKELY (GST_PAD_HAS_PENDING_EVENTS (pad))) {
3701     GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_PENDING_EVENTS);
3702
3703     GST_DEBUG_OBJECT (pad, "pushing all sticky events");
3704
3705     ret = GST_FLOW_OK;
3706     events_foreach (pad, push_sticky, &ret);
3707     if (ret != GST_FLOW_OK)
3708       goto events_error;
3709   }
3710
3711   /* when one of the probes returns a buffer, probed_data will be called and we
3712    * skip calling the getrange function */
3713   PROBE_PRE_PULL (pad, GST_PAD_PROBE_TYPE_PULL | GST_PAD_PROBE_TYPE_BLOCK,
3714       *buffer, offset, size, probe_stopped, probed_data, GST_FLOW_OK);
3715
3716   ACQUIRE_PARENT (pad, parent, no_parent);
3717   GST_OBJECT_UNLOCK (pad);
3718
3719   if (G_UNLIKELY ((getrangefunc = GST_PAD_GETRANGEFUNC (pad)) == NULL))
3720     goto no_function;
3721
3722   GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3723       "calling getrangefunc %s, offset %"
3724       G_GUINT64_FORMAT ", size %u",
3725       GST_DEBUG_FUNCPTR_NAME (getrangefunc), offset, size);
3726
3727   ret = getrangefunc (pad, parent, offset, size, buffer);
3728
3729   RELEASE_PARENT (parent);
3730
3731   if (G_UNLIKELY (ret != GST_FLOW_OK))
3732     goto get_range_failed;
3733
3734   /* can only fire the signal if we have a valid buffer */
3735   GST_OBJECT_LOCK (pad);
3736 probed_data:
3737   PROBE_PULL (pad, GST_PAD_PROBE_TYPE_PULL | GST_PAD_PROBE_TYPE_BUFFER,
3738       *buffer, offset, size, probe_stopped_unref);
3739   GST_OBJECT_UNLOCK (pad);
3740
3741   GST_PAD_STREAM_UNLOCK (pad);
3742
3743   return ret;
3744
3745   /* ERRORS */
3746 flushing:
3747   {
3748     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3749         "getrange, but pad was flushing");
3750     GST_OBJECT_UNLOCK (pad);
3751     GST_PAD_STREAM_UNLOCK (pad);
3752     return GST_FLOW_FLUSHING;
3753   }
3754 wrong_mode:
3755   {
3756     g_critical ("getrange on pad %s:%s but it was not activated in pull mode",
3757         GST_DEBUG_PAD_NAME (pad));
3758     GST_OBJECT_UNLOCK (pad);
3759     GST_PAD_STREAM_UNLOCK (pad);
3760     return GST_FLOW_ERROR;
3761   }
3762 events_error:
3763   {
3764     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "error pushing events");
3765     GST_OBJECT_UNLOCK (pad);
3766     GST_PAD_STREAM_UNLOCK (pad);
3767     return ret;
3768   }
3769 no_parent:
3770   {
3771     GST_DEBUG_OBJECT (pad, "no parent");
3772     GST_OBJECT_UNLOCK (pad);
3773     GST_PAD_STREAM_UNLOCK (pad);
3774     return GST_FLOW_FLUSHING;
3775   }
3776 no_function:
3777   {
3778     g_critical ("getrange on pad %s:%s but it has no getrangefunction",
3779         GST_DEBUG_PAD_NAME (pad));
3780     RELEASE_PARENT (parent);
3781     GST_PAD_STREAM_UNLOCK (pad);
3782     return GST_FLOW_NOT_SUPPORTED;
3783   }
3784 probe_stopped:
3785   {
3786     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3787         "probe returned %s", gst_flow_get_name (ret));
3788     GST_OBJECT_UNLOCK (pad);
3789     GST_PAD_STREAM_UNLOCK (pad);
3790     return ret;
3791   }
3792 probe_stopped_unref:
3793   {
3794     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3795         "probe returned %s", gst_flow_get_name (ret));
3796     GST_OBJECT_UNLOCK (pad);
3797     GST_PAD_STREAM_UNLOCK (pad);
3798     gst_buffer_unref (*buffer);
3799     *buffer = NULL;
3800     return ret;
3801   }
3802 get_range_failed:
3803   {
3804     GST_PAD_STREAM_UNLOCK (pad);
3805     *buffer = NULL;
3806     GST_CAT_LEVEL_LOG (GST_CAT_SCHEDULING,
3807         (ret >= GST_FLOW_EOS) ? GST_LEVEL_INFO : GST_LEVEL_WARNING,
3808         pad, "getrange failed, flow: %s", gst_flow_get_name (ret));
3809     return ret;
3810   }
3811 }
3812
3813 /**
3814  * gst_pad_get_range:
3815  * @pad: a src #GstPad, returns #GST_FLOW_ERROR if not.
3816  * @offset: The start offset of the buffer
3817  * @size: The length of the buffer
3818  * @buffer: (out callee-allocates): a pointer to hold the #GstBuffer,
3819  *     returns #GST_FLOW_ERROR if %NULL.
3820  *
3821  * When @pad is flushing this function returns #GST_FLOW_FLUSHING
3822  * immediately and @buffer is %NULL.
3823  *
3824  * Calls the getrange function of @pad, see #GstPadGetRangeFunction for a
3825  * description of a getrange function. If @pad has no getrange function
3826  * installed (see gst_pad_set_getrange_function()) this function returns
3827  * #GST_FLOW_NOT_SUPPORTED.
3828  *
3829  * This is a lowlevel function. Usualy gst_pad_pull_range() is used.
3830  *
3831  * Returns: a #GstFlowReturn from the pad.
3832  *
3833  * MT safe.
3834  */
3835 GstFlowReturn
3836 gst_pad_get_range (GstPad * pad, guint64 offset, guint size,
3837     GstBuffer ** buffer)
3838 {
3839   g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
3840   g_return_val_if_fail (GST_PAD_IS_SRC (pad), GST_FLOW_ERROR);
3841   g_return_val_if_fail (buffer != NULL, GST_FLOW_ERROR);
3842
3843   return gst_pad_get_range_unchecked (pad, offset, size, buffer);
3844 }
3845
3846 /**
3847  * gst_pad_pull_range:
3848  * @pad: a sink #GstPad, returns GST_FLOW_ERROR if not.
3849  * @offset: The start offset of the buffer
3850  * @size: The length of the buffer
3851  * @buffer: (out callee-allocates): a pointer to hold the #GstBuffer, returns
3852  *     GST_FLOW_ERROR if %NULL.
3853  *
3854  * Pulls a @buffer from the peer pad.
3855  *
3856  * This function will first trigger the pad block signal if it was
3857  * installed.
3858  *
3859  * When @pad is not linked #GST_FLOW_NOT_LINKED is returned else this
3860  * function returns the result of gst_pad_get_range() on the peer pad.
3861  * See gst_pad_get_range() for a list of return values and for the
3862  * semantics of the arguments of this function.
3863  *
3864  * Returns: a #GstFlowReturn from the peer pad.
3865  * When this function returns #GST_FLOW_OK, @buffer will contain a valid
3866  * #GstBuffer that should be freed with gst_buffer_unref() after usage.
3867  * @buffer may not be used or freed when any other return value than
3868  * #GST_FLOW_OK is returned.
3869  *
3870  * MT safe.
3871  */
3872 GstFlowReturn
3873 gst_pad_pull_range (GstPad * pad, guint64 offset, guint size,
3874     GstBuffer ** buffer)
3875 {
3876   GstPad *peer;
3877   GstFlowReturn ret;
3878
3879   g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
3880   g_return_val_if_fail (GST_PAD_IS_SINK (pad), GST_FLOW_ERROR);
3881   g_return_val_if_fail (buffer != NULL, GST_FLOW_ERROR);
3882
3883   GST_OBJECT_LOCK (pad);
3884   if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
3885     goto flushing;
3886
3887   if (G_UNLIKELY (GST_PAD_MODE (pad) != GST_PAD_MODE_PULL))
3888     goto wrong_mode;
3889
3890   /* when one of the probes returns a buffer, probed_data will be called and we
3891    * skip calling the peer getrange function */
3892   PROBE_PRE_PULL (pad, GST_PAD_PROBE_TYPE_PULL | GST_PAD_PROBE_TYPE_BLOCK,
3893       *buffer, offset, size, pre_probe_stopped, probed_data, GST_FLOW_OK);
3894
3895   if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
3896     goto not_linked;
3897
3898   gst_object_ref (peer);
3899   pad->priv->using++;
3900   GST_OBJECT_UNLOCK (pad);
3901
3902   ret = gst_pad_get_range_unchecked (peer, offset, size, buffer);
3903
3904   gst_object_unref (peer);
3905
3906   GST_OBJECT_LOCK (pad);
3907   pad->priv->using--;
3908   if (pad->priv->using == 0) {
3909     /* pad is not active anymore, trigger idle callbacks */
3910     PROBE_NO_DATA (pad, GST_PAD_PROBE_TYPE_PULL | GST_PAD_PROBE_TYPE_IDLE,
3911         post_probe_stopped, ret);
3912   }
3913
3914   if (G_UNLIKELY (ret != GST_FLOW_OK))
3915     goto pull_range_failed;
3916
3917 probed_data:
3918   PROBE_PULL (pad, GST_PAD_PROBE_TYPE_PULL | GST_PAD_PROBE_TYPE_BUFFER,
3919       *buffer, offset, size, post_probe_stopped);
3920
3921   GST_OBJECT_UNLOCK (pad);
3922
3923   return ret;
3924
3925   /* ERROR recovery here */
3926 flushing:
3927   {
3928     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3929         "pullrange, but pad was flushing");
3930     GST_OBJECT_UNLOCK (pad);
3931     return GST_FLOW_FLUSHING;
3932   }
3933 wrong_mode:
3934   {
3935     g_critical ("pullrange on pad %s:%s but it was not activated in pull mode",
3936         GST_DEBUG_PAD_NAME (pad));
3937     GST_OBJECT_UNLOCK (pad);
3938     return GST_FLOW_ERROR;
3939   }
3940 pre_probe_stopped:
3941   {
3942     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "pre probe returned %s",
3943         gst_flow_get_name (ret));
3944     GST_OBJECT_UNLOCK (pad);
3945     return ret;
3946   }
3947 not_linked:
3948   {
3949     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3950         "pulling range, but it was not linked");
3951     GST_OBJECT_UNLOCK (pad);
3952     return GST_FLOW_NOT_LINKED;
3953   }
3954 pull_range_failed:
3955   {
3956     *buffer = NULL;
3957     GST_OBJECT_UNLOCK (pad);
3958     GST_CAT_LEVEL_LOG (GST_CAT_SCHEDULING,
3959         (ret >= GST_FLOW_EOS) ? GST_LEVEL_INFO : GST_LEVEL_WARNING,
3960         pad, "pullrange failed, flow: %s", gst_flow_get_name (ret));
3961     return ret;
3962   }
3963 post_probe_stopped:
3964   {
3965     GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3966         "post probe returned %s", gst_flow_get_name (ret));
3967     GST_OBJECT_UNLOCK (pad);
3968     if (ret == GST_FLOW_OK)
3969       gst_buffer_unref (*buffer);
3970     *buffer = NULL;
3971     return ret;
3972   }
3973 }
3974
3975 static gboolean
3976 gst_pad_store_sticky_event (GstPad * pad, GstEvent * event, gboolean locked)
3977 {
3978   guint i, len;
3979   GstEventType type;
3980   GArray *events;
3981   gboolean res = FALSE;
3982   const gchar *name = NULL;
3983
3984   type = GST_EVENT_TYPE (event);
3985   if (type & GST_EVENT_TYPE_STICKY_MULTI)
3986     name = gst_structure_get_name (gst_event_get_structure (event));
3987
3988   events = pad->priv->events;
3989   len = events->len;
3990
3991   for (i = 0; i < len; i++) {
3992     PadEvent *ev = &g_array_index (events, PadEvent, i);
3993
3994     if (ev->event == NULL)
3995       continue;
3996
3997     if (type == GST_EVENT_TYPE (ev->event)) {
3998       /* matching types, check matching name if needed */
3999       if (name && !gst_event_has_name (ev->event, name))
4000         continue;
4001
4002       /* overwrite */
4003       if ((res = gst_event_replace (&ev->event, event)))
4004         ev->received = FALSE;
4005       break;
4006     }
4007   }
4008   if (i == len) {
4009     PadEvent ev;
4010     ev.event = gst_event_ref (event);
4011     ev.received = FALSE;
4012     g_array_append_val (events, ev);
4013     res = TRUE;
4014   }
4015
4016   if (res) {
4017     pad->priv->events_cookie++;
4018     GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
4019
4020     GST_LOG_OBJECT (pad, "stored sticky event %s", GST_EVENT_TYPE_NAME (event));
4021
4022     switch (GST_EVENT_TYPE (event)) {
4023       case GST_EVENT_CAPS:
4024         if (locked)
4025           GST_OBJECT_UNLOCK (pad);
4026
4027         GST_DEBUG_OBJECT (pad, "notify caps");
4028         g_object_notify_by_pspec ((GObject *) pad, pspec_caps);
4029
4030         if (locked)
4031           GST_OBJECT_LOCK (pad);
4032         break;
4033       default:
4034         break;
4035     }
4036   }
4037   return res;
4038 }
4039
4040 static GstFlowReturn
4041 gst_pad_push_event_unchecked (GstPad * pad, GstEvent * event,
4042     GstPadProbeType type, gboolean * stored)
4043 {
4044   GstFlowReturn ret;
4045   GstPad *peerpad;
4046   GstEventType event_type;
4047   gboolean sticky;
4048
4049   sticky = GST_EVENT_IS_STICKY (event);
4050
4051   GST_OBJECT_LOCK (pad);
4052
4053   /* Two checks to be made:
4054    * . (un)set the FLUSHING flag for flushing events,
4055    * . handle pad blocking */
4056   event_type = GST_EVENT_TYPE (event);
4057   *stored = FALSE;
4058   switch (event_type) {
4059     case GST_EVENT_FLUSH_START:
4060       GST_PAD_SET_FLUSHING (pad);
4061
4062       GST_PAD_BLOCK_BROADCAST (pad);
4063       type |= GST_PAD_PROBE_TYPE_EVENT_FLUSH;
4064       break;
4065     case GST_EVENT_FLUSH_STOP:
4066       GST_PAD_UNSET_FLUSHING (pad);
4067
4068       /* Remove sticky EOS events */
4069       GST_LOG_OBJECT (pad, "Removing pending EOS events");
4070       remove_event_by_type (pad, GST_EVENT_EOS);
4071
4072       type |= GST_PAD_PROBE_TYPE_EVENT_FLUSH;
4073       break;
4074     default:
4075     {
4076       if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
4077         goto flushed;
4078
4079       /* store the event on the pad, but only on srcpads. We always store the
4080        * event exactly how it was sent */
4081       if (sticky) {
4082         /* srcpad sticky events are store immediately, the received flag is set
4083          * to FALSE and will be set to TRUE when we can successfully push the
4084          * event to the peer pad */
4085         if (gst_pad_store_sticky_event (pad, event, TRUE)) {
4086           GST_DEBUG_OBJECT (pad, "event %s updated",
4087               GST_EVENT_TYPE_NAME (event));
4088         }
4089         *stored = TRUE;
4090       }
4091
4092       switch (GST_EVENT_TYPE (event)) {
4093         case GST_EVENT_SEGMENT:
4094           /* pass the adjusted segment event on. We need to do this even if
4095            * there is no peer pad because of the probes. */
4096           event = apply_pad_offset (pad, event);
4097           break;
4098         case GST_EVENT_RECONFIGURE:
4099           if (GST_PAD_IS_SINK (pad))
4100             GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_NEED_RECONFIGURE);
4101           break;
4102         default:
4103           break;
4104       }
4105       PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH |
4106           GST_PAD_PROBE_TYPE_BLOCK, event, probe_stopped);
4107       break;
4108     }
4109   }
4110
4111   /* send probes after modifying the events above */
4112   PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH, event, probe_stopped);
4113
4114   /* now check the peer pad */
4115   peerpad = GST_PAD_PEER (pad);
4116   if (peerpad == NULL)
4117     goto not_linked;
4118
4119   gst_object_ref (peerpad);
4120   pad->priv->using++;
4121   GST_OBJECT_UNLOCK (pad);
4122
4123   GST_LOG_OBJECT (pad, "sending event %p (%s) to peerpad %" GST_PTR_FORMAT,
4124       event, GST_EVENT_TYPE_NAME (event), peerpad);
4125
4126   ret = gst_pad_send_event_unchecked (peerpad, event, type);
4127
4128   /* Note: we gave away ownership of the event at this point but we can still
4129    * print the old pointer */
4130   GST_LOG_OBJECT (pad,
4131       "sent event %p to peerpad %" GST_PTR_FORMAT ", ret %s", event, peerpad,
4132       gst_flow_get_name (ret));
4133
4134   gst_object_unref (peerpad);
4135
4136   GST_OBJECT_LOCK (pad);
4137   if (sticky) {
4138     if (ret == GST_FLOW_OK) {
4139       PadEvent *ev;
4140
4141       if ((ev = find_event (pad, event)))
4142         ev->received = TRUE;
4143
4144       GST_DEBUG_OBJECT (pad, "event marked received");
4145     } else {
4146       GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
4147       GST_DEBUG_OBJECT (pad, "mark pending events");
4148     }
4149   }
4150   pad->priv->using--;
4151   if (pad->priv->using == 0) {
4152     /* pad is not active anymore, trigger idle callbacks */
4153     PROBE_NO_DATA (pad, GST_PAD_PROBE_TYPE_PUSH | GST_PAD_PROBE_TYPE_IDLE,
4154         idle_probe_stopped, ret);
4155   }
4156   GST_OBJECT_UNLOCK (pad);
4157
4158   return ret;
4159
4160   /* ERROR handling */
4161 flushed:
4162   {
4163     GST_DEBUG_OBJECT (pad, "We're flushing");
4164     GST_OBJECT_UNLOCK (pad);
4165     gst_event_unref (event);
4166     return GST_FLOW_FLUSHING;
4167   }
4168 probe_stopped:
4169   {
4170     GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
4171     GST_OBJECT_UNLOCK (pad);
4172     gst_event_unref (event);
4173
4174     switch (ret) {
4175       case GST_FLOW_CUSTOM_SUCCESS:
4176         GST_DEBUG_OBJECT (pad, "dropped event");
4177         ret = GST_FLOW_OK;
4178         break;
4179       default:
4180         GST_DEBUG_OBJECT (pad, "an error occured %s", gst_flow_get_name (ret));
4181         break;
4182     }
4183     return ret;
4184   }
4185 not_linked:
4186   {
4187     GST_DEBUG_OBJECT (pad, "Dropping event because pad is not linked");
4188     GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
4189     GST_OBJECT_UNLOCK (pad);
4190     gst_event_unref (event);
4191     return sticky ? GST_FLOW_OK : GST_FLOW_NOT_LINKED;
4192   }
4193 idle_probe_stopped:
4194   {
4195     GST_DEBUG_OBJECT (pad, "Idle probe returned %s", gst_flow_get_name (ret));
4196     GST_OBJECT_UNLOCK (pad);
4197     return ret;
4198   }
4199 }
4200
4201 /**
4202  * gst_pad_push_event:
4203  * @pad: a #GstPad to push the event to.
4204  * @event: (transfer full): the #GstEvent to send to the pad.
4205  *
4206  * Sends the event to the peer of the given pad. This function is
4207  * mainly used by elements to send events to their peer
4208  * elements.
4209  *
4210  * This function takes owership of the provided event so you should
4211  * gst_event_ref() it if you want to reuse the event after this call.
4212  *
4213  * Returns: TRUE if the event was handled.
4214  *
4215  * MT safe.
4216  */
4217 gboolean
4218 gst_pad_push_event (GstPad * pad, GstEvent * event)
4219 {
4220   gboolean res;
4221   GstPadProbeType type;
4222   gboolean stored;
4223
4224   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
4225   g_return_val_if_fail (event != NULL, FALSE);
4226   g_return_val_if_fail (GST_IS_EVENT (event), FALSE);
4227
4228   if (GST_PAD_IS_SRC (pad)) {
4229     if (G_UNLIKELY (!GST_EVENT_IS_DOWNSTREAM (event)))
4230       goto wrong_direction;
4231     type = GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM;
4232   } else if (GST_PAD_IS_SINK (pad)) {
4233     if (G_UNLIKELY (!GST_EVENT_IS_UPSTREAM (event)))
4234       goto wrong_direction;
4235     /* events pushed on sinkpad never are sticky */
4236     type = GST_PAD_PROBE_TYPE_EVENT_UPSTREAM;
4237   } else
4238     goto unknown_direction;
4239
4240   if (gst_pad_push_event_unchecked (pad, event, type, &stored) != GST_FLOW_OK)
4241     res = stored ? TRUE : FALSE;
4242   else
4243     res = TRUE;
4244
4245   return res;
4246
4247   /* ERROR handling */
4248 wrong_direction:
4249   {
4250     g_warning ("pad %s:%s pushing %s event in wrong direction",
4251         GST_DEBUG_PAD_NAME (pad), GST_EVENT_TYPE_NAME (event));
4252     gst_event_unref (event);
4253     return FALSE;
4254   }
4255 unknown_direction:
4256   {
4257     g_warning ("pad %s:%s has invalid direction", GST_DEBUG_PAD_NAME (pad));
4258     gst_event_unref (event);
4259     return FALSE;
4260   }
4261 }
4262
4263 /* Check if we can call the event function with the given event */
4264 static GstFlowReturn
4265 pre_eventfunc_check (GstPad * pad, GstEvent * event)
4266 {
4267   GstCaps *caps, *templ;
4268
4269   switch (GST_EVENT_TYPE (event)) {
4270     case GST_EVENT_CAPS:
4271     {
4272       /* backwards compatibility mode for caps */
4273       gst_event_parse_caps (event, &caps);
4274
4275       /* See if pad accepts the caps */
4276       templ = gst_pad_get_pad_template_caps (pad);
4277       if (!gst_caps_is_subset (caps, templ))
4278         goto not_accepted;
4279
4280       gst_caps_unref (templ);
4281       break;
4282     }
4283     default:
4284       break;
4285   }
4286   return GST_FLOW_OK;
4287
4288   /* ERRORS */
4289 not_accepted:
4290   {
4291     gst_caps_unref (templ);
4292     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
4293         "caps %" GST_PTR_FORMAT " not accepted", caps);
4294     GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
4295         "no intersection with template %" GST_PTR_FORMAT, templ);
4296     return GST_FLOW_NOT_NEGOTIATED;
4297   }
4298 }
4299
4300 static GstFlowReturn
4301 gst_pad_send_event_unchecked (GstPad * pad, GstEvent * event,
4302     GstPadProbeType type)
4303 {
4304   GstFlowReturn ret;
4305   GstEventType event_type;
4306   gboolean serialized, need_unlock = FALSE, sticky;
4307   GstPadEventFunction eventfunc;
4308   GstObject *parent;
4309
4310   GST_OBJECT_LOCK (pad);
4311   if (GST_PAD_IS_SINK (pad))
4312     serialized = GST_EVENT_IS_SERIALIZED (event);
4313   else
4314     serialized = FALSE;
4315   sticky = GST_EVENT_IS_STICKY (event);
4316   event_type = GST_EVENT_TYPE (event);
4317   switch (event_type) {
4318     case GST_EVENT_FLUSH_START:
4319       GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad,
4320           "have event type %d (FLUSH_START)", GST_EVENT_TYPE (event));
4321
4322       /* can't even accept a flush begin event when flushing */
4323       if (GST_PAD_IS_FLUSHING (pad))
4324         goto flushing;
4325
4326       GST_PAD_SET_FLUSHING (pad);
4327       GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad, "set flush flag");
4328       break;
4329     case GST_EVENT_FLUSH_STOP:
4330       if (G_LIKELY (GST_PAD_MODE (pad) != GST_PAD_MODE_NONE)) {
4331         GST_PAD_UNSET_FLUSHING (pad);
4332         GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad, "cleared flush flag");
4333       }
4334       /* Remove pending EOS events */
4335       GST_LOG_OBJECT (pad, "Removing pending EOS events");
4336       remove_event_by_type (pad, GST_EVENT_EOS);
4337
4338       GST_OBJECT_UNLOCK (pad);
4339       /* grab stream lock */
4340       GST_PAD_STREAM_LOCK (pad);
4341       need_unlock = TRUE;
4342       GST_OBJECT_LOCK (pad);
4343       if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
4344         goto flushing;
4345       break;
4346     case GST_EVENT_RECONFIGURE:
4347       if (GST_PAD_IS_SRC (pad))
4348         GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_NEED_RECONFIGURE);
4349     default:
4350       GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad,
4351           "have event type %" GST_PTR_FORMAT, event);
4352
4353       if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
4354         goto flushing;
4355
4356       if (serialized) {
4357         /* lock order: STREAM_LOCK, LOCK, recheck flushing. */
4358         GST_OBJECT_UNLOCK (pad);
4359         GST_PAD_STREAM_LOCK (pad);
4360         need_unlock = TRUE;
4361         GST_OBJECT_LOCK (pad);
4362         if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
4363           goto flushing;
4364       }
4365
4366       switch (GST_EVENT_TYPE (event)) {
4367         case GST_EVENT_SEGMENT:
4368           event = apply_pad_offset (pad, event);
4369           break;
4370         default:
4371           break;
4372       }
4373
4374       /* now do the probe */
4375       PROBE_PUSH (pad,
4376           type | GST_PAD_PROBE_TYPE_PUSH |
4377           GST_PAD_PROBE_TYPE_BLOCK, event, probe_stopped);
4378
4379       PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH, event, probe_stopped);
4380       break;
4381   }
4382
4383   if (G_UNLIKELY ((eventfunc = GST_PAD_EVENTFUNC (pad)) == NULL))
4384     goto no_function;
4385
4386   ACQUIRE_PARENT (pad, parent, no_parent);
4387   GST_OBJECT_UNLOCK (pad);
4388
4389   ret = pre_eventfunc_check (pad, event);
4390   if (G_UNLIKELY (ret != GST_FLOW_OK))
4391     goto precheck_failed;
4392
4393   if (sticky)
4394     gst_event_ref (event);
4395
4396   if (eventfunc (pad, parent, event)) {
4397     ret = GST_FLOW_OK;
4398   } else {
4399     /* something went wrong */
4400     switch (event_type) {
4401       case GST_EVENT_CAPS:
4402         ret = GST_FLOW_NOT_NEGOTIATED;
4403         break;
4404       default:
4405         ret = GST_FLOW_ERROR;
4406         break;
4407     }
4408   }
4409   RELEASE_PARENT (parent);
4410
4411   GST_DEBUG_OBJECT (pad, "sent event, ret %s", gst_flow_get_name (ret));
4412
4413   if (sticky) {
4414     if (ret == GST_FLOW_OK) {
4415       /* after the event function accepted the event, we can store the sticky
4416        * event on the pad */
4417       gst_pad_store_sticky_event (pad, event, FALSE);
4418     }
4419     gst_event_unref (event);
4420   }
4421
4422   if (need_unlock)
4423     GST_PAD_STREAM_UNLOCK (pad);
4424
4425   return ret;
4426
4427   /* ERROR handling */
4428 flushing:
4429   {
4430     GST_OBJECT_UNLOCK (pad);
4431     if (need_unlock)
4432       GST_PAD_STREAM_UNLOCK (pad);
4433     GST_CAT_INFO_OBJECT (GST_CAT_EVENT, pad,
4434         "Received event on flushing pad. Discarding");
4435     gst_event_unref (event);
4436     return GST_FLOW_FLUSHING;
4437   }
4438 probe_stopped:
4439   {
4440     GST_OBJECT_UNLOCK (pad);
4441     if (need_unlock)
4442       GST_PAD_STREAM_UNLOCK (pad);
4443     gst_event_unref (event);
4444
4445     switch (ret) {
4446       case GST_FLOW_CUSTOM_SUCCESS:
4447         GST_DEBUG_OBJECT (pad, "dropped event");
4448         ret = GST_FLOW_OK;
4449         break;
4450       default:
4451         GST_DEBUG_OBJECT (pad, "an error occured %s", gst_flow_get_name (ret));
4452         break;
4453     }
4454     return ret;
4455   }
4456 no_function:
4457   {
4458     g_warning ("pad %s:%s has no event handler, file a bug.",
4459         GST_DEBUG_PAD_NAME (pad));
4460     GST_OBJECT_UNLOCK (pad);
4461     if (need_unlock)
4462       GST_PAD_STREAM_UNLOCK (pad);
4463     gst_event_unref (event);
4464     return GST_FLOW_NOT_SUPPORTED;
4465   }
4466 no_parent:
4467   {
4468     GST_DEBUG_OBJECT (pad, "no parent");
4469     GST_OBJECT_UNLOCK (pad);
4470     if (need_unlock)
4471       GST_PAD_STREAM_UNLOCK (pad);
4472     gst_event_unref (event);
4473     return GST_FLOW_FLUSHING;
4474   }
4475 precheck_failed:
4476   {
4477     GST_DEBUG_OBJECT (pad, "pre event check failed");
4478     RELEASE_PARENT (parent);
4479     if (need_unlock)
4480       GST_PAD_STREAM_UNLOCK (pad);
4481     gst_event_unref (event);
4482     return ret;
4483   }
4484 }
4485
4486 /**
4487  * gst_pad_send_event:
4488  * @pad: a #GstPad to send the event to.
4489  * @event: (transfer full): the #GstEvent to send to the pad.
4490  *
4491  * Sends the event to the pad. This function can be used
4492  * by applications to send events in the pipeline.
4493  *
4494  * If @pad is a source pad, @event should be an upstream event. If @pad is a
4495  * sink pad, @event should be a downstream event. For example, you would not
4496  * send a #GST_EVENT_EOS on a src pad; EOS events only propagate downstream.
4497  * Furthermore, some downstream events have to be serialized with data flow,
4498  * like EOS, while some can travel out-of-band, like #GST_EVENT_FLUSH_START. If
4499  * the event needs to be serialized with data flow, this function will take the
4500  * pad's stream lock while calling its event function.
4501  *
4502  * To find out whether an event type is upstream, downstream, or downstream and
4503  * serialized, see #GstEventTypeFlags, gst_event_type_get_flags(),
4504  * #GST_EVENT_IS_UPSTREAM, #GST_EVENT_IS_DOWNSTREAM, and
4505  * #GST_EVENT_IS_SERIALIZED. Note that in practice that an application or
4506  * plugin doesn't need to bother itself with this information; the core handles
4507  * all necessary locks and checks.
4508  *
4509  * This function takes owership of the provided event so you should
4510  * gst_event_ref() it if you want to reuse the event after this call.
4511  *
4512  * Returns: TRUE if the event was handled.
4513  */
4514 gboolean
4515 gst_pad_send_event (GstPad * pad, GstEvent * event)
4516 {
4517   gboolean result;
4518   GstPadProbeType type;
4519
4520   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
4521   g_return_val_if_fail (event != NULL, FALSE);
4522
4523   if (GST_PAD_IS_SINK (pad)) {
4524     if (G_UNLIKELY (!GST_EVENT_IS_DOWNSTREAM (event)))
4525       goto wrong_direction;
4526     type = GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM;
4527   } else if (GST_PAD_IS_SRC (pad)) {
4528     if (G_UNLIKELY (!GST_EVENT_IS_UPSTREAM (event)))
4529       goto wrong_direction;
4530     type = GST_PAD_PROBE_TYPE_EVENT_UPSTREAM;
4531   } else
4532     goto unknown_direction;
4533
4534   if (gst_pad_send_event_unchecked (pad, event, type) != GST_FLOW_OK)
4535     result = FALSE;
4536   else
4537     result = TRUE;
4538
4539   return result;
4540
4541   /* ERROR handling */
4542 wrong_direction:
4543   {
4544     g_warning ("pad %s:%s sending %s event in wrong direction",
4545         GST_DEBUG_PAD_NAME (pad), GST_EVENT_TYPE_NAME (event));
4546     gst_event_unref (event);
4547     return FALSE;
4548   }
4549 unknown_direction:
4550   {
4551     g_warning ("pad %s:%s has invalid direction", GST_DEBUG_PAD_NAME (pad));
4552     gst_event_unref (event);
4553     return FALSE;
4554   }
4555 }
4556
4557 /**
4558  * gst_pad_set_element_private:
4559  * @pad: the #GstPad to set the private data of.
4560  * @priv: The private data to attach to the pad.
4561  *
4562  * Set the given private data gpointer on the pad.
4563  * This function can only be used by the element that owns the pad.
4564  * No locking is performed in this function.
4565  */
4566 void
4567 gst_pad_set_element_private (GstPad * pad, gpointer priv)
4568 {
4569   pad->element_private = priv;
4570 }
4571
4572 /**
4573  * gst_pad_get_element_private:
4574  * @pad: the #GstPad to get the private data of.
4575  *
4576  * Gets the private data of a pad.
4577  * No locking is performed in this function.
4578  *
4579  * Returns: (transfer none): a #gpointer to the private data.
4580  */
4581 gpointer
4582 gst_pad_get_element_private (GstPad * pad)
4583 {
4584   return pad->element_private;
4585 }
4586
4587 /**
4588  * gst_pad_get_sticky_event:
4589  * @pad: the #GstPad to get the event from.
4590  * @event_type: the #GstEventType that should be retrieved.
4591  * @idx: the index of the event
4592  *
4593  * Returns a new reference of the sticky event of type @event_type
4594  * from the event.
4595  *
4596  * Returns: (transfer full): a #GstEvent of type @event_type or NULL when no
4597  * event of @event_type was on @pad. Unref after usage.
4598  */
4599 GstEvent *
4600 gst_pad_get_sticky_event (GstPad * pad, GstEventType event_type, guint idx)
4601 {
4602   GstEvent *event = NULL;
4603   PadEvent *ev;
4604
4605   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
4606   g_return_val_if_fail ((event_type & GST_EVENT_TYPE_STICKY) != 0, NULL);
4607
4608   GST_OBJECT_LOCK (pad);
4609   ev = find_event_by_type (pad, event_type, idx);
4610   if (ev && (event = ev->event))
4611     gst_event_ref (event);
4612   GST_OBJECT_UNLOCK (pad);
4613
4614   return event;
4615 }
4616
4617 typedef struct
4618 {
4619   GstPadStickyEventsForeachFunction func;
4620   gpointer user_data;
4621 } ForeachDispatch;
4622
4623 static gboolean
4624 foreach_dispatch_function (GstPad * pad, PadEvent * ev, gpointer user_data)
4625 {
4626   ForeachDispatch *data = user_data;
4627   gboolean ret;
4628
4629   GST_OBJECT_UNLOCK (pad);
4630
4631   ret = data->func (pad, &ev->event, data->user_data);
4632
4633   GST_OBJECT_LOCK (pad);
4634
4635   return ret;
4636 }
4637
4638 /**
4639  * gst_pad_sticky_events_foreach:
4640  * @pad: the #GstPad that should be used for iteration.
4641  * @foreach_func: (scope call): the #GstPadStickyEventsForeachFunction that
4642  *                should be called for every event.
4643  * @user_data: (closure): the optional user data.
4644  *
4645  * Iterates all sticky events on @pad and calls @foreach_func for every
4646  * event. If @foreach_func returns %FALSE the iteration is immediately stopped.
4647  */
4648 void
4649 gst_pad_sticky_events_foreach (GstPad * pad,
4650     GstPadStickyEventsForeachFunction foreach_func, gpointer user_data)
4651 {
4652   ForeachDispatch data;
4653
4654   g_return_if_fail (GST_IS_PAD (pad));
4655   g_return_if_fail (foreach_func != NULL);
4656
4657   data.func = foreach_func;
4658   data.user_data = user_data;
4659
4660   GST_OBJECT_LOCK (pad);
4661   events_foreach (pad, foreach_dispatch_function, &data);
4662   GST_OBJECT_UNLOCK (pad);
4663 }
4664
4665 static void
4666 do_stream_status (GstPad * pad, GstStreamStatusType type,
4667     GThread * thread, GstTask * task)
4668 {
4669   GstElement *parent;
4670
4671   GST_DEBUG_OBJECT (pad, "doing stream-status %d", type);
4672
4673   if ((parent = GST_ELEMENT_CAST (gst_pad_get_parent (pad)))) {
4674     if (GST_IS_ELEMENT (parent)) {
4675       GstMessage *message;
4676       GValue value = { 0 };
4677
4678       if (type == GST_STREAM_STATUS_TYPE_ENTER) {
4679         gchar *tname, *ename, *pname;
4680
4681         /* create a good task name */
4682         ename = gst_element_get_name (parent);
4683         pname = gst_pad_get_name (pad);
4684         tname = g_strdup_printf ("%s:%s", ename, pname);
4685         g_free (ename);
4686         g_free (pname);
4687
4688         gst_object_set_name (GST_OBJECT_CAST (task), tname);
4689         g_free (tname);
4690       }
4691
4692       message = gst_message_new_stream_status (GST_OBJECT_CAST (pad),
4693           type, parent);
4694
4695       g_value_init (&value, GST_TYPE_TASK);
4696       g_value_set_object (&value, task);
4697       gst_message_set_stream_status_object (message, &value);
4698       g_value_unset (&value);
4699
4700       GST_DEBUG_OBJECT (pad, "posting stream-status %d", type);
4701       gst_element_post_message (parent, message);
4702     }
4703     gst_object_unref (parent);
4704   }
4705 }
4706
4707 static void
4708 pad_enter_thread (GstTask * task, GThread * thread, gpointer user_data)
4709 {
4710   do_stream_status (GST_PAD_CAST (user_data), GST_STREAM_STATUS_TYPE_ENTER,
4711       thread, task);
4712 }
4713
4714 static void
4715 pad_leave_thread (GstTask * task, GThread * thread, gpointer user_data)
4716 {
4717   do_stream_status (GST_PAD_CAST (user_data), GST_STREAM_STATUS_TYPE_LEAVE,
4718       thread, task);
4719 }
4720
4721 static GstTaskThreadCallbacks thr_callbacks = {
4722   pad_enter_thread,
4723   pad_leave_thread,
4724 };
4725
4726 /**
4727  * gst_pad_start_task:
4728  * @pad: the #GstPad to start the task of
4729  * @func: the task function to call
4730  * @data: data passed to the task function
4731  *
4732  * Starts a task that repeatedly calls @func with @data. This function
4733  * is mostly used in pad activation functions to start the dataflow.
4734  * The #GST_PAD_STREAM_LOCK of @pad will automatically be acquired
4735  * before @func is called.
4736  *
4737  * Returns: a %TRUE if the task could be started.
4738  */
4739 gboolean
4740 gst_pad_start_task (GstPad * pad, GstTaskFunction func, gpointer data)
4741 {
4742   GstTask *task;
4743   gboolean res;
4744
4745   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
4746   g_return_val_if_fail (func != NULL, FALSE);
4747
4748   GST_DEBUG_OBJECT (pad, "start task");
4749
4750   GST_OBJECT_LOCK (pad);
4751   task = GST_PAD_TASK (pad);
4752   if (task == NULL) {
4753     task = gst_task_new (func, data);
4754     gst_task_set_lock (task, GST_PAD_GET_STREAM_LOCK (pad));
4755     gst_task_set_thread_callbacks (task, &thr_callbacks, pad, NULL);
4756     GST_INFO_OBJECT (pad, "created task %p", task);
4757     GST_PAD_TASK (pad) = task;
4758     gst_object_ref (task);
4759     /* release lock to post the message */
4760     GST_OBJECT_UNLOCK (pad);
4761
4762     do_stream_status (pad, GST_STREAM_STATUS_TYPE_CREATE, NULL, task);
4763
4764     gst_object_unref (task);
4765
4766     GST_OBJECT_LOCK (pad);
4767     /* nobody else is supposed to have changed the pad now */
4768     if (GST_PAD_TASK (pad) != task)
4769       goto concurrent_stop;
4770   }
4771   res = gst_task_set_state (task, GST_TASK_STARTED);
4772   GST_OBJECT_UNLOCK (pad);
4773
4774   return res;
4775
4776   /* ERRORS */
4777 concurrent_stop:
4778   {
4779     GST_OBJECT_UNLOCK (pad);
4780     return TRUE;
4781   }
4782 }
4783
4784 /**
4785  * gst_pad_pause_task:
4786  * @pad: the #GstPad to pause the task of
4787  *
4788  * Pause the task of @pad. This function will also wait until the
4789  * function executed by the task is finished if this function is not
4790  * called from the task function.
4791  *
4792  * Returns: a TRUE if the task could be paused or FALSE when the pad
4793  * has no task.
4794  */
4795 gboolean
4796 gst_pad_pause_task (GstPad * pad)
4797 {
4798   GstTask *task;
4799   gboolean res;
4800
4801   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
4802
4803   GST_DEBUG_OBJECT (pad, "pause task");
4804
4805   GST_OBJECT_LOCK (pad);
4806   task = GST_PAD_TASK (pad);
4807   if (task == NULL)
4808     goto no_task;
4809   res = gst_task_set_state (task, GST_TASK_PAUSED);
4810   GST_OBJECT_UNLOCK (pad);
4811
4812   /* wait for task function to finish, this lock is recursive so it does nothing
4813    * when the pause is called from the task itself */
4814   GST_PAD_STREAM_LOCK (pad);
4815   GST_PAD_STREAM_UNLOCK (pad);
4816
4817   return res;
4818
4819 no_task:
4820   {
4821     GST_DEBUG_OBJECT (pad, "pad has no task");
4822     GST_OBJECT_UNLOCK (pad);
4823     return FALSE;
4824   }
4825 }
4826
4827 /**
4828  * gst_pad_stop_task:
4829  * @pad: the #GstPad to stop the task of
4830  *
4831  * Stop the task of @pad. This function will also make sure that the
4832  * function executed by the task will effectively stop if not called
4833  * from the GstTaskFunction.
4834  *
4835  * This function will deadlock if called from the GstTaskFunction of
4836  * the task. Use gst_task_pause() instead.
4837  *
4838  * Regardless of whether the pad has a task, the stream lock is acquired and
4839  * released so as to ensure that streaming through this pad has finished.
4840  *
4841  * Returns: a TRUE if the task could be stopped or FALSE on error.
4842  */
4843 gboolean
4844 gst_pad_stop_task (GstPad * pad)
4845 {
4846   GstTask *task;
4847   gboolean res;
4848
4849   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
4850
4851   GST_DEBUG_OBJECT (pad, "stop task");
4852
4853   GST_OBJECT_LOCK (pad);
4854   task = GST_PAD_TASK (pad);
4855   if (task == NULL)
4856     goto no_task;
4857   GST_PAD_TASK (pad) = NULL;
4858   res = gst_task_set_state (task, GST_TASK_STOPPED);
4859   GST_OBJECT_UNLOCK (pad);
4860
4861   GST_PAD_STREAM_LOCK (pad);
4862   GST_PAD_STREAM_UNLOCK (pad);
4863
4864   if (!gst_task_join (task))
4865     goto join_failed;
4866
4867   gst_object_unref (task);
4868
4869   return res;
4870
4871 no_task:
4872   {
4873     GST_DEBUG_OBJECT (pad, "no task");
4874     GST_OBJECT_UNLOCK (pad);
4875
4876     GST_PAD_STREAM_LOCK (pad);
4877     GST_PAD_STREAM_UNLOCK (pad);
4878
4879     /* this is not an error */
4880     return TRUE;
4881   }
4882 join_failed:
4883   {
4884     /* this is bad, possibly the application tried to join the task from
4885      * the task's thread. We install the task again so that it will be stopped
4886      * again from the right thread next time hopefully. */
4887     GST_OBJECT_LOCK (pad);
4888     GST_DEBUG_OBJECT (pad, "join failed");
4889     /* we can only install this task if there was no other task */
4890     if (GST_PAD_TASK (pad) == NULL)
4891       GST_PAD_TASK (pad) = task;
4892     GST_OBJECT_UNLOCK (pad);
4893
4894     return FALSE;
4895   }
4896 }