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