2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wtay@chello.be>
5 * gstpad.c: Pads for linking elements together
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.
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.
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.
24 * @short_description: Object contained by elements that allows links to
26 * @see_also: #GstPadTemplate, #GstElement, #GstEvent, #GstQuery, #GstBuffer
28 * A #GstElement is linked to other elements via "pads", which are extremely
29 * light-weight generic link points.
31 * Pads have a #GstPadDirection, source pads produce data, sink pads consume
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.
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.
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.
48 * gst_pad_get_parent() will retrieve the #GstElement that owns the pad.
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
57 * Before dataflow is possible on the pads, they need to be activated with
58 * gst_pad_set_active().
60 * gst_pad_query() and gst_pad_peer_query() can be used to query various
61 * properties of the pad and the stream.
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.
70 * GstElements will use gst_pad_push() and gst_pad_pull_range() to push out
71 * or pull in a buffer.
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.
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.
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()
89 #include "gst_private.h"
92 #include "gstpadtemplate.h"
93 #include "gstenumtypes.h"
97 #include "gsttracerutils.h"
99 #include "glib-compat-private.h"
101 GST_DEBUG_CATEGORY_STATIC (debug_dataflow);
102 #define GST_CAT_DEFAULT GST_CAT_PADS
104 /* Pad signals and args */
123 #define GST_PAD_GET_PRIVATE(obj) \
124 (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_PAD, GstPadPrivate))
126 #define _PAD_PROBE_TYPE_ALL_BOTH_AND_FLUSH (GST_PAD_PROBE_TYPE_ALL_BOTH | GST_PAD_PROBE_TYPE_EVENT_FLUSH)
128 /* we have a pending and an active event on the pad. On source pads only the
129 * active event is used. On sinkpads, events are copied to the pending entry and
130 * moved to the active event when the eventfunc returned %TRUE. */
137 struct _GstPadPrivate
144 guint probe_list_cookie;
147 /* counter of how many idle probes are running directly from the add_probe
148 * call. Used to block any data flowing in the pad while the idle callback
149 * Doesn't finish its work */
159 #define PROBE_COOKIE(h) (((GstProbe *)(h))->cookie)
160 #define GST_PAD_IS_RUNNING_IDLE_PROBE(p) \
161 (((GstPad *)(p))->priv->idle_running > 0)
166 GstPadProbeInfo *info;
174 static void gst_pad_dispose (GObject * object);
175 static void gst_pad_finalize (GObject * object);
176 static void gst_pad_set_property (GObject * object, guint prop_id,
177 const GValue * value, GParamSpec * pspec);
178 static void gst_pad_get_property (GObject * object, guint prop_id,
179 GValue * value, GParamSpec * pspec);
181 static void gst_pad_set_pad_template (GstPad * pad, GstPadTemplate * templ);
182 static gboolean gst_pad_activate_default (GstPad * pad, GstObject * parent);
183 static GstFlowReturn gst_pad_chain_list_default (GstPad * pad,
184 GstObject * parent, GstBufferList * list);
186 static GstFlowReturn gst_pad_send_event_unchecked (GstPad * pad,
187 GstEvent * event, GstPadProbeType type);
188 static GstFlowReturn gst_pad_push_event_unchecked (GstPad * pad,
189 GstEvent * event, GstPadProbeType type);
191 static gboolean activate_mode_internal (GstPad * pad, GstObject * parent,
192 GstPadMode mode, gboolean active);
194 static guint gst_pad_signals[LAST_SIGNAL] = { 0 };
196 static GParamSpec *pspec_caps = NULL;
198 /* quarks for probe signals */
199 static GQuark buffer_quark;
200 static GQuark buffer_list_quark;
201 static GQuark event_quark;
210 static GstFlowQuarks flow_quarks[] = {
211 {GST_FLOW_CUSTOM_SUCCESS, "custom-success", 0},
212 {GST_FLOW_OK, "ok", 0},
213 {GST_FLOW_NOT_LINKED, "not-linked", 0},
214 {GST_FLOW_FLUSHING, "flushing", 0},
215 {GST_FLOW_EOS, "eos", 0},
216 {GST_FLOW_NOT_NEGOTIATED, "not-negotiated", 0},
217 {GST_FLOW_ERROR, "error", 0},
218 {GST_FLOW_NOT_SUPPORTED, "not-supported", 0},
219 {GST_FLOW_CUSTOM_ERROR, "custom-error", 0}
224 * @ret: a #GstFlowReturn to get the name of.
226 * Gets a string representing the given flow return.
228 * Returns: a static string with the name of the flow return.
231 gst_flow_get_name (GstFlowReturn ret)
235 ret = CLAMP (ret, GST_FLOW_CUSTOM_ERROR, GST_FLOW_CUSTOM_SUCCESS);
237 for (i = 0; i < G_N_ELEMENTS (flow_quarks); i++) {
238 if (ret == flow_quarks[i].ret)
239 return flow_quarks[i].name;
246 * @ret: a #GstFlowReturn to get the quark of.
248 * Get the unique quark for the given GstFlowReturn.
250 * Returns: the quark associated with the flow return or 0 if an
251 * invalid return was specified.
254 gst_flow_to_quark (GstFlowReturn ret)
258 ret = CLAMP (ret, GST_FLOW_CUSTOM_ERROR, GST_FLOW_CUSTOM_SUCCESS);
260 for (i = 0; i < G_N_ELEMENTS (flow_quarks); i++) {
261 if (ret == flow_quarks[i].ret)
262 return flow_quarks[i].quark;
268 * gst_pad_link_get_name:
269 * @ret: a #GstPadLinkReturn to get the name of.
271 * Gets a string representing the given pad-link return.
273 * Returns: a static string with the name of the pad-link return.
278 gst_pad_link_get_name (GstPadLinkReturn ret)
281 case GST_PAD_LINK_OK:
283 case GST_PAD_LINK_WRONG_HIERARCHY:
284 return "wrong hierarchy";
285 case GST_PAD_LINK_WAS_LINKED:
287 case GST_PAD_LINK_WRONG_DIRECTION:
288 return "wrong direction";
289 case GST_PAD_LINK_NOFORMAT:
290 return "no common format";
291 case GST_PAD_LINK_NOSCHED:
292 return "incompatible scheduling";
293 case GST_PAD_LINK_REFUSED:
296 g_return_val_if_reached ("unknown");
303 buffer_quark = g_quark_from_static_string ("buffer"); \
304 buffer_list_quark = g_quark_from_static_string ("bufferlist"); \
305 event_quark = g_quark_from_static_string ("event"); \
307 for (i = 0; i < G_N_ELEMENTS (flow_quarks); i++) { \
308 flow_quarks[i].quark = g_quark_from_static_string (flow_quarks[i].name); \
311 GST_DEBUG_CATEGORY_INIT (debug_dataflow, "GST_DATAFLOW", \
312 GST_DEBUG_BOLD | GST_DEBUG_FG_GREEN, "dataflow inside pads"); \
315 #define gst_pad_parent_class parent_class
316 G_DEFINE_TYPE_WITH_CODE (GstPad, gst_pad, GST_TYPE_OBJECT, _do_init);
319 gst_pad_class_init (GstPadClass * klass)
321 GObjectClass *gobject_class;
322 GstObjectClass *gstobject_class;
324 gobject_class = G_OBJECT_CLASS (klass);
325 gstobject_class = GST_OBJECT_CLASS (klass);
327 g_type_class_add_private (klass, sizeof (GstPadPrivate));
329 gobject_class->dispose = gst_pad_dispose;
330 gobject_class->finalize = gst_pad_finalize;
331 gobject_class->set_property = gst_pad_set_property;
332 gobject_class->get_property = gst_pad_get_property;
336 * @pad: the pad that emitted the signal
337 * @peer: the peer pad that has been connected
339 * Signals that a pad has been linked to the peer pad.
341 gst_pad_signals[PAD_LINKED] =
342 g_signal_new ("linked", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
343 G_STRUCT_OFFSET (GstPadClass, linked), NULL, NULL,
344 g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_PAD);
347 * @pad: the pad that emitted the signal
348 * @peer: the peer pad that has been disconnected
350 * Signals that a pad has been unlinked from the peer pad.
352 gst_pad_signals[PAD_UNLINKED] =
353 g_signal_new ("unlinked", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
354 G_STRUCT_OFFSET (GstPadClass, unlinked), NULL, NULL,
355 g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_PAD);
357 pspec_caps = g_param_spec_boxed ("caps", "Caps",
358 "The capabilities of the pad", GST_TYPE_CAPS,
359 G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
360 g_object_class_install_property (gobject_class, PAD_PROP_CAPS, pspec_caps);
362 g_object_class_install_property (gobject_class, PAD_PROP_DIRECTION,
363 g_param_spec_enum ("direction", "Direction", "The direction of the pad",
364 GST_TYPE_PAD_DIRECTION, GST_PAD_UNKNOWN,
365 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
367 /* FIXME, Make G_PARAM_CONSTRUCT_ONLY when we fix ghostpads. */
368 g_object_class_install_property (gobject_class, PAD_PROP_TEMPLATE,
369 g_param_spec_object ("template", "Template",
370 "The GstPadTemplate of this pad", GST_TYPE_PAD_TEMPLATE,
371 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
376 * The offset that will be applied to the running time of the pad.
380 g_object_class_install_property (gobject_class, PAD_PROP_OFFSET,
381 g_param_spec_int64 ("offset", "Offset",
382 "The running time offset of the pad", 0, G_MAXINT64, 0,
383 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
385 gstobject_class->path_string_separator = ".";
387 /* Register common function pointer descriptions */
388 GST_DEBUG_REGISTER_FUNCPTR (gst_pad_activate_default);
389 GST_DEBUG_REGISTER_FUNCPTR (gst_pad_event_default);
390 GST_DEBUG_REGISTER_FUNCPTR (gst_pad_query_default);
391 GST_DEBUG_REGISTER_FUNCPTR (gst_pad_iterate_internal_links_default);
392 GST_DEBUG_REGISTER_FUNCPTR (gst_pad_chain_list_default);
396 gst_pad_init (GstPad * pad)
398 pad->priv = GST_PAD_GET_PRIVATE (pad);
400 GST_PAD_DIRECTION (pad) = GST_PAD_UNKNOWN;
402 GST_PAD_ACTIVATEFUNC (pad) = gst_pad_activate_default;
403 GST_PAD_EVENTFUNC (pad) = gst_pad_event_default;
404 GST_PAD_QUERYFUNC (pad) = gst_pad_query_default;
405 GST_PAD_ITERINTLINKFUNC (pad) = gst_pad_iterate_internal_links_default;
406 GST_PAD_CHAINLISTFUNC (pad) = gst_pad_chain_list_default;
408 GST_PAD_SET_FLUSHING (pad);
410 g_rec_mutex_init (&pad->stream_rec_lock);
412 g_cond_init (&pad->block_cond);
414 g_hook_list_init (&pad->probes, sizeof (GstProbe));
416 pad->priv->events = g_array_sized_new (FALSE, TRUE, sizeof (PadEvent), 16);
417 pad->priv->events_cookie = 0;
418 pad->priv->last_cookie = -1;
419 pad->ABI.abi.last_flowret = GST_FLOW_FLUSHING;
422 /* called when setting the pad inactive. It removes all sticky events from
423 * the pad. must be called with object lock */
425 remove_events (GstPad * pad)
429 gboolean notify = FALSE;
431 events = pad->priv->events;
434 for (i = 0; i < len; i++) {
435 PadEvent *ev = &g_array_index (events, PadEvent, i);
436 GstEvent *event = ev->event;
440 if (event && GST_EVENT_TYPE (event) == GST_EVENT_CAPS)
443 gst_event_unref (event);
446 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_PENDING_EVENTS);
447 g_array_set_size (events, 0);
448 pad->priv->events_cookie++;
451 GST_OBJECT_UNLOCK (pad);
453 GST_DEBUG_OBJECT (pad, "notify caps");
454 g_object_notify_by_pspec ((GObject *) pad, pspec_caps);
456 GST_OBJECT_LOCK (pad);
460 /* should be called with object lock */
462 find_event_by_type (GstPad * pad, GstEventType type, guint idx)
468 events = pad->priv->events;
471 for (i = 0; i < len; i++) {
472 ev = &g_array_index (events, PadEvent, i);
473 if (ev->event == NULL)
476 if (GST_EVENT_TYPE (ev->event) == type) {
480 } else if (GST_EVENT_TYPE (ev->event) > type) {
489 /* should be called with OBJECT lock */
491 find_event (GstPad * pad, GstEvent * event)
497 events = pad->priv->events;
500 for (i = 0; i < len; i++) {
501 ev = &g_array_index (events, PadEvent, i);
502 if (event == ev->event)
504 else if (GST_EVENT_TYPE (ev->event) > GST_EVENT_TYPE (event))
512 /* should be called with OBJECT lock */
514 remove_event_by_type (GstPad * pad, GstEventType type)
520 events = pad->priv->events;
525 ev = &g_array_index (events, PadEvent, i);
526 if (ev->event == NULL)
529 if (GST_EVENT_TYPE (ev->event) > type)
531 else if (GST_EVENT_TYPE (ev->event) != type)
534 gst_event_unref (ev->event);
535 g_array_remove_index (events, i);
537 pad->priv->events_cookie++;
545 /* check all events on srcpad against those on sinkpad. All events that are not
546 * on sinkpad are marked as received=%FALSE and the PENDING_EVENTS is set on the
547 * srcpad so that the events will be sent next time */
548 /* should be called with srcpad and sinkpad LOCKS */
550 schedule_events (GstPad * srcpad, GstPad * sinkpad)
555 gboolean pending = FALSE;
557 events = srcpad->priv->events;
560 for (i = 0; i < len; i++) {
561 ev = &g_array_index (events, PadEvent, i);
562 if (ev->event == NULL)
565 if (sinkpad == NULL || !find_event (sinkpad, ev->event)) {
566 ev->received = FALSE;
571 GST_OBJECT_FLAG_SET (srcpad, GST_PAD_FLAG_PENDING_EVENTS);
574 typedef gboolean (*PadEventFunction) (GstPad * pad, PadEvent * ev,
577 /* should be called with pad LOCK */
579 events_foreach (GstPad * pad, PadEventFunction func, gpointer user_data)
586 events = pad->priv->events;
589 cookie = pad->priv->events_cookie;
593 PadEvent *ev, ev_ret;
595 ev = &g_array_index (events, PadEvent, i);
596 if (G_UNLIKELY (ev->event == NULL))
599 /* take aditional ref, func might release the lock */
600 ev_ret.event = gst_event_ref (ev->event);
601 ev_ret.received = ev->received;
603 ret = func (pad, &ev_ret, user_data);
605 /* recheck the cookie, lock might have been released and the list could have
607 if (G_UNLIKELY (cookie != pad->priv->events_cookie)) {
608 if (G_LIKELY (ev_ret.event))
609 gst_event_unref (ev_ret.event);
613 /* store the received state */
614 ev->received = ev_ret.received;
616 /* if the event changed, we need to do something */
617 if (G_UNLIKELY (ev->event != ev_ret.event)) {
618 if (G_UNLIKELY (ev_ret.event == NULL)) {
619 /* function unreffed and set the event to NULL, remove it */
620 gst_event_unref (ev->event);
621 g_array_remove_index (events, i);
623 cookie = ++pad->priv->events_cookie;
626 /* function gave a new event for us */
627 gst_event_take (&ev->event, ev_ret.event);
630 /* just unref, nothing changed */
631 gst_event_unref (ev_ret.event);
640 /* should be called with LOCK */
642 _apply_pad_offset (GstPad * pad, GstEvent * event, gboolean upstream)
646 GST_DEBUG_OBJECT (pad, "apply pad offset %" GST_STIME_FORMAT,
647 GST_STIME_ARGS (pad->offset));
649 if (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT) {
652 g_assert (!upstream);
654 /* copy segment values */
655 gst_event_copy_segment (event, &segment);
656 gst_event_unref (event);
658 gst_segment_offset_running_time (&segment, segment.format, pad->offset);
659 event = gst_event_new_segment (&segment);
662 event = gst_event_make_writable (event);
663 offset = gst_event_get_running_time_offset (event);
665 offset -= pad->offset;
667 offset += pad->offset;
668 gst_event_set_running_time_offset (event, offset);
673 static inline GstEvent *
674 apply_pad_offset (GstPad * pad, GstEvent * event, gboolean upstream)
676 if (G_UNLIKELY (pad->offset != 0))
677 return _apply_pad_offset (pad, event, upstream);
682 /* should be called with the OBJECT_LOCK */
684 get_pad_caps (GstPad * pad)
686 GstCaps *caps = NULL;
689 ev = find_event_by_type (pad, GST_EVENT_CAPS, 0);
691 gst_event_parse_caps (ev->event, &caps);
697 gst_pad_dispose (GObject * object)
699 GstPad *pad = GST_PAD_CAST (object);
702 GST_CAT_DEBUG_OBJECT (GST_CAT_REFCOUNTING, pad, "%p dispose", pad);
704 /* unlink the peer pad */
705 if ((peer = gst_pad_get_peer (pad))) {
706 /* window for MT unsafeness, someone else could unlink here
707 * and then we call unlink with wrong pads. The unlink
708 * function would catch this and safely return failed. */
709 if (GST_PAD_IS_SRC (pad))
710 gst_pad_unlink (pad, peer);
712 gst_pad_unlink (peer, pad);
714 gst_object_unref (peer);
717 gst_pad_set_pad_template (pad, NULL);
719 GST_OBJECT_LOCK (pad);
721 GST_OBJECT_UNLOCK (pad);
723 g_hook_list_clear (&pad->probes);
725 G_OBJECT_CLASS (parent_class)->dispose (object);
729 gst_pad_finalize (GObject * object)
731 GstPad *pad = GST_PAD_CAST (object);
734 /* in case the task is still around, clean it up */
735 if ((task = GST_PAD_TASK (pad))) {
736 gst_task_join (task);
737 GST_PAD_TASK (pad) = NULL;
738 gst_object_unref (task);
741 if (pad->activatenotify)
742 pad->activatenotify (pad->activatedata);
743 if (pad->activatemodenotify)
744 pad->activatemodenotify (pad->activatemodedata);
746 pad->linknotify (pad->linkdata);
747 if (pad->unlinknotify)
748 pad->unlinknotify (pad->unlinkdata);
749 if (pad->chainnotify)
750 pad->chainnotify (pad->chaindata);
751 if (pad->chainlistnotify)
752 pad->chainlistnotify (pad->chainlistdata);
753 if (pad->getrangenotify)
754 pad->getrangenotify (pad->getrangedata);
755 if (pad->eventnotify)
756 pad->eventnotify (pad->eventdata);
757 if (pad->querynotify)
758 pad->querynotify (pad->querydata);
759 if (pad->iterintlinknotify)
760 pad->iterintlinknotify (pad->iterintlinkdata);
762 g_rec_mutex_clear (&pad->stream_rec_lock);
763 g_cond_clear (&pad->block_cond);
764 g_array_free (pad->priv->events, TRUE);
766 G_OBJECT_CLASS (parent_class)->finalize (object);
770 gst_pad_set_property (GObject * object, guint prop_id,
771 const GValue * value, GParamSpec * pspec)
773 g_return_if_fail (GST_IS_PAD (object));
776 case PAD_PROP_DIRECTION:
777 GST_PAD_DIRECTION (object) = (GstPadDirection) g_value_get_enum (value);
779 case PAD_PROP_TEMPLATE:
780 gst_pad_set_pad_template (GST_PAD_CAST (object),
781 (GstPadTemplate *) g_value_get_object (value));
783 case PAD_PROP_OFFSET:
784 gst_pad_set_offset (GST_PAD_CAST (object), g_value_get_int64 (value));
787 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
793 gst_pad_get_property (GObject * object, guint prop_id,
794 GValue * value, GParamSpec * pspec)
796 g_return_if_fail (GST_IS_PAD (object));
800 GST_OBJECT_LOCK (object);
801 g_value_set_boxed (value, get_pad_caps (GST_PAD_CAST (object)));
802 GST_OBJECT_UNLOCK (object);
804 case PAD_PROP_DIRECTION:
805 g_value_set_enum (value, GST_PAD_DIRECTION (object));
807 case PAD_PROP_TEMPLATE:
808 g_value_set_object (value, GST_PAD_PAD_TEMPLATE (object));
810 case PAD_PROP_OFFSET:
811 g_value_set_int64 (value, gst_pad_get_offset (GST_PAD_CAST (object)));
814 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
821 * @name: (allow-none): the name of the new pad.
822 * @direction: the #GstPadDirection of the pad.
824 * Creates a new pad with the given name in the given direction.
825 * If name is %NULL, a guaranteed unique name (across all pads)
827 * This function makes a copy of the name so you can safely free the name.
829 * Returns: (transfer floating) (nullable): a new #GstPad, or %NULL in
835 gst_pad_new (const gchar * name, GstPadDirection direction)
837 return g_object_new (GST_TYPE_PAD,
838 "name", name, "direction", direction, NULL);
842 * gst_pad_new_from_template:
843 * @templ: the pad template to use
844 * @name: (allow-none): the name of the pad
846 * Creates a new pad with the given name from the given template.
847 * If name is %NULL, a guaranteed unique name (across all pads)
849 * This function makes a copy of the name so you can safely free the name.
851 * Returns: (transfer floating) (nullable): a new #GstPad, or %NULL in
855 gst_pad_new_from_template (GstPadTemplate * templ, const gchar * name)
857 g_return_val_if_fail (GST_IS_PAD_TEMPLATE (templ), NULL);
859 return g_object_new (GST_TYPE_PAD,
860 "name", name, "direction", templ->direction, "template", templ, NULL);
864 * gst_pad_new_from_static_template:
865 * @templ: the #GstStaticPadTemplate to use
866 * @name: the name of the pad
868 * Creates a new pad with the given name from the given static template.
869 * If name is %NULL, a guaranteed unique name (across all pads)
871 * This function makes a copy of the name so you can safely free the name.
873 * Returns: (transfer floating) (nullable): a new #GstPad, or %NULL in
877 gst_pad_new_from_static_template (GstStaticPadTemplate * templ,
881 GstPadTemplate *template;
883 template = gst_static_pad_template_get (templ);
884 pad = gst_pad_new_from_template (template, name);
885 gst_object_unref (template);
889 #define ACQUIRE_PARENT(pad, parent, label) \
891 if (G_LIKELY ((parent = GST_OBJECT_PARENT (pad)))) \
892 gst_object_ref (parent); \
893 else if (G_LIKELY (GST_PAD_NEEDS_PARENT (pad))) \
897 #define RELEASE_PARENT(parent) \
899 if (G_LIKELY (parent)) \
900 gst_object_unref (parent); \
904 * gst_pad_get_direction:
905 * @pad: a #GstPad to get the direction of.
907 * Gets the direction of the pad. The direction of the pad is
908 * decided at construction time so this function does not take
911 * Returns: the #GstPadDirection of the pad.
916 gst_pad_get_direction (GstPad * pad)
918 GstPadDirection result;
920 /* PAD_UNKNOWN is a little silly but we need some sort of
921 * error return value */
922 g_return_val_if_fail (GST_IS_PAD (pad), GST_PAD_UNKNOWN);
924 result = GST_PAD_DIRECTION (pad);
930 gst_pad_activate_default (GstPad * pad, GstObject * parent)
932 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
934 return activate_mode_internal (pad, parent, GST_PAD_MODE_PUSH, TRUE);
938 * gst_pad_mode_get_name:
939 * @mode: the pad mode
941 * Return the name of a pad mode, for use in debug messages mostly.
943 * Returns: short mnemonic for pad mode @mode
946 gst_pad_mode_get_name (GstPadMode mode)
949 case GST_PAD_MODE_NONE:
951 case GST_PAD_MODE_PUSH:
953 case GST_PAD_MODE_PULL:
962 pre_activate (GstPad * pad, GstPadMode new_mode)
965 case GST_PAD_MODE_NONE:
966 GST_OBJECT_LOCK (pad);
967 GST_DEBUG_OBJECT (pad, "setting PAD_MODE NONE, set flushing");
968 GST_PAD_SET_FLUSHING (pad);
969 pad->ABI.abi.last_flowret = GST_FLOW_FLUSHING;
970 GST_PAD_MODE (pad) = new_mode;
971 /* unlock blocked pads so element can resume and stop */
972 GST_PAD_BLOCK_BROADCAST (pad);
973 GST_OBJECT_UNLOCK (pad);
975 case GST_PAD_MODE_PUSH:
976 case GST_PAD_MODE_PULL:
977 GST_OBJECT_LOCK (pad);
978 GST_DEBUG_OBJECT (pad, "setting pad into %s mode, unset flushing",
979 gst_pad_mode_get_name (new_mode));
980 GST_PAD_UNSET_FLUSHING (pad);
981 pad->ABI.abi.last_flowret = GST_FLOW_OK;
982 GST_PAD_MODE (pad) = new_mode;
983 if (GST_PAD_IS_SINK (pad)) {
985 /* make sure the peer src pad sends us all events */
986 if ((peer = GST_PAD_PEER (pad))) {
987 gst_object_ref (peer);
988 GST_OBJECT_UNLOCK (pad);
990 GST_DEBUG_OBJECT (pad, "reschedule events on peer %s:%s",
991 GST_DEBUG_PAD_NAME (peer));
993 GST_OBJECT_LOCK (peer);
994 schedule_events (peer, NULL);
995 GST_OBJECT_UNLOCK (peer);
997 gst_object_unref (peer);
999 GST_OBJECT_UNLOCK (pad);
1002 GST_OBJECT_UNLOCK (pad);
1009 post_activate (GstPad * pad, GstPadMode new_mode)
1012 case GST_PAD_MODE_NONE:
1013 /* ensures that streaming stops */
1014 GST_PAD_STREAM_LOCK (pad);
1015 GST_DEBUG_OBJECT (pad, "stopped streaming");
1016 GST_OBJECT_LOCK (pad);
1017 remove_events (pad);
1018 GST_OBJECT_UNLOCK (pad);
1019 GST_PAD_STREAM_UNLOCK (pad);
1021 case GST_PAD_MODE_PUSH:
1022 case GST_PAD_MODE_PULL:
1029 * gst_pad_set_active:
1030 * @pad: the #GstPad to activate or deactivate.
1031 * @active: whether or not the pad should be active.
1033 * Activates or deactivates the given pad.
1034 * Normally called from within core state change functions.
1036 * If @active, makes sure the pad is active. If it is already active, either in
1037 * push or pull mode, just return. Otherwise dispatches to the pad's activate
1038 * function to perform the actual activation.
1040 * If not @active, calls gst_pad_activate_mode() with the pad's current mode
1041 * and a %FALSE argument.
1043 * Returns: %TRUE if the operation was successful.
1048 gst_pad_set_active (GstPad * pad, gboolean active)
1052 gboolean ret = FALSE;
1054 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1056 GST_OBJECT_LOCK (pad);
1057 old = GST_PAD_MODE (pad);
1058 ACQUIRE_PARENT (pad, parent, no_parent);
1059 GST_OBJECT_UNLOCK (pad);
1062 if (old == GST_PAD_MODE_NONE) {
1063 GST_DEBUG_OBJECT (pad, "activating pad from none");
1064 ret = (GST_PAD_ACTIVATEFUNC (pad)) (pad, parent);
1066 pad->ABI.abi.last_flowret = GST_FLOW_OK;
1068 GST_DEBUG_OBJECT (pad, "pad was active in %s mode",
1069 gst_pad_mode_get_name (old));
1073 if (old == GST_PAD_MODE_NONE) {
1074 GST_DEBUG_OBJECT (pad, "pad was inactive");
1077 GST_DEBUG_OBJECT (pad, "deactivating pad from %s mode",
1078 gst_pad_mode_get_name (old));
1079 ret = activate_mode_internal (pad, parent, old, FALSE);
1081 pad->ABI.abi.last_flowret = GST_FLOW_FLUSHING;
1085 RELEASE_PARENT (parent);
1087 if (G_UNLIKELY (!ret))
1095 GST_DEBUG_OBJECT (pad, "no parent");
1096 GST_OBJECT_UNLOCK (pad);
1101 GST_OBJECT_LOCK (pad);
1103 g_critical ("Failed to deactivate pad %s:%s, very bad",
1104 GST_DEBUG_PAD_NAME (pad));
1106 GST_WARNING_OBJECT (pad, "Failed to activate pad");
1108 GST_OBJECT_UNLOCK (pad);
1114 activate_mode_internal (GstPad * pad, GstObject * parent, GstPadMode mode,
1117 gboolean res = FALSE;
1118 GstPadMode old, new;
1119 GstPadDirection dir;
1122 GST_OBJECT_LOCK (pad);
1123 old = GST_PAD_MODE (pad);
1124 dir = GST_PAD_DIRECTION (pad);
1125 GST_OBJECT_UNLOCK (pad);
1127 new = active ? mode : GST_PAD_MODE_NONE;
1132 if (active && old != mode && old != GST_PAD_MODE_NONE) {
1133 /* pad was activate in the wrong direction, deactivate it
1134 * and reactivate it in the requested mode */
1135 GST_DEBUG_OBJECT (pad, "deactivating pad from %s mode",
1136 gst_pad_mode_get_name (old));
1138 if (G_UNLIKELY (!activate_mode_internal (pad, parent, old, FALSE)))
1139 goto deactivate_failed;
1140 old = GST_PAD_MODE_NONE;
1144 case GST_PAD_MODE_PULL:
1146 if (dir == GST_PAD_SINK) {
1147 if ((peer = gst_pad_get_peer (pad))) {
1148 GST_DEBUG_OBJECT (pad, "calling peer");
1149 if (G_UNLIKELY (!gst_pad_activate_mode (peer, mode, active)))
1151 gst_object_unref (peer);
1153 /* there is no peer, this is only fatal when we activate. When we
1154 * deactivate, we must assume the application has unlinked the peer and
1155 * will deactivate it eventually. */
1159 GST_DEBUG_OBJECT (pad, "deactivating unlinked pad");
1162 if (G_UNLIKELY (GST_PAD_GETRANGEFUNC (pad) == NULL))
1163 goto failure; /* Can't activate pull on a src without a
1164 getrange function */
1172 /* Mark pad as needing reconfiguration */
1174 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_NEED_RECONFIGURE);
1175 pre_activate (pad, new);
1177 if (GST_PAD_ACTIVATEMODEFUNC (pad)) {
1178 if (G_UNLIKELY (!GST_PAD_ACTIVATEMODEFUNC (pad) (pad, parent, mode,
1182 /* can happen for sinks of passthrough elements */
1185 post_activate (pad, new);
1187 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "%s in %s mode",
1188 active ? "activated" : "deactivated", gst_pad_mode_get_name (mode));
1193 /* Clear sticky flags on deactivation */
1195 GST_OBJECT_LOCK (pad);
1196 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_NEED_RECONFIGURE);
1197 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_EOS);
1198 GST_OBJECT_UNLOCK (pad);
1206 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "already %s in %s mode",
1207 active ? "activated" : "deactivated", gst_pad_mode_get_name (mode));
1212 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
1213 "failed to %s in switch to %s mode from %s mode",
1214 (active ? "activate" : "deactivate"), gst_pad_mode_get_name (mode),
1215 gst_pad_mode_get_name (old));
1220 GST_OBJECT_LOCK (peer);
1221 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
1222 "activate_mode on peer (%s:%s) failed", GST_DEBUG_PAD_NAME (peer));
1223 GST_OBJECT_UNLOCK (peer);
1224 gst_object_unref (peer);
1229 GST_CAT_INFO_OBJECT (GST_CAT_PADS, pad, "can't activate unlinked sink "
1230 "pad in pull mode");
1235 GST_OBJECT_LOCK (pad);
1236 GST_CAT_INFO_OBJECT (GST_CAT_PADS, pad, "failed to %s in %s mode",
1237 active ? "activate" : "deactivate", gst_pad_mode_get_name (mode));
1238 GST_PAD_SET_FLUSHING (pad);
1239 GST_PAD_MODE (pad) = old;
1240 GST_OBJECT_UNLOCK (pad);
1246 * gst_pad_activate_mode:
1247 * @pad: the #GstPad to activate or deactivate.
1248 * @mode: the requested activation mode
1249 * @active: whether or not the pad should be active.
1251 * Activates or deactivates the given pad in @mode via dispatching to the
1252 * pad's activatemodefunc. For use from within pad activation functions only.
1254 * If you don't know what this is, you probably don't want to call it.
1256 * Returns: %TRUE if the operation was successful.
1261 gst_pad_activate_mode (GstPad * pad, GstPadMode mode, gboolean active)
1266 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1268 GST_OBJECT_LOCK (pad);
1269 ACQUIRE_PARENT (pad, parent, no_parent);
1270 GST_OBJECT_UNLOCK (pad);
1272 res = activate_mode_internal (pad, parent, mode, active);
1274 RELEASE_PARENT (parent);
1280 GST_WARNING_OBJECT (pad, "no parent");
1281 GST_OBJECT_UNLOCK (pad);
1287 * gst_pad_is_active:
1288 * @pad: the #GstPad to query
1290 * Query if a pad is active
1292 * Returns: %TRUE if the pad is active.
1297 gst_pad_is_active (GstPad * pad)
1299 gboolean result = FALSE;
1301 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1303 GST_OBJECT_LOCK (pad);
1304 result = GST_PAD_IS_ACTIVE (pad);
1305 GST_OBJECT_UNLOCK (pad);
1311 cleanup_hook (GstPad * pad, GHook * hook)
1313 GstPadProbeType type;
1315 if (!G_HOOK_IS_VALID (hook))
1318 type = (hook->flags) >> G_HOOK_FLAG_USER_SHIFT;
1320 if (type & GST_PAD_PROBE_TYPE_BLOCKING) {
1321 /* unblock when we remove the last blocking probe */
1323 GST_DEBUG_OBJECT (pad, "remove blocking probe, now %d left",
1326 /* Might have new probes now that want to be called */
1327 GST_PAD_BLOCK_BROADCAST (pad);
1329 if (pad->num_blocked == 0) {
1330 GST_DEBUG_OBJECT (pad, "last blocking probe removed, unblocking");
1331 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_BLOCKED);
1334 g_hook_destroy_link (&pad->probes, hook);
1339 * gst_pad_add_probe:
1340 * @pad: the #GstPad to add the probe to
1341 * @mask: the probe mask
1342 * @callback: #GstPadProbeCallback that will be called with notifications of
1344 * @user_data: (closure): user data passed to the callback
1345 * @destroy_data: #GDestroyNotify for user_data
1347 * Be notified of different states of pads. The provided callback is called for
1348 * every state that matches @mask.
1350 * Probes are called in groups: First GST_PAD_PROBE_TYPE_BLOCK probes are
1351 * called, then others, then finally GST_PAD_PROBE_TYPE_IDLE. The only
1352 * exception here are GST_PAD_PROBE_TYPE_IDLE probes that are called
1353 * immediately if the pad is already idle while calling gst_pad_add_probe().
1354 * In each of the groups, probes are called in the order in which they were
1357 * Returns: an id or 0 if no probe is pending. The id can be used to remove the
1358 * probe with gst_pad_remove_probe(). When using GST_PAD_PROBE_TYPE_IDLE it can
1359 * happen that the probe can be run immediately and if the probe returns
1360 * GST_PAD_PROBE_REMOVE this functions returns 0.
1365 gst_pad_add_probe (GstPad * pad, GstPadProbeType mask,
1366 GstPadProbeCallback callback, gpointer user_data,
1367 GDestroyNotify destroy_data)
1372 g_return_val_if_fail (GST_IS_PAD (pad), 0);
1373 g_return_val_if_fail (mask != 0, 0);
1375 GST_OBJECT_LOCK (pad);
1377 /* make a new probe */
1378 hook = g_hook_alloc (&pad->probes);
1380 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "adding probe for mask 0x%08x",
1383 /* when no contraints are given for the types, assume all types are
1385 if ((mask & _PAD_PROBE_TYPE_ALL_BOTH_AND_FLUSH) == 0)
1386 mask |= GST_PAD_PROBE_TYPE_ALL_BOTH;
1387 if ((mask & GST_PAD_PROBE_TYPE_SCHEDULING) == 0)
1388 mask |= GST_PAD_PROBE_TYPE_SCHEDULING;
1390 /* store our flags and other fields */
1391 hook->flags |= (mask << G_HOOK_FLAG_USER_SHIFT);
1392 hook->func = callback;
1393 hook->data = user_data;
1394 hook->destroy = destroy_data;
1395 PROBE_COOKIE (hook) = (pad->priv->probe_cookie - 1);
1398 g_hook_append (&pad->probes, hook);
1400 /* incremenent cookie so that the new hook get's called */
1401 pad->priv->probe_list_cookie++;
1403 /* get the id of the hook, we return this and it can be used to remove the
1405 res = hook->hook_id;
1407 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "got probe id %lu", res);
1409 if (mask & GST_PAD_PROBE_TYPE_BLOCKING) {
1410 /* we have a block probe */
1412 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_BLOCKED);
1413 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "added blocking probe, "
1414 "now %d blocking probes", pad->num_blocked);
1416 /* Might have new probes now that want to be called */
1417 GST_PAD_BLOCK_BROADCAST (pad);
1420 /* call the callback if we need to be called for idle callbacks */
1421 if ((mask & GST_PAD_PROBE_TYPE_IDLE) && (callback != NULL)) {
1422 if (pad->priv->using > 0) {
1423 /* the pad is in use, we can't signal the idle callback yet. Since we set the
1424 * flag above, the last thread to leave the push will do the callback. New
1425 * threads going into the push will block. */
1426 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
1427 "pad is in use, delay idle callback");
1428 GST_OBJECT_UNLOCK (pad);
1430 GstPadProbeInfo info = { GST_PAD_PROBE_TYPE_IDLE, res, };
1431 GstPadProbeReturn ret;
1433 /* Keep another ref, the callback could destroy the pad */
1434 gst_object_ref (pad);
1435 pad->priv->idle_running++;
1437 /* the pad is idle now, we can signal the idle callback now */
1438 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
1439 "pad is idle, trigger idle callback");
1440 GST_OBJECT_UNLOCK (pad);
1442 ret = callback (pad, &info, user_data);
1444 GST_OBJECT_LOCK (pad);
1446 case GST_PAD_PROBE_REMOVE:
1447 /* remove the probe */
1448 GST_DEBUG_OBJECT (pad, "asked to remove hook");
1449 cleanup_hook (pad, hook);
1452 case GST_PAD_PROBE_DROP:
1453 GST_DEBUG_OBJECT (pad, "asked to drop item");
1455 case GST_PAD_PROBE_PASS:
1456 GST_DEBUG_OBJECT (pad, "asked to pass item");
1458 case GST_PAD_PROBE_OK:
1459 GST_DEBUG_OBJECT (pad, "probe returned OK");
1461 case GST_PAD_PROBE_HANDLED:
1462 GST_DEBUG_OBJECT (pad, "probe handled the data");
1465 GST_DEBUG_OBJECT (pad, "probe returned %d", ret);
1468 pad->priv->idle_running--;
1469 if (pad->priv->idle_running == 0) {
1470 GST_PAD_BLOCK_BROADCAST (pad);
1472 GST_OBJECT_UNLOCK (pad);
1474 gst_object_unref (pad);
1477 GST_OBJECT_UNLOCK (pad);
1483 * gst_pad_remove_probe:
1484 * @pad: the #GstPad with the probe
1485 * @id: the probe id to remove
1487 * Remove the probe with @id from @pad.
1492 gst_pad_remove_probe (GstPad * pad, gulong id)
1496 g_return_if_fail (GST_IS_PAD (pad));
1498 GST_OBJECT_LOCK (pad);
1500 hook = g_hook_get (&pad->probes, id);
1504 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "removing hook %ld",
1506 cleanup_hook (pad, hook);
1507 GST_OBJECT_UNLOCK (pad);
1513 GST_OBJECT_UNLOCK (pad);
1514 g_warning ("%s: pad `%p' has no probe with id `%lu'", G_STRLOC, pad, id);
1520 * gst_pad_is_blocked:
1521 * @pad: the #GstPad to query
1523 * Checks if the pad is blocked or not. This function returns the
1524 * last requested state of the pad. It is not certain that the pad
1525 * is actually blocking at this point (see gst_pad_is_blocking()).
1527 * Returns: %TRUE if the pad is blocked.
1532 gst_pad_is_blocked (GstPad * pad)
1534 gboolean result = FALSE;
1536 g_return_val_if_fail (GST_IS_PAD (pad), result);
1538 GST_OBJECT_LOCK (pad);
1539 result = GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_BLOCKED);
1540 GST_OBJECT_UNLOCK (pad);
1546 * gst_pad_is_blocking:
1547 * @pad: the #GstPad to query
1549 * Checks if the pad is blocking or not. This is a guaranteed state
1550 * of whether the pad is actually blocking on a #GstBuffer or a #GstEvent.
1552 * Returns: %TRUE if the pad is blocking.
1557 gst_pad_is_blocking (GstPad * pad)
1559 gboolean result = FALSE;
1561 g_return_val_if_fail (GST_IS_PAD (pad), result);
1563 GST_OBJECT_LOCK (pad);
1564 /* the blocking flag is only valid if the pad is not flushing */
1565 result = GST_PAD_IS_BLOCKING (pad) && !GST_PAD_IS_FLUSHING (pad);
1566 GST_OBJECT_UNLOCK (pad);
1572 * gst_pad_needs_reconfigure:
1573 * @pad: the #GstPad to check
1575 * Check the #GST_PAD_FLAG_NEED_RECONFIGURE flag on @pad and return %TRUE
1576 * if the flag was set.
1578 * Returns: %TRUE is the GST_PAD_FLAG_NEED_RECONFIGURE flag is set on @pad.
1581 gst_pad_needs_reconfigure (GstPad * pad)
1583 gboolean reconfigure;
1585 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1587 GST_OBJECT_LOCK (pad);
1588 reconfigure = GST_PAD_NEEDS_RECONFIGURE (pad);
1589 GST_DEBUG_OBJECT (pad, "peeking RECONFIGURE flag %d", reconfigure);
1590 GST_OBJECT_UNLOCK (pad);
1596 * gst_pad_check_reconfigure:
1597 * @pad: the #GstPad to check
1599 * Check and clear the #GST_PAD_FLAG_NEED_RECONFIGURE flag on @pad and return %TRUE
1600 * if the flag was set.
1602 * Returns: %TRUE is the GST_PAD_FLAG_NEED_RECONFIGURE flag was set on @pad.
1605 gst_pad_check_reconfigure (GstPad * pad)
1607 gboolean reconfigure;
1609 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1611 GST_OBJECT_LOCK (pad);
1612 reconfigure = GST_PAD_NEEDS_RECONFIGURE (pad);
1614 GST_DEBUG_OBJECT (pad, "remove RECONFIGURE flag");
1615 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_NEED_RECONFIGURE);
1617 GST_OBJECT_UNLOCK (pad);
1623 * gst_pad_mark_reconfigure:
1624 * @pad: the #GstPad to mark
1626 * Mark a pad for needing reconfiguration. The next call to
1627 * gst_pad_check_reconfigure() will return %TRUE after this call.
1630 gst_pad_mark_reconfigure (GstPad * pad)
1632 g_return_if_fail (GST_IS_PAD (pad));
1634 GST_OBJECT_LOCK (pad);
1635 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_NEED_RECONFIGURE);
1636 GST_OBJECT_UNLOCK (pad);
1640 * gst_pad_set_activate_function:
1642 * @f: the #GstPadActivateFunction to set.
1644 * Calls gst_pad_set_activate_function_full() with %NULL for the user_data and
1648 * gst_pad_set_activate_function_full:
1650 * @activate: the #GstPadActivateFunction to set.
1651 * @user_data: user_data passed to @notify
1652 * @notify: notify called when @activate will not be used anymore.
1654 * Sets the given activate function for @pad. The activate function will
1655 * dispatch to gst_pad_activate_mode() to perform the actual activation.
1656 * Only makes sense to set on sink pads.
1658 * Call this function if your sink pad can start a pull-based task.
1661 gst_pad_set_activate_function_full (GstPad * pad,
1662 GstPadActivateFunction activate, gpointer user_data, GDestroyNotify notify)
1664 g_return_if_fail (GST_IS_PAD (pad));
1666 if (pad->activatenotify)
1667 pad->activatenotify (pad->activatedata);
1668 GST_PAD_ACTIVATEFUNC (pad) = activate;
1669 pad->activatedata = user_data;
1670 pad->activatenotify = notify;
1672 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "activatefunc set to %s",
1673 GST_DEBUG_FUNCPTR_NAME (activate));
1677 * gst_pad_set_activatemode_function:
1679 * @f: the #GstPadActivateModeFunction to set.
1681 * Calls gst_pad_set_activatemode_function_full() with %NULL for the user_data and
1685 * gst_pad_set_activatemode_function_full:
1687 * @activatemode: the #GstPadActivateModeFunction to set.
1688 * @user_data: user_data passed to @notify
1689 * @notify: notify called when @activatemode will not be used anymore.
1691 * Sets the given activate_mode function for the pad. An activate_mode function
1692 * prepares the element for data passing.
1695 gst_pad_set_activatemode_function_full (GstPad * pad,
1696 GstPadActivateModeFunction activatemode, gpointer user_data,
1697 GDestroyNotify notify)
1699 g_return_if_fail (GST_IS_PAD (pad));
1701 if (pad->activatemodenotify)
1702 pad->activatemodenotify (pad->activatemodedata);
1703 GST_PAD_ACTIVATEMODEFUNC (pad) = activatemode;
1704 pad->activatemodedata = user_data;
1705 pad->activatemodenotify = notify;
1707 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "activatemodefunc set to %s",
1708 GST_DEBUG_FUNCPTR_NAME (activatemode));
1712 * gst_pad_set_chain_function:
1713 * @p: a sink #GstPad.
1714 * @f: the #GstPadChainFunction to set.
1716 * Calls gst_pad_set_chain_function_full() with %NULL for the user_data and
1720 * gst_pad_set_chain_function_full:
1721 * @pad: a sink #GstPad.
1722 * @chain: the #GstPadChainFunction to set.
1723 * @user_data: user_data passed to @notify
1724 * @notify: notify called when @chain will not be used anymore.
1726 * Sets the given chain function for the pad. The chain function is called to
1727 * process a #GstBuffer input buffer. see #GstPadChainFunction for more details.
1730 gst_pad_set_chain_function_full (GstPad * pad, GstPadChainFunction chain,
1731 gpointer user_data, GDestroyNotify notify)
1733 g_return_if_fail (GST_IS_PAD (pad));
1734 g_return_if_fail (GST_PAD_IS_SINK (pad));
1736 if (pad->chainnotify)
1737 pad->chainnotify (pad->chaindata);
1738 GST_PAD_CHAINFUNC (pad) = chain;
1739 pad->chaindata = user_data;
1740 pad->chainnotify = notify;
1742 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "chainfunc set to %s",
1743 GST_DEBUG_FUNCPTR_NAME (chain));
1747 * gst_pad_set_chain_list_function:
1748 * @p: a sink #GstPad.
1749 * @f: the #GstPadChainListFunction to set.
1751 * Calls gst_pad_set_chain_list_function_full() with %NULL for the user_data and
1755 * gst_pad_set_chain_list_function_full:
1756 * @pad: a sink #GstPad.
1757 * @chainlist: the #GstPadChainListFunction to set.
1758 * @user_data: user_data passed to @notify
1759 * @notify: notify called when @chainlist will not be used anymore.
1761 * Sets the given chain list function for the pad. The chainlist function is
1762 * called to process a #GstBufferList input buffer list. See
1763 * #GstPadChainListFunction for more details.
1766 gst_pad_set_chain_list_function_full (GstPad * pad,
1767 GstPadChainListFunction chainlist, gpointer user_data,
1768 GDestroyNotify notify)
1770 g_return_if_fail (GST_IS_PAD (pad));
1771 g_return_if_fail (GST_PAD_IS_SINK (pad));
1773 if (pad->chainlistnotify)
1774 pad->chainlistnotify (pad->chainlistdata);
1775 GST_PAD_CHAINLISTFUNC (pad) = chainlist;
1776 pad->chainlistdata = user_data;
1777 pad->chainlistnotify = notify;
1779 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "chainlistfunc set to %s",
1780 GST_DEBUG_FUNCPTR_NAME (chainlist));
1784 * gst_pad_set_getrange_function:
1785 * @p: a source #GstPad.
1786 * @f: the #GstPadGetRangeFunction to set.
1788 * Calls gst_pad_set_getrange_function_full() with %NULL for the user_data and
1792 * gst_pad_set_getrange_function_full:
1793 * @pad: a source #GstPad.
1794 * @get: the #GstPadGetRangeFunction to set.
1795 * @user_data: user_data passed to @notify
1796 * @notify: notify called when @get will not be used anymore.
1798 * Sets the given getrange function for the pad. The getrange function is
1799 * called to produce a new #GstBuffer to start the processing pipeline. see
1800 * #GstPadGetRangeFunction for a description of the getrange function.
1803 gst_pad_set_getrange_function_full (GstPad * pad, GstPadGetRangeFunction get,
1804 gpointer user_data, GDestroyNotify notify)
1806 g_return_if_fail (GST_IS_PAD (pad));
1807 g_return_if_fail (GST_PAD_IS_SRC (pad));
1809 if (pad->getrangenotify)
1810 pad->getrangenotify (pad->getrangedata);
1811 GST_PAD_GETRANGEFUNC (pad) = get;
1812 pad->getrangedata = user_data;
1813 pad->getrangenotify = notify;
1815 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "getrangefunc set to %s",
1816 GST_DEBUG_FUNCPTR_NAME (get));
1820 * gst_pad_set_event_function:
1821 * @p: a #GstPad of either direction.
1822 * @f: the #GstPadEventFunction to set.
1824 * Calls gst_pad_set_event_function_full() with %NULL for the user_data and
1828 * gst_pad_set_event_function_full:
1829 * @pad: a #GstPad of either direction.
1830 * @event: the #GstPadEventFunction to set.
1831 * @user_data: user_data passed to @notify
1832 * @notify: notify called when @event will not be used anymore.
1834 * Sets the given event handler for the pad.
1837 gst_pad_set_event_function_full (GstPad * pad, GstPadEventFunction event,
1838 gpointer user_data, GDestroyNotify notify)
1840 g_return_if_fail (GST_IS_PAD (pad));
1842 if (pad->eventnotify)
1843 pad->eventnotify (pad->eventdata);
1844 GST_PAD_EVENTFUNC (pad) = event;
1845 pad->eventdata = user_data;
1846 pad->eventnotify = notify;
1848 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "eventfunc for set to %s",
1849 GST_DEBUG_FUNCPTR_NAME (event));
1853 event_wrap (GstPad * pad, GstObject * object, GstEvent * event)
1857 ret = GST_PAD_EVENTFULLFUNC (pad) (pad, object, event);
1858 if (ret == GST_FLOW_OK)
1864 * gst_pad_set_event_full_function:
1865 * @p: a #GstPad of either direction.
1866 * @f: the #GstPadEventFullFunction to set.
1868 * Calls gst_pad_set_event_full_function_full() with %NULL for the user_data and
1872 * gst_pad_set_event_full_function_full:
1873 * @pad: a #GstPad of either direction.
1874 * @event: the #GstPadEventFullFunction to set.
1875 * @user_data: user_data passed to @notify
1876 * @notify: notify called when @event will not be used anymore.
1878 * Sets the given event handler for the pad.
1883 gst_pad_set_event_full_function_full (GstPad * pad,
1884 GstPadEventFullFunction event, gpointer user_data, GDestroyNotify notify)
1886 g_return_if_fail (GST_IS_PAD (pad));
1888 if (pad->eventnotify)
1889 pad->eventnotify (pad->eventdata);
1890 GST_PAD_EVENTFULLFUNC (pad) = event;
1891 GST_PAD_EVENTFUNC (pad) = event_wrap;
1892 pad->eventdata = user_data;
1893 pad->eventnotify = notify;
1895 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "eventfullfunc for set to %s",
1896 GST_DEBUG_FUNCPTR_NAME (event));
1900 * gst_pad_set_query_function:
1901 * @p: a #GstPad of either direction.
1902 * @f: the #GstPadQueryFunction to set.
1904 * Calls gst_pad_set_query_function_full() with %NULL for the user_data and
1908 * gst_pad_set_query_function_full:
1909 * @pad: a #GstPad of either direction.
1910 * @query: the #GstPadQueryFunction to set.
1911 * @user_data: user_data passed to @notify
1912 * @notify: notify called when @query will not be used anymore.
1914 * Set the given query function for the pad.
1917 gst_pad_set_query_function_full (GstPad * pad, GstPadQueryFunction query,
1918 gpointer user_data, GDestroyNotify notify)
1920 g_return_if_fail (GST_IS_PAD (pad));
1922 if (pad->querynotify)
1923 pad->querynotify (pad->querydata);
1924 GST_PAD_QUERYFUNC (pad) = query;
1925 pad->querydata = user_data;
1926 pad->querynotify = notify;
1928 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "queryfunc set to %s",
1929 GST_DEBUG_FUNCPTR_NAME (query));
1933 * gst_pad_set_iterate_internal_links_function:
1934 * @p: a #GstPad of either direction.
1935 * @f: the #GstPadIterIntLinkFunction to set.
1937 * Calls gst_pad_set_iterate_internal_links_function_full() with %NULL
1938 * for the user_data and notify.
1941 * gst_pad_set_iterate_internal_links_function_full:
1942 * @pad: a #GstPad of either direction.
1943 * @iterintlink: the #GstPadIterIntLinkFunction to set.
1944 * @user_data: user_data passed to @notify
1945 * @notify: notify called when @iterintlink will not be used anymore.
1947 * Sets the given internal link iterator function for the pad.
1950 gst_pad_set_iterate_internal_links_function_full (GstPad * pad,
1951 GstPadIterIntLinkFunction iterintlink, gpointer user_data,
1952 GDestroyNotify notify)
1954 g_return_if_fail (GST_IS_PAD (pad));
1956 if (pad->iterintlinknotify)
1957 pad->iterintlinknotify (pad->iterintlinkdata);
1958 GST_PAD_ITERINTLINKFUNC (pad) = iterintlink;
1959 pad->iterintlinkdata = user_data;
1960 pad->iterintlinknotify = notify;
1962 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "internal link iterator set to %s",
1963 GST_DEBUG_FUNCPTR_NAME (iterintlink));
1967 * gst_pad_set_link_function:
1969 * @f: the #GstPadLinkFunction to set.
1971 * Calls gst_pad_set_link_function_full() with %NULL
1972 * for the user_data and notify.
1975 * gst_pad_set_link_function_full:
1977 * @link: the #GstPadLinkFunction to set.
1978 * @user_data: user_data passed to @notify
1979 * @notify: notify called when @link will not be used anymore.
1981 * Sets the given link function for the pad. It will be called when
1982 * the pad is linked with another pad.
1984 * The return value #GST_PAD_LINK_OK should be used when the connection can be
1987 * The return value #GST_PAD_LINK_REFUSED should be used when the connection
1988 * cannot be made for some reason.
1990 * If @link is installed on a source pad, it should call the #GstPadLinkFunction
1991 * of the peer sink pad, if present.
1994 gst_pad_set_link_function_full (GstPad * pad, GstPadLinkFunction link,
1995 gpointer user_data, GDestroyNotify notify)
1997 g_return_if_fail (GST_IS_PAD (pad));
1999 if (pad->linknotify)
2000 pad->linknotify (pad->linkdata);
2001 GST_PAD_LINKFUNC (pad) = link;
2002 pad->linkdata = user_data;
2003 pad->linknotify = notify;
2005 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "linkfunc set to %s",
2006 GST_DEBUG_FUNCPTR_NAME (link));
2010 * gst_pad_set_unlink_function:
2012 * @f: the #GstPadUnlinkFunction to set.
2014 * Calls gst_pad_set_unlink_function_full() with %NULL
2015 * for the user_data and notify.
2018 * gst_pad_set_unlink_function_full:
2020 * @unlink: the #GstPadUnlinkFunction to set.
2021 * @user_data: user_data passed to @notify
2022 * @notify: notify called when @unlink will not be used anymore.
2024 * Sets the given unlink function for the pad. It will be called
2025 * when the pad is unlinked.
2028 gst_pad_set_unlink_function_full (GstPad * pad, GstPadUnlinkFunction unlink,
2029 gpointer user_data, GDestroyNotify notify)
2031 g_return_if_fail (GST_IS_PAD (pad));
2033 if (pad->unlinknotify)
2034 pad->unlinknotify (pad->unlinkdata);
2035 GST_PAD_UNLINKFUNC (pad) = unlink;
2036 pad->unlinkdata = user_data;
2037 pad->unlinknotify = notify;
2039 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "unlinkfunc set to %s",
2040 GST_DEBUG_FUNCPTR_NAME (unlink));
2045 * @srcpad: the source #GstPad to unlink.
2046 * @sinkpad: the sink #GstPad to unlink.
2048 * Unlinks the source pad from the sink pad. Will emit the #GstPad::unlinked
2049 * signal on both pads.
2051 * Returns: %TRUE if the pads were unlinked. This function returns %FALSE if
2052 * the pads were not linked together.
2057 gst_pad_unlink (GstPad * srcpad, GstPad * sinkpad)
2059 gboolean result = FALSE;
2060 GstElement *parent = NULL;
2062 g_return_val_if_fail (GST_IS_PAD (srcpad), FALSE);
2063 g_return_val_if_fail (GST_PAD_IS_SRC (srcpad), FALSE);
2064 g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
2065 g_return_val_if_fail (GST_PAD_IS_SINK (sinkpad), FALSE);
2067 GST_TRACER_PAD_UNLINK_PRE (srcpad, sinkpad);
2069 GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "unlinking %s:%s(%p) and %s:%s(%p)",
2070 GST_DEBUG_PAD_NAME (srcpad), srcpad,
2071 GST_DEBUG_PAD_NAME (sinkpad), sinkpad);
2073 /* We need to notify the parent before taking any pad locks as the bin in
2074 * question might be waiting for a lock on the pad while holding its lock
2075 * that our message will try to take. */
2076 if ((parent = GST_ELEMENT_CAST (gst_pad_get_parent (srcpad)))) {
2077 if (GST_IS_ELEMENT (parent)) {
2078 gst_element_post_message (parent,
2079 gst_message_new_structure_change (GST_OBJECT_CAST (sinkpad),
2080 GST_STRUCTURE_CHANGE_TYPE_PAD_UNLINK, parent, TRUE));
2082 gst_object_unref (parent);
2087 GST_OBJECT_LOCK (srcpad);
2088 GST_OBJECT_LOCK (sinkpad);
2090 if (G_UNLIKELY (GST_PAD_PEER (srcpad) != sinkpad))
2091 goto not_linked_together;
2093 if (GST_PAD_UNLINKFUNC (srcpad)) {
2094 GstObject *tmpparent;
2096 ACQUIRE_PARENT (srcpad, tmpparent, no_src_parent);
2098 GST_PAD_UNLINKFUNC (srcpad) (srcpad, tmpparent);
2099 RELEASE_PARENT (tmpparent);
2102 if (GST_PAD_UNLINKFUNC (sinkpad)) {
2103 GstObject *tmpparent;
2105 ACQUIRE_PARENT (sinkpad, tmpparent, no_sink_parent);
2107 GST_PAD_UNLINKFUNC (sinkpad) (sinkpad, tmpparent);
2108 RELEASE_PARENT (tmpparent);
2112 /* first clear peers */
2113 GST_PAD_PEER (srcpad) = NULL;
2114 GST_PAD_PEER (sinkpad) = NULL;
2116 GST_OBJECT_UNLOCK (sinkpad);
2117 GST_OBJECT_UNLOCK (srcpad);
2119 /* fire off a signal to each of the pads telling them
2120 * that they've been unlinked */
2121 g_signal_emit (srcpad, gst_pad_signals[PAD_UNLINKED], 0, sinkpad);
2122 g_signal_emit (sinkpad, gst_pad_signals[PAD_UNLINKED], 0, srcpad);
2124 GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "unlinked %s:%s and %s:%s",
2125 GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
2130 if (parent != NULL) {
2131 gst_element_post_message (parent,
2132 gst_message_new_structure_change (GST_OBJECT_CAST (sinkpad),
2133 GST_STRUCTURE_CHANGE_TYPE_PAD_UNLINK, parent, FALSE));
2134 gst_object_unref (parent);
2136 GST_TRACER_PAD_UNLINK_POST (srcpad, sinkpad, result);
2140 not_linked_together:
2142 /* we do not emit a warning in this case because unlinking cannot
2143 * be made MT safe.*/
2144 GST_OBJECT_UNLOCK (sinkpad);
2145 GST_OBJECT_UNLOCK (srcpad);
2151 * gst_pad_is_linked:
2152 * @pad: pad to check
2154 * Checks if a @pad is linked to another pad or not.
2156 * Returns: %TRUE if the pad is linked, %FALSE otherwise.
2161 gst_pad_is_linked (GstPad * pad)
2165 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2167 GST_OBJECT_LOCK (pad);
2168 result = (GST_PAD_PEER (pad) != NULL);
2169 GST_OBJECT_UNLOCK (pad);
2174 /* get the caps from both pads and see if the intersection
2177 * This function should be called with the pad LOCK on both
2181 gst_pad_link_check_compatible_unlocked (GstPad * src, GstPad * sink,
2182 GstPadLinkCheck flags)
2184 GstCaps *srccaps = NULL;
2185 GstCaps *sinkcaps = NULL;
2186 gboolean compatible = FALSE;
2188 if (!(flags & (GST_PAD_LINK_CHECK_CAPS | GST_PAD_LINK_CHECK_TEMPLATE_CAPS)))
2191 /* Doing the expensive caps checking takes priority over only checking the template caps */
2192 if (flags & GST_PAD_LINK_CHECK_CAPS) {
2193 GST_OBJECT_UNLOCK (sink);
2194 GST_OBJECT_UNLOCK (src);
2196 srccaps = gst_pad_query_caps (src, NULL);
2197 sinkcaps = gst_pad_query_caps (sink, NULL);
2199 GST_OBJECT_LOCK (src);
2200 GST_OBJECT_LOCK (sink);
2202 /* If one of the two pads doesn't have a template, consider the intersection
2204 if (G_UNLIKELY ((GST_PAD_PAD_TEMPLATE (src) == NULL)
2205 || (GST_PAD_PAD_TEMPLATE (sink) == NULL))) {
2209 srccaps = gst_caps_ref (GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (src)));
2211 gst_caps_ref (GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (sink)));
2214 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, src, "src caps %" GST_PTR_FORMAT,
2216 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, sink, "sink caps %" GST_PTR_FORMAT,
2219 /* if we have caps on both pads we can check the intersection. If one
2220 * of the caps is %NULL, we return %TRUE. */
2221 if (G_UNLIKELY (srccaps == NULL || sinkcaps == NULL)) {
2223 gst_caps_unref (srccaps);
2225 gst_caps_unref (sinkcaps);
2229 compatible = gst_caps_can_intersect (srccaps, sinkcaps);
2230 gst_caps_unref (srccaps);
2231 gst_caps_unref (sinkcaps);
2234 GST_CAT_DEBUG (GST_CAT_CAPS, "caps are %scompatible",
2235 (compatible ? "" : "not "));
2240 /* check if the grandparents of both pads are the same.
2241 * This check is required so that we don't try to link
2242 * pads from elements in different bins without ghostpads.
2244 * The LOCK should be held on both pads
2247 gst_pad_link_check_hierarchy (GstPad * src, GstPad * sink)
2249 GstObject *psrc, *psink;
2251 psrc = GST_OBJECT_PARENT (src);
2252 psink = GST_OBJECT_PARENT (sink);
2254 /* if one of the pads has no parent, we allow the link */
2255 if (G_UNLIKELY (psrc == NULL || psink == NULL))
2258 /* only care about parents that are elements */
2259 if (G_UNLIKELY (!GST_IS_ELEMENT (psrc) || !GST_IS_ELEMENT (psink)))
2260 goto no_element_parent;
2262 /* if the parents are the same, we have a loop */
2263 if (G_UNLIKELY (psrc == psink))
2266 /* if they both have a parent, we check the grandparents. We can not lock
2267 * the parent because we hold on the child (pad) and the locking order is
2268 * parent >> child. */
2269 psrc = GST_OBJECT_PARENT (psrc);
2270 psink = GST_OBJECT_PARENT (psink);
2272 /* if they have grandparents but they are not the same */
2273 if (G_UNLIKELY (psrc != psink))
2274 goto wrong_grandparents;
2281 GST_CAT_DEBUG (GST_CAT_CAPS,
2282 "one of the pads has no parent %" GST_PTR_FORMAT " and %"
2283 GST_PTR_FORMAT, psrc, psink);
2288 GST_CAT_DEBUG (GST_CAT_CAPS,
2289 "one of the pads has no element parent %" GST_PTR_FORMAT " and %"
2290 GST_PTR_FORMAT, psrc, psink);
2295 GST_CAT_DEBUG (GST_CAT_CAPS, "pads have same parent %" GST_PTR_FORMAT,
2301 GST_CAT_DEBUG (GST_CAT_CAPS,
2302 "pads have different grandparents %" GST_PTR_FORMAT " and %"
2303 GST_PTR_FORMAT, psrc, psink);
2308 /* FIXME leftover from an attempt at refactoring... */
2309 /* call with the two pads unlocked, when this function returns GST_PAD_LINK_OK,
2310 * the two pads will be locked in the srcpad, sinkpad order. */
2311 static GstPadLinkReturn
2312 gst_pad_link_prepare (GstPad * srcpad, GstPad * sinkpad, GstPadLinkCheck flags)
2314 GST_CAT_INFO (GST_CAT_PADS, "trying to link %s:%s and %s:%s",
2315 GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
2317 GST_OBJECT_LOCK (srcpad);
2319 if (G_UNLIKELY (GST_PAD_PEER (srcpad) != NULL))
2320 goto src_was_linked;
2322 GST_OBJECT_LOCK (sinkpad);
2324 if (G_UNLIKELY (GST_PAD_PEER (sinkpad) != NULL))
2325 goto sink_was_linked;
2327 /* check hierarchy, pads can only be linked if the grandparents
2329 if ((flags & GST_PAD_LINK_CHECK_HIERARCHY)
2330 && !gst_pad_link_check_hierarchy (srcpad, sinkpad))
2331 goto wrong_hierarchy;
2333 /* check pad caps for non-empty intersection */
2334 if (!gst_pad_link_check_compatible_unlocked (srcpad, sinkpad, flags))
2337 /* FIXME check pad scheduling for non-empty intersection */
2339 return GST_PAD_LINK_OK;
2343 GST_CAT_INFO (GST_CAT_PADS, "src %s:%s was already linked to %s:%s",
2344 GST_DEBUG_PAD_NAME (srcpad),
2345 GST_DEBUG_PAD_NAME (GST_PAD_PEER (srcpad)));
2346 /* we do not emit a warning in this case because unlinking cannot
2347 * be made MT safe.*/
2348 GST_OBJECT_UNLOCK (srcpad);
2349 return GST_PAD_LINK_WAS_LINKED;
2353 GST_CAT_INFO (GST_CAT_PADS, "sink %s:%s was already linked to %s:%s",
2354 GST_DEBUG_PAD_NAME (sinkpad),
2355 GST_DEBUG_PAD_NAME (GST_PAD_PEER (sinkpad)));
2356 /* we do not emit a warning in this case because unlinking cannot
2357 * be made MT safe.*/
2358 GST_OBJECT_UNLOCK (sinkpad);
2359 GST_OBJECT_UNLOCK (srcpad);
2360 return GST_PAD_LINK_WAS_LINKED;
2364 GST_CAT_INFO (GST_CAT_PADS, "pads have wrong hierarchy");
2365 GST_OBJECT_UNLOCK (sinkpad);
2366 GST_OBJECT_UNLOCK (srcpad);
2367 return GST_PAD_LINK_WRONG_HIERARCHY;
2371 GST_CAT_INFO (GST_CAT_PADS, "caps are incompatible");
2372 GST_OBJECT_UNLOCK (sinkpad);
2373 GST_OBJECT_UNLOCK (srcpad);
2374 return GST_PAD_LINK_NOFORMAT;
2380 * @srcpad: the source #GstPad.
2381 * @sinkpad: the sink #GstPad.
2383 * Checks if the source pad and the sink pad are compatible so they can be
2386 * Returns: %TRUE if the pads can be linked.
2389 gst_pad_can_link (GstPad * srcpad, GstPad * sinkpad)
2391 GstPadLinkReturn result;
2393 /* generic checks */
2394 g_return_val_if_fail (GST_IS_PAD (srcpad), FALSE);
2395 g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
2397 GST_CAT_INFO (GST_CAT_PADS, "check if %s:%s can link with %s:%s",
2398 GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
2400 /* gst_pad_link_prepare does everything for us, we only release the locks
2401 * on the pads that it gets us. If this function returns !OK the locks are not
2403 result = gst_pad_link_prepare (srcpad, sinkpad, GST_PAD_LINK_CHECK_DEFAULT);
2404 if (result != GST_PAD_LINK_OK)
2407 GST_OBJECT_UNLOCK (srcpad);
2408 GST_OBJECT_UNLOCK (sinkpad);
2411 return result == GST_PAD_LINK_OK;
2415 * gst_pad_link_full:
2416 * @srcpad: the source #GstPad to link.
2417 * @sinkpad: the sink #GstPad to link.
2418 * @flags: the checks to validate when linking
2420 * Links the source pad and the sink pad.
2422 * This variant of #gst_pad_link provides a more granular control on the
2423 * checks being done when linking. While providing some considerable speedups
2424 * the caller of this method must be aware that wrong usage of those flags
2425 * can cause severe issues. Refer to the documentation of #GstPadLinkCheck
2426 * for more information.
2430 * Returns: A result code indicating if the connection worked or
2434 gst_pad_link_full (GstPad * srcpad, GstPad * sinkpad, GstPadLinkCheck flags)
2436 GstPadLinkReturn result;
2438 GstPadLinkFunction srcfunc, sinkfunc;
2440 g_return_val_if_fail (GST_IS_PAD (srcpad), GST_PAD_LINK_REFUSED);
2441 g_return_val_if_fail (GST_PAD_IS_SRC (srcpad), GST_PAD_LINK_WRONG_DIRECTION);
2442 g_return_val_if_fail (GST_IS_PAD (sinkpad), GST_PAD_LINK_REFUSED);
2443 g_return_val_if_fail (GST_PAD_IS_SINK (sinkpad),
2444 GST_PAD_LINK_WRONG_DIRECTION);
2446 GST_TRACER_PAD_LINK_PRE (srcpad, sinkpad);
2448 /* Notify the parent early. See gst_pad_unlink for details. */
2449 if (G_LIKELY ((parent = GST_ELEMENT_CAST (gst_pad_get_parent (srcpad))))) {
2450 if (G_LIKELY (GST_IS_ELEMENT (parent))) {
2451 gst_element_post_message (parent,
2452 gst_message_new_structure_change (GST_OBJECT_CAST (sinkpad),
2453 GST_STRUCTURE_CHANGE_TYPE_PAD_LINK, parent, TRUE));
2455 gst_object_unref (parent);
2460 /* prepare will also lock the two pads */
2461 result = gst_pad_link_prepare (srcpad, sinkpad, flags);
2463 if (G_UNLIKELY (result != GST_PAD_LINK_OK)) {
2464 GST_CAT_INFO (GST_CAT_PADS, "link between %s:%s and %s:%s failed: %s",
2465 GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad),
2466 gst_pad_link_get_name (result));
2470 /* must set peers before calling the link function */
2471 GST_PAD_PEER (srcpad) = sinkpad;
2472 GST_PAD_PEER (sinkpad) = srcpad;
2474 /* check events, when something is different, mark pending */
2475 schedule_events (srcpad, sinkpad);
2477 /* get the link functions */
2478 srcfunc = GST_PAD_LINKFUNC (srcpad);
2479 sinkfunc = GST_PAD_LINKFUNC (sinkpad);
2481 if (G_UNLIKELY (srcfunc || sinkfunc)) {
2482 /* custom link functions, execute them */
2483 GST_OBJECT_UNLOCK (sinkpad);
2484 GST_OBJECT_UNLOCK (srcpad);
2487 GstObject *tmpparent;
2489 ACQUIRE_PARENT (srcpad, tmpparent, no_parent);
2490 /* this one will call the peer link function */
2491 result = srcfunc (srcpad, tmpparent, sinkpad);
2492 RELEASE_PARENT (tmpparent);
2493 } else if (sinkfunc) {
2494 GstObject *tmpparent;
2496 ACQUIRE_PARENT (sinkpad, tmpparent, no_parent);
2497 /* if no source link function, we need to call the sink link
2498 * function ourselves. */
2499 result = sinkfunc (sinkpad, tmpparent, srcpad);
2500 RELEASE_PARENT (tmpparent);
2504 GST_OBJECT_LOCK (srcpad);
2505 GST_OBJECT_LOCK (sinkpad);
2507 /* we released the lock, check if the same pads are linked still */
2508 if (GST_PAD_PEER (srcpad) != sinkpad || GST_PAD_PEER (sinkpad) != srcpad)
2509 goto concurrent_link;
2511 if (G_UNLIKELY (result != GST_PAD_LINK_OK))
2514 GST_OBJECT_UNLOCK (sinkpad);
2515 GST_OBJECT_UNLOCK (srcpad);
2517 /* fire off a signal to each of the pads telling them
2518 * that they've been linked */
2519 g_signal_emit (srcpad, gst_pad_signals[PAD_LINKED], 0, sinkpad);
2520 g_signal_emit (sinkpad, gst_pad_signals[PAD_LINKED], 0, srcpad);
2522 GST_CAT_INFO (GST_CAT_PADS, "linked %s:%s and %s:%s, successful",
2523 GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
2525 if (!(flags & GST_PAD_LINK_CHECK_NO_RECONFIGURE))
2526 gst_pad_send_event (srcpad, gst_event_new_reconfigure ());
2529 if (G_LIKELY (parent)) {
2530 gst_element_post_message (parent,
2531 gst_message_new_structure_change (GST_OBJECT_CAST (sinkpad),
2532 GST_STRUCTURE_CHANGE_TYPE_PAD_LINK, parent, FALSE));
2533 gst_object_unref (parent);
2536 GST_TRACER_PAD_LINK_POST (srcpad, sinkpad, result);
2542 GST_CAT_INFO (GST_CAT_PADS, "concurrent link between %s:%s and %s:%s",
2543 GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
2544 GST_OBJECT_UNLOCK (sinkpad);
2545 GST_OBJECT_UNLOCK (srcpad);
2547 /* The other link operation succeeded first */
2548 result = GST_PAD_LINK_WAS_LINKED;
2553 GST_CAT_INFO (GST_CAT_PADS, "link between %s:%s and %s:%s failed: %s",
2554 GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad),
2555 gst_pad_link_get_name (result));
2557 GST_PAD_PEER (srcpad) = NULL;
2558 GST_PAD_PEER (sinkpad) = NULL;
2560 GST_OBJECT_UNLOCK (sinkpad);
2561 GST_OBJECT_UNLOCK (srcpad);
2569 * @srcpad: the source #GstPad to link.
2570 * @sinkpad: the sink #GstPad to link.
2572 * Links the source pad and the sink pad.
2574 * Returns: A result code indicating if the connection worked or
2580 gst_pad_link (GstPad * srcpad, GstPad * sinkpad)
2582 return gst_pad_link_full (srcpad, sinkpad, GST_PAD_LINK_CHECK_DEFAULT);
2586 gst_pad_set_pad_template (GstPad * pad, GstPadTemplate * templ)
2588 GstPadTemplate **template_p;
2590 /* this function would need checks if it weren't static */
2592 GST_OBJECT_LOCK (pad);
2593 template_p = &pad->padtemplate;
2594 gst_object_replace ((GstObject **) template_p, (GstObject *) templ);
2595 GST_OBJECT_UNLOCK (pad);
2598 gst_pad_template_pad_created (templ, pad);
2602 * gst_pad_get_pad_template:
2605 * Gets the template for @pad.
2607 * Returns: (transfer full) (nullable): the #GstPadTemplate from which
2608 * this pad was instantiated, or %NULL if this pad has no
2609 * template. Unref after usage.
2612 gst_pad_get_pad_template (GstPad * pad)
2614 GstPadTemplate *templ;
2616 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2618 templ = GST_PAD_PAD_TEMPLATE (pad);
2620 return (templ ? gst_object_ref (templ) : NULL);
2624 * gst_pad_has_current_caps:
2625 * @pad: a #GstPad to check
2627 * Check if @pad has caps set on it with a #GST_EVENT_CAPS event.
2629 * Returns: %TRUE when @pad has caps associated with it.
2632 gst_pad_has_current_caps (GstPad * pad)
2637 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2639 GST_OBJECT_LOCK (pad);
2640 caps = get_pad_caps (pad);
2641 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2642 "check current pad caps %" GST_PTR_FORMAT, caps);
2643 result = (caps != NULL);
2644 GST_OBJECT_UNLOCK (pad);
2650 * gst_pad_get_current_caps:
2651 * @pad: a #GstPad to get the current capabilities of.
2653 * Gets the capabilities currently configured on @pad with the last
2654 * #GST_EVENT_CAPS event.
2656 * Returns: (transfer full) (nullable): the current caps of the pad with
2657 * incremented ref-count or %NULL when pad has no caps. Unref after usage.
2660 gst_pad_get_current_caps (GstPad * pad)
2664 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2666 GST_OBJECT_LOCK (pad);
2667 if ((result = get_pad_caps (pad)))
2668 gst_caps_ref (result);
2669 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2670 "get current pad caps %" GST_PTR_FORMAT, result);
2671 GST_OBJECT_UNLOCK (pad);
2677 * gst_pad_get_pad_template_caps:
2678 * @pad: a #GstPad to get the template capabilities from.
2680 * Gets the capabilities for @pad's template.
2682 * Returns: (transfer full): the #GstCaps of this pad template.
2683 * Unref after usage.
2686 gst_pad_get_pad_template_caps (GstPad * pad)
2688 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2690 if (GST_PAD_PAD_TEMPLATE (pad))
2691 return gst_pad_template_get_caps (GST_PAD_PAD_TEMPLATE (pad));
2693 return gst_caps_ref (GST_CAPS_ANY);
2698 * @pad: a #GstPad to get the peer of.
2700 * Gets the peer of @pad. This function refs the peer pad so
2701 * you need to unref it after use.
2703 * Returns: (transfer full): the peer #GstPad. Unref after usage.
2708 gst_pad_get_peer (GstPad * pad)
2712 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2714 GST_OBJECT_LOCK (pad);
2715 result = GST_PAD_PEER (pad);
2717 gst_object_ref (result);
2718 GST_OBJECT_UNLOCK (pad);
2724 * gst_pad_get_allowed_caps:
2727 * Gets the capabilities of the allowed media types that can flow through
2728 * @pad and its peer.
2730 * The allowed capabilities is calculated as the intersection of the results of
2731 * calling gst_pad_query_caps() on @pad and its peer. The caller owns a reference
2732 * on the resulting caps.
2734 * Returns: (transfer full) (nullable): the allowed #GstCaps of the
2735 * pad link. Unref the caps when you no longer need it. This
2736 * function returns %NULL when @pad has no peer.
2741 gst_pad_get_allowed_caps (GstPad * pad)
2744 GstCaps *caps = NULL;
2747 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2749 GST_OBJECT_LOCK (pad);
2750 if (G_UNLIKELY (GST_PAD_PEER (pad) == NULL))
2752 GST_OBJECT_UNLOCK (pad);
2754 GST_CAT_DEBUG_OBJECT (GST_CAT_PROPERTIES, pad, "getting allowed caps");
2756 mycaps = gst_pad_query_caps (pad, NULL);
2758 /* Query peer caps */
2759 query = gst_query_new_caps (mycaps);
2760 if (!gst_pad_peer_query (pad, query)) {
2761 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "Caps query failed");
2765 gst_query_parse_caps_result (query, &caps);
2767 g_warn_if_fail (caps != NULL);
2770 gst_caps_ref (caps);
2772 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "allowed caps %" GST_PTR_FORMAT,
2776 gst_query_unref (query);
2777 gst_caps_unref (mycaps);
2783 GST_CAT_DEBUG_OBJECT (GST_CAT_PROPERTIES, pad, "no peer");
2784 GST_OBJECT_UNLOCK (pad);
2791 * gst_pad_iterate_internal_links_default:
2792 * @pad: the #GstPad to get the internal links of.
2793 * @parent: (allow-none): the parent of @pad or %NULL
2795 * Iterate the list of pads to which the given pad is linked to inside of
2796 * the parent element.
2797 * This is the default handler, and thus returns an iterator of all of the
2798 * pads inside the parent element with opposite direction.
2800 * The caller must free this iterator after use with gst_iterator_free().
2802 * Returns: (nullable): a #GstIterator of #GstPad, or %NULL if @pad
2803 * has no parent. Unref each returned pad with gst_object_unref().
2806 gst_pad_iterate_internal_links_default (GstPad * pad, GstObject * parent)
2813 GstElement *eparent;
2815 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2817 if (parent != NULL && GST_IS_ELEMENT (parent)) {
2818 eparent = GST_ELEMENT_CAST (gst_object_ref (parent));
2820 GST_OBJECT_LOCK (pad);
2821 eparent = GST_PAD_PARENT (pad);
2822 if (!eparent || !GST_IS_ELEMENT (eparent))
2825 gst_object_ref (eparent);
2826 GST_OBJECT_UNLOCK (pad);
2829 if (pad->direction == GST_PAD_SRC)
2830 padlist = &eparent->sinkpads;
2832 padlist = &eparent->srcpads;
2834 GST_DEBUG_OBJECT (pad, "Making iterator");
2836 cookie = &eparent->pads_cookie;
2838 lock = GST_OBJECT_GET_LOCK (eparent);
2840 res = gst_iterator_new_list (GST_TYPE_PAD,
2841 lock, cookie, padlist, (GObject *) owner, NULL);
2843 gst_object_unref (owner);
2850 GST_OBJECT_UNLOCK (pad);
2851 GST_DEBUG_OBJECT (pad, "no parent element");
2857 * gst_pad_iterate_internal_links:
2858 * @pad: the GstPad to get the internal links of.
2860 * Gets an iterator for the pads to which the given pad is linked to inside
2861 * of the parent element.
2863 * Each #GstPad element yielded by the iterator will have its refcount increased,
2864 * so unref after use.
2866 * Free-function: gst_iterator_free
2868 * Returns: (transfer full) (nullable): a new #GstIterator of #GstPad
2869 * or %NULL when the pad does not have an iterator function
2870 * configured. Use gst_iterator_free() after usage.
2873 gst_pad_iterate_internal_links (GstPad * pad)
2875 GstIterator *res = NULL;
2878 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2880 GST_OBJECT_LOCK (pad);
2881 ACQUIRE_PARENT (pad, parent, no_parent);
2882 GST_OBJECT_UNLOCK (pad);
2884 if (GST_PAD_ITERINTLINKFUNC (pad))
2885 res = GST_PAD_ITERINTLINKFUNC (pad) (pad, parent);
2887 RELEASE_PARENT (parent);
2894 GST_DEBUG_OBJECT (pad, "no parent");
2895 GST_OBJECT_UNLOCK (pad);
2903 * @forward: (scope call): a #GstPadForwardFunction
2904 * @user_data: user data passed to @forward
2906 * Calls @forward for all internally linked pads of @pad. This function deals with
2907 * dynamically changing internal pads and will make sure that the @forward
2908 * function is only called once for each pad.
2910 * When @forward returns %TRUE, no further pads will be processed.
2912 * Returns: %TRUE if one of the dispatcher functions returned %TRUE.
2915 gst_pad_forward (GstPad * pad, GstPadForwardFunction forward,
2918 gboolean result = FALSE;
2920 gboolean done = FALSE;
2921 GValue item = { 0, };
2922 GList *pushed_pads = NULL;
2924 iter = gst_pad_iterate_internal_links (pad);
2930 switch (gst_iterator_next (iter, &item)) {
2931 case GST_ITERATOR_OK:
2935 intpad = g_value_get_object (&item);
2937 /* if already pushed, skip. FIXME, find something faster to tag pads */
2938 if (intpad == NULL || g_list_find (pushed_pads, intpad)) {
2939 g_value_reset (&item);
2943 GST_LOG_OBJECT (pad, "calling forward function on pad %s:%s",
2944 GST_DEBUG_PAD_NAME (intpad));
2945 done = result = forward (intpad, user_data);
2947 pushed_pads = g_list_prepend (pushed_pads, intpad);
2949 g_value_reset (&item);
2952 case GST_ITERATOR_RESYNC:
2953 /* We don't reset the result here because we don't push the event
2954 * again on pads that got the event already and because we need
2955 * to consider the result of the previous pushes */
2956 gst_iterator_resync (iter);
2958 case GST_ITERATOR_ERROR:
2959 GST_ERROR_OBJECT (pad, "Could not iterate over internally linked pads");
2962 case GST_ITERATOR_DONE:
2967 g_value_unset (&item);
2968 gst_iterator_free (iter);
2970 g_list_free (pushed_pads);
2980 gboolean dispatched;
2984 event_forward_func (GstPad * pad, EventData * data)
2986 /* for each pad we send to, we should ref the event; it's up
2987 * to downstream to unref again when handled. */
2988 GST_LOG_OBJECT (pad, "Reffing and pushing event %p (%s) to %s:%s",
2989 data->event, GST_EVENT_TYPE_NAME (data->event), GST_DEBUG_PAD_NAME (pad));
2991 data->result |= gst_pad_push_event (pad, gst_event_ref (data->event));
2993 data->dispatched = TRUE;
3000 * gst_pad_event_default:
3001 * @pad: a #GstPad to call the default event handler on.
3002 * @parent: (allow-none): the parent of @pad or %NULL
3003 * @event: (transfer full): the #GstEvent to handle.
3005 * Invokes the default event handler for the given pad.
3007 * The EOS event will pause the task associated with @pad before it is forwarded
3008 * to all internally linked pads,
3010 * The event is sent to all pads internally linked to @pad. This function
3011 * takes ownership of @event.
3013 * Returns: %TRUE if the event was sent successfully.
3016 gst_pad_event_default (GstPad * pad, GstObject * parent, GstEvent * event)
3018 gboolean result, forward = TRUE;
3020 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3021 g_return_val_if_fail (event != NULL, FALSE);
3023 GST_LOG_OBJECT (pad, "default event handler for event %" GST_PTR_FORMAT,
3026 switch (GST_EVENT_TYPE (event)) {
3027 case GST_EVENT_CAPS:
3028 forward = GST_PAD_IS_PROXY_CAPS (pad);
3039 data.dispatched = FALSE;
3040 data.result = FALSE;
3042 gst_pad_forward (pad, (GstPadForwardFunction) event_forward_func, &data);
3044 /* for sinkpads without a parent element or without internal links, nothing
3045 * will be dispatched but we still want to return TRUE. */
3046 if (data.dispatched)
3047 result = data.result;
3052 gst_event_unref (event);
3057 /* Default accept caps implementation just checks against
3058 * the allowed caps for the pad */
3060 gst_pad_query_accept_caps_default (GstPad * pad, GstQuery * query)
3062 /* get the caps and see if it intersects to something not empty */
3063 GstCaps *caps, *allowed = NULL;
3066 GST_DEBUG_OBJECT (pad, "query accept-caps %" GST_PTR_FORMAT, query);
3068 /* first forward the query to internally linked pads when we are dealing with
3070 if (GST_PAD_IS_PROXY_CAPS (pad)) {
3071 result = gst_pad_proxy_query_accept_caps (pad, query);
3073 allowed = gst_pad_get_pad_template_caps (pad);
3078 gst_query_parse_accept_caps (query, &caps);
3080 if (GST_PAD_IS_ACCEPT_TEMPLATE (pad)) {
3081 allowed = gst_pad_get_pad_template_caps (pad);
3083 GST_CAT_DEBUG_OBJECT (GST_CAT_PERFORMANCE, pad,
3084 "fallback ACCEPT_CAPS query, consider implementing a specialized version");
3085 allowed = gst_pad_query_caps (pad, caps);
3090 if (GST_PAD_IS_ACCEPT_INTERSECT (pad)) {
3091 GST_DEBUG_OBJECT (pad,
3092 "allowed caps intersect %" GST_PTR_FORMAT ", caps %" GST_PTR_FORMAT,
3094 result = gst_caps_can_intersect (caps, allowed);
3096 GST_DEBUG_OBJECT (pad, "allowed caps subset %" GST_PTR_FORMAT ", caps %"
3097 GST_PTR_FORMAT, allowed, caps);
3098 result = gst_caps_is_subset (caps, allowed);
3100 gst_caps_unref (allowed);
3102 GST_DEBUG_OBJECT (pad, "no compatible caps allowed on the pad");
3105 gst_query_set_accept_caps_result (query, result);
3111 /* Default caps implementation */
3113 gst_pad_query_caps_default (GstPad * pad, GstQuery * query)
3115 GstCaps *result = NULL, *filter;
3116 GstPadTemplate *templ;
3117 gboolean fixed_caps;
3119 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "query caps %" GST_PTR_FORMAT,
3122 /* first try to proxy if we must */
3123 if (GST_PAD_IS_PROXY_CAPS (pad)) {
3124 if ((gst_pad_proxy_query_caps (pad, query))) {
3129 gst_query_parse_caps (query, &filter);
3131 /* no proxy or it failed, do default handling */
3132 fixed_caps = GST_PAD_IS_FIXED_CAPS (pad);
3134 GST_OBJECT_LOCK (pad);
3136 /* fixed caps, try the negotiated caps first */
3137 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "fixed pad caps: trying pad caps");
3138 if ((result = get_pad_caps (pad)))
3139 goto filter_done_unlock;
3142 if ((templ = GST_PAD_PAD_TEMPLATE (pad))) {
3143 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "trying pad template caps");
3144 if ((result = GST_PAD_TEMPLATE_CAPS (templ)))
3145 goto filter_done_unlock;
3149 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
3150 "non-fixed pad caps: trying pad caps");
3151 /* non fixed caps, try the negotiated caps */
3152 if ((result = get_pad_caps (pad)))
3153 goto filter_done_unlock;
3156 /* this almost never happens */
3157 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "pad has no caps");
3158 result = GST_CAPS_ANY;
3161 GST_OBJECT_UNLOCK (pad);
3163 /* run the filter on the result */
3165 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
3166 "using caps %p %" GST_PTR_FORMAT " with filter %p %"
3167 GST_PTR_FORMAT, result, result, filter, filter);
3168 result = gst_caps_intersect_full (filter, result, GST_CAPS_INTERSECT_FIRST);
3169 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "result %p %" GST_PTR_FORMAT,
3172 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
3173 "using caps %p %" GST_PTR_FORMAT, result, result);
3174 result = gst_caps_ref (result);
3176 gst_query_set_caps_result (query, result);
3177 gst_caps_unref (result);
3183 /* Default latency implementation */
3188 GstClockTime min, max;
3192 query_latency_default_fold (const GValue * item, GValue * ret,
3195 GstPad *pad = g_value_get_object (item), *peer;
3196 LatencyFoldData *fold_data = user_data;
3198 gboolean res = FALSE;
3200 query = gst_query_new_latency ();
3202 peer = gst_pad_get_peer (pad);
3204 res = gst_pad_peer_query (pad, query);
3206 GST_LOG_OBJECT (pad, "No peer pad found, ignoring this pad");
3211 GstClockTime min, max;
3213 gst_query_parse_latency (query, &live, &min, &max);
3215 GST_LOG_OBJECT (pad, "got latency live:%s min:%" G_GINT64_FORMAT
3216 " max:%" G_GINT64_FORMAT, live ? "true" : "false", min, max);
3218 /* FIXME : Why do we only take values into account if it's live ? */
3219 if (live || fold_data->count == 0) {
3220 if (min > fold_data->min)
3221 fold_data->min = min;
3223 if (fold_data->max == GST_CLOCK_TIME_NONE)
3224 fold_data->max = max;
3225 else if (max < fold_data->max)
3226 fold_data->max = max;
3228 fold_data->live = live;
3230 fold_data->count += 1;
3232 GST_DEBUG_OBJECT (pad, "latency query failed");
3233 g_value_set_boolean (ret, FALSE);
3236 gst_query_unref (query);
3238 gst_object_unref (peer);
3244 gst_pad_query_latency_default (GstPad * pad, GstQuery * query)
3247 GstIteratorResult res;
3248 GValue ret = G_VALUE_INIT;
3250 LatencyFoldData fold_data;
3252 it = gst_pad_iterate_internal_links (pad);
3254 GST_DEBUG_OBJECT (pad, "Can't iterate internal links");
3258 g_value_init (&ret, G_TYPE_BOOLEAN);
3261 fold_data.count = 0;
3262 fold_data.live = FALSE;
3264 fold_data.max = GST_CLOCK_TIME_NONE;
3266 g_value_set_boolean (&ret, TRUE);
3267 res = gst_iterator_fold (it, query_latency_default_fold, &ret, &fold_data);
3269 case GST_ITERATOR_OK:
3270 g_assert_not_reached ();
3272 case GST_ITERATOR_DONE:
3274 case GST_ITERATOR_ERROR:
3275 g_value_set_boolean (&ret, FALSE);
3277 case GST_ITERATOR_RESYNC:
3278 gst_iterator_resync (it);
3281 g_assert_not_reached ();
3284 gst_iterator_free (it);
3286 query_ret = g_value_get_boolean (&ret);
3288 GST_LOG_OBJECT (pad, "got latency live:%s min:%" G_GINT64_FORMAT
3289 " max:%" G_GINT64_FORMAT, fold_data.live ? "true" : "false",
3290 fold_data.min, fold_data.max);
3292 if (fold_data.min > fold_data.max) {
3293 GST_ERROR_OBJECT (pad, "minimum latency bigger than maximum latency");
3296 gst_query_set_latency (query, fold_data.live, fold_data.min, fold_data.max);
3298 GST_LOG_OBJECT (pad, "latency query failed");
3308 gboolean dispatched;
3312 query_forward_func (GstPad * pad, QueryData * data)
3314 GST_LOG_OBJECT (pad, "query peer %p (%s) of %s:%s",
3315 data->query, GST_QUERY_TYPE_NAME (data->query), GST_DEBUG_PAD_NAME (pad));
3317 data->result |= gst_pad_peer_query (pad, data->query);
3319 data->dispatched = TRUE;
3321 /* stop on first successful reply */
3322 return data->result;
3326 * gst_pad_query_default:
3327 * @pad: a #GstPad to call the default query handler on.
3328 * @parent: (allow-none): the parent of @pad or %NULL
3329 * @query: (transfer none): the #GstQuery to handle.
3331 * Invokes the default query handler for the given pad.
3332 * The query is sent to all pads internally linked to @pad. Note that
3333 * if there are many possible sink pads that are internally linked to
3334 * @pad, only one will be sent the query.
3335 * Multi-sinkpad elements should implement custom query handlers.
3337 * Returns: %TRUE if the query was performed successfully.
3340 gst_pad_query_default (GstPad * pad, GstObject * parent, GstQuery * query)
3342 gboolean forward, ret = FALSE;
3344 switch (GST_QUERY_TYPE (query)) {
3345 case GST_QUERY_SCHEDULING:
3346 forward = GST_PAD_IS_PROXY_SCHEDULING (pad);
3348 case GST_QUERY_ALLOCATION:
3349 forward = GST_PAD_IS_PROXY_ALLOCATION (pad);
3351 case GST_QUERY_ACCEPT_CAPS:
3352 ret = gst_pad_query_accept_caps_default (pad, query);
3355 case GST_QUERY_CAPS:
3356 ret = gst_pad_query_caps_default (pad, query);
3359 case GST_QUERY_LATENCY:
3360 ret = gst_pad_query_latency_default (pad, query);
3363 case GST_QUERY_POSITION:
3364 case GST_QUERY_SEEKING:
3365 case GST_QUERY_FORMATS:
3366 case GST_QUERY_JITTER:
3367 case GST_QUERY_RATE:
3368 case GST_QUERY_CONVERT:
3374 GST_DEBUG_OBJECT (pad, "%sforwarding %p (%s) query", (forward ? "" : "not "),
3375 query, GST_QUERY_TYPE_NAME (query));
3381 data.dispatched = FALSE;
3382 data.result = FALSE;
3384 gst_pad_forward (pad, (GstPadForwardFunction) query_forward_func, &data);
3386 if (data.dispatched) {
3389 /* nothing dispatched, assume drained */
3390 if (GST_QUERY_TYPE (query) == GST_QUERY_DRAIN)
3400 probe_hook_marshal (GHook * hook, ProbeMarshall * data)
3402 GstPad *pad = data->pad;
3403 GstPadProbeInfo *info = data->info;
3404 GstPadProbeType type, flags;
3405 GstPadProbeCallback callback;
3406 GstPadProbeReturn ret;
3407 gpointer original_data;
3409 /* if we have called this callback, do nothing */
3410 if (PROBE_COOKIE (hook) == data->cookie) {
3411 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3412 "hook %lu, cookie %u already called", hook->hook_id,
3413 PROBE_COOKIE (hook));
3417 PROBE_COOKIE (hook) = data->cookie;
3419 flags = hook->flags >> G_HOOK_FLAG_USER_SHIFT;
3421 original_data = info->data;
3423 /* one of the scheduling types */
3424 if ((flags & GST_PAD_PROBE_TYPE_SCHEDULING & type) == 0)
3427 if (type & GST_PAD_PROBE_TYPE_PUSH) {
3428 /* one of the data types for non-idle probes */
3429 if ((type & GST_PAD_PROBE_TYPE_IDLE) == 0
3430 && (flags & _PAD_PROBE_TYPE_ALL_BOTH_AND_FLUSH & type) == 0)
3432 } else if (type & GST_PAD_PROBE_TYPE_PULL) {
3433 /* one of the data types for non-idle probes */
3434 if ((type & GST_PAD_PROBE_TYPE_BLOCKING) == 0
3435 && (flags & _PAD_PROBE_TYPE_ALL_BOTH_AND_FLUSH & type) == 0)
3438 /* Type must have PULL or PUSH probe types */
3439 g_assert_not_reached ();
3442 /* one of the blocking types must match */
3443 if ((type & GST_PAD_PROBE_TYPE_BLOCKING) &&
3444 (flags & GST_PAD_PROBE_TYPE_BLOCKING & type) == 0)
3446 if ((type & GST_PAD_PROBE_TYPE_BLOCKING) == 0 &&
3447 (flags & GST_PAD_PROBE_TYPE_BLOCKING))
3449 /* only probes that have GST_PAD_PROBE_TYPE_EVENT_FLUSH set */
3450 if ((type & GST_PAD_PROBE_TYPE_EVENT_FLUSH) &&
3451 (flags & GST_PAD_PROBE_TYPE_EVENT_FLUSH & type) == 0)
3454 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3455 "hook %lu, cookie %u with flags 0x%08x matches", hook->hook_id,
3456 PROBE_COOKIE (hook), flags);
3458 data->marshalled = TRUE;
3460 callback = (GstPadProbeCallback) hook->func;
3461 if (callback == NULL)
3464 info->id = hook->hook_id;
3466 GST_OBJECT_UNLOCK (pad);
3468 ret = callback (pad, info, hook->data);
3470 GST_OBJECT_LOCK (pad);
3472 if (original_data != NULL && info->data == NULL) {
3473 GST_DEBUG_OBJECT (pad, "data item in pad probe info was dropped");
3474 info->type = GST_PAD_PROBE_TYPE_INVALID;
3475 data->dropped = TRUE;
3479 case GST_PAD_PROBE_REMOVE:
3480 /* remove the probe */
3481 GST_DEBUG_OBJECT (pad, "asked to remove hook");
3482 cleanup_hook (pad, hook);
3484 case GST_PAD_PROBE_DROP:
3485 /* need to drop the data, make sure other probes don't get called
3487 GST_DEBUG_OBJECT (pad, "asked to drop item");
3488 info->type = GST_PAD_PROBE_TYPE_INVALID;
3489 data->dropped = TRUE;
3491 case GST_PAD_PROBE_HANDLED:
3492 GST_DEBUG_OBJECT (pad, "probe handled data");
3493 data->handled = TRUE;
3495 case GST_PAD_PROBE_PASS:
3496 /* inform the pad block to let things pass */
3497 GST_DEBUG_OBJECT (pad, "asked to pass item");
3500 case GST_PAD_PROBE_OK:
3501 GST_DEBUG_OBJECT (pad, "probe returned OK");
3504 GST_DEBUG_OBJECT (pad, "probe returned %d", ret);
3511 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3512 "hook %lu, cookie %u with flags 0x%08x does not match %08x",
3513 hook->hook_id, PROBE_COOKIE (hook), flags, info->type);
3518 /* a probe that does not take or return any data */
3519 #define PROBE_NO_DATA(pad,mask,label,defaultval) \
3521 if (G_UNLIKELY (pad->num_probes)) { \
3522 GstFlowReturn pval = defaultval; \
3523 /* pass NULL as the data item */ \
3524 GstPadProbeInfo info = { mask, 0, NULL, 0, 0 }; \
3525 info.ABI.abi.flow_ret = defaultval; \
3526 ret = do_probe_callbacks (pad, &info, defaultval); \
3527 if (G_UNLIKELY (ret != pval && ret != GST_FLOW_OK)) \
3532 #define PROBE_FULL(pad,mask,data,offs,size,label,handleable,handle_label) \
3534 if (G_UNLIKELY (pad->num_probes)) { \
3535 /* pass the data item */ \
3536 GstPadProbeInfo info = { mask, 0, data, offs, size }; \
3537 info.ABI.abi.flow_ret = GST_FLOW_OK; \
3538 ret = do_probe_callbacks (pad, &info, GST_FLOW_OK); \
3539 /* store the possibly updated data item */ \
3540 data = GST_PAD_PROBE_INFO_DATA (&info); \
3541 /* if something went wrong, exit */ \
3542 if (G_UNLIKELY (ret != GST_FLOW_OK)) { \
3543 if (handleable && ret == GST_FLOW_CUSTOM_SUCCESS_1) { \
3544 ret = info.ABI.abi.flow_ret; \
3545 goto handle_label; \
3552 #define PROBE_PUSH(pad,mask,data,label) \
3553 PROBE_FULL(pad, mask, data, -1, -1, label, FALSE, label);
3554 #define PROBE_HANDLE(pad,mask,data,label,handle_label) \
3555 PROBE_FULL(pad, mask, data, -1, -1, label, TRUE, handle_label);
3556 #define PROBE_PULL(pad,mask,data,offs,size,label) \
3557 PROBE_FULL(pad, mask, data, offs, size, label, FALSE, label);
3559 static GstFlowReturn
3560 do_pad_idle_probe_wait (GstPad * pad)
3562 while (GST_PAD_IS_RUNNING_IDLE_PROBE (pad)) {
3563 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3564 "waiting idle probe to be removed");
3565 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_BLOCKING);
3566 GST_PAD_BLOCK_WAIT (pad);
3567 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_BLOCKING);
3568 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "We got unblocked");
3570 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
3571 return GST_FLOW_FLUSHING;
3576 #define PROBE_TYPE_IS_SERIALIZED(i) \
3579 (((i)->type & (GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM | \
3580 GST_PAD_PROBE_TYPE_EVENT_FLUSH)) && \
3581 GST_EVENT_IS_SERIALIZED ((i)->data)) \
3583 (((i)->type & GST_PAD_PROBE_TYPE_QUERY_DOWNSTREAM) && \
3584 GST_QUERY_IS_SERIALIZED ((i)->data)) \
3586 ((i)->type & (GST_PAD_PROBE_TYPE_BUFFER | \
3587 GST_PAD_PROBE_TYPE_BUFFER_LIST)) \
3591 static GstFlowReturn
3592 do_probe_callbacks (GstPad * pad, GstPadProbeInfo * info,
3593 GstFlowReturn defaultval)
3602 data.handled = FALSE;
3603 data.marshalled = FALSE;
3604 data.dropped = FALSE;
3605 data.cookie = ++pad->priv->probe_cookie;
3608 (info->type & GST_PAD_PROBE_TYPE_BLOCK) == GST_PAD_PROBE_TYPE_BLOCK;
3610 if (is_block && PROBE_TYPE_IS_SERIALIZED (info)) {
3611 if (do_pad_idle_probe_wait (pad) == GST_FLOW_FLUSHING)
3616 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3617 "do probes cookie %u", data.cookie);
3618 cookie = pad->priv->probe_list_cookie;
3620 g_hook_list_marshal (&pad->probes, TRUE,
3621 (GHookMarshaller) probe_hook_marshal, &data);
3623 /* if the list changed, call the new callbacks (they will not have their
3624 * cookie set to data.cookie */
3625 if (cookie != pad->priv->probe_list_cookie) {
3626 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3627 "probe list changed, restarting");
3631 /* the first item that dropped will stop the hooks and then we drop here */
3635 /* If one handler took care of it, let the the item pass */
3640 /* if no handler matched and we are blocking, let the item pass */
3641 if (!data.marshalled && is_block)
3644 /* At this point, all handlers returned either OK or PASS. If one handler
3645 * returned PASS, let the item pass */
3650 while (GST_PAD_IS_BLOCKED (pad)) {
3651 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3652 "we are blocked %d times", pad->num_blocked);
3654 /* we might have released the lock */
3655 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
3658 /* now we block the streaming thread. It can be unlocked when we
3659 * deactivate the pad (which will also set the FLUSHING flag) or
3660 * when the pad is unblocked. A flushing event will also unblock
3661 * the pad after setting the FLUSHING flag. */
3662 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3663 "Waiting to be unblocked or set flushing");
3664 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_BLOCKING);
3665 GST_PAD_BLOCK_WAIT (pad);
3666 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_BLOCKING);
3667 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "We got unblocked");
3669 /* if the list changed, call the new callbacks (they will not have their
3670 * cookie set to data.cookie */
3671 if (cookie != pad->priv->probe_list_cookie) {
3672 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3673 "probe list changed, restarting");
3677 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
3687 GST_DEBUG_OBJECT (pad, "pad is flushing");
3688 return GST_FLOW_FLUSHING;
3692 GST_DEBUG_OBJECT (pad, "data is dropped");
3693 return GST_FLOW_CUSTOM_SUCCESS;
3697 /* FIXME : Should we return FLOW_OK or the defaultval ?? */
3698 GST_DEBUG_OBJECT (pad, "data is passed");
3703 GST_DEBUG_OBJECT (pad, "data was handled");
3704 return GST_FLOW_CUSTOM_SUCCESS_1;
3711 * gst_pad_get_offset:
3714 * Get the offset applied to the running time of @pad. @pad has to be a source
3717 * Returns: the offset.
3720 gst_pad_get_offset (GstPad * pad)
3724 g_return_val_if_fail (GST_IS_PAD (pad), 0);
3726 GST_OBJECT_LOCK (pad);
3727 result = pad->offset;
3728 GST_OBJECT_UNLOCK (pad);
3734 mark_event_not_received (GstPad * pad, PadEvent * ev, gpointer user_data)
3736 ev->received = FALSE;
3741 * gst_pad_set_offset:
3743 * @offset: the offset
3745 * Set the offset that will be applied to the running time of @pad.
3748 gst_pad_set_offset (GstPad * pad, gint64 offset)
3750 g_return_if_fail (GST_IS_PAD (pad));
3752 GST_OBJECT_LOCK (pad);
3753 /* if nothing changed, do nothing */
3754 if (pad->offset == offset)
3757 pad->offset = offset;
3758 GST_DEBUG_OBJECT (pad, "changed offset to %" GST_STIME_FORMAT,
3759 GST_STIME_ARGS (offset));
3761 /* resend all sticky events with updated offset on next buffer push */
3762 events_foreach (pad, mark_event_not_received, NULL);
3763 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
3766 GST_OBJECT_UNLOCK (pad);
3773 /* If TRUE and ret is not OK this means
3774 * that pushing the EOS event failed
3778 /* If called for an event this is
3779 * the event that would be pushed
3780 * next. Don't forward sticky events
3781 * that would come after that */
3785 /* should be called with pad LOCK */
3787 push_sticky (GstPad * pad, PadEvent * ev, gpointer user_data)
3789 PushStickyData *data = user_data;
3790 GstEvent *event = ev->event;
3793 GST_DEBUG_OBJECT (pad, "event %s was already received",
3794 GST_EVENT_TYPE_NAME (event));
3798 /* If we're called because of an sticky event, only forward
3799 * events that would come before this new event and the
3801 if (data->event && GST_EVENT_IS_STICKY (data->event) &&
3802 GST_EVENT_TYPE (data->event) <= GST_EVENT_SEGMENT &&
3803 GST_EVENT_TYPE (data->event) < GST_EVENT_TYPE (event)) {
3804 data->ret = GST_FLOW_CUSTOM_SUCCESS_1;
3806 data->ret = gst_pad_push_event_unchecked (pad, gst_event_ref (event),
3807 GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM);
3810 switch (data->ret) {
3812 ev->received = TRUE;
3813 GST_DEBUG_OBJECT (pad, "event %s marked received",
3814 GST_EVENT_TYPE_NAME (event));
3816 case GST_FLOW_CUSTOM_SUCCESS:
3817 /* we can't assume the event is received when it was dropped */
3818 GST_DEBUG_OBJECT (pad, "event %s was dropped, mark pending",
3819 GST_EVENT_TYPE_NAME (event));
3820 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
3821 data->ret = GST_FLOW_OK;
3823 case GST_FLOW_CUSTOM_SUCCESS_1:
3824 /* event was ignored and should be sent later */
3825 GST_DEBUG_OBJECT (pad, "event %s was ignored, mark pending",
3826 GST_EVENT_TYPE_NAME (event));
3827 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
3828 data->ret = GST_FLOW_OK;
3830 case GST_FLOW_NOT_LINKED:
3831 /* not linked is not a problem, we are sticky so the event will be
3832 * rescheduled to be sent later on re-link, but only for non-EOS events */
3833 GST_DEBUG_OBJECT (pad, "pad was not linked, mark pending");
3834 if (GST_EVENT_TYPE (event) != GST_EVENT_EOS) {
3835 data->ret = GST_FLOW_OK;
3836 ev->received = TRUE;
3840 GST_DEBUG_OBJECT (pad, "result %s, mark pending events",
3841 gst_flow_get_name (data->ret));
3842 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
3846 if (data->ret != GST_FLOW_OK && GST_EVENT_TYPE (event) == GST_EVENT_EOS)
3847 data->was_eos = TRUE;
3849 return data->ret == GST_FLOW_OK;
3852 /* check sticky events and push them when needed. should be called
3854 static inline GstFlowReturn
3855 check_sticky (GstPad * pad, GstEvent * event)
3857 PushStickyData data = { GST_FLOW_OK, FALSE, event };
3859 if (G_UNLIKELY (GST_PAD_HAS_PENDING_EVENTS (pad))) {
3860 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_PENDING_EVENTS);
3862 GST_DEBUG_OBJECT (pad, "pushing all sticky events");
3863 events_foreach (pad, push_sticky, &data);
3865 /* If there's an EOS event we must push it downstream
3866 * even if sending a previous sticky event failed.
3867 * Otherwise the pipeline might wait forever for EOS.
3869 * Only do this if pushing another event than the EOS
3872 if (data.ret != GST_FLOW_OK && !data.was_eos) {
3873 PadEvent *ev = find_event_by_type (pad, GST_EVENT_EOS, 0);
3875 if (ev && !ev->received) {
3876 data.ret = gst_pad_push_event_unchecked (pad, gst_event_ref (ev->event),
3877 GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM);
3878 /* the event could have been dropped. Because this can only
3879 * happen if the user asked for it, it's not an error */
3880 if (data.ret == GST_FLOW_CUSTOM_SUCCESS)
3881 data.ret = GST_FLOW_OK;
3891 * @pad: a #GstPad to invoke the default query on.
3892 * @query: (transfer none): the #GstQuery to perform.
3894 * Dispatches a query to a pad. The query should have been allocated by the
3895 * caller via one of the type-specific allocation functions. The element that
3896 * the pad belongs to is responsible for filling the query with an appropriate
3897 * response, which should then be parsed with a type-specific query parsing
3900 * Again, the caller is responsible for both the allocation and deallocation of
3901 * the query structure.
3903 * Please also note that some queries might need a running pipeline to work.
3905 * Returns: %TRUE if the query could be performed.
3908 gst_pad_query (GstPad * pad, GstQuery * query)
3911 gboolean res, serialized;
3912 GstPadQueryFunction func;
3913 GstPadProbeType type;
3916 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3917 g_return_val_if_fail (GST_IS_QUERY (query), FALSE);
3919 if (GST_PAD_IS_SRC (pad)) {
3920 if (G_UNLIKELY (!GST_QUERY_IS_UPSTREAM (query)))
3921 goto wrong_direction;
3922 type = GST_PAD_PROBE_TYPE_QUERY_UPSTREAM;
3923 } else if (GST_PAD_IS_SINK (pad)) {
3924 if (G_UNLIKELY (!GST_QUERY_IS_DOWNSTREAM (query)))
3925 goto wrong_direction;
3926 type = GST_PAD_PROBE_TYPE_QUERY_DOWNSTREAM;
3928 goto unknown_direction;
3930 GST_DEBUG_OBJECT (pad, "doing query %p (%s)", query,
3931 GST_QUERY_TYPE_NAME (query));
3932 GST_TRACER_PAD_QUERY_PRE (pad, query);
3934 serialized = GST_QUERY_IS_SERIALIZED (query);
3935 if (G_UNLIKELY (serialized))
3936 GST_PAD_STREAM_LOCK (pad);
3938 GST_OBJECT_LOCK (pad);
3939 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH |
3940 GST_PAD_PROBE_TYPE_BLOCK, query, probe_stopped);
3941 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH, query, probe_stopped);
3943 ACQUIRE_PARENT (pad, parent, no_parent);
3944 GST_OBJECT_UNLOCK (pad);
3946 if ((func = GST_PAD_QUERYFUNC (pad)) == NULL)
3949 res = func (pad, parent, query);
3951 RELEASE_PARENT (parent);
3953 GST_DEBUG_OBJECT (pad, "sent query %p (%s), result %d", query,
3954 GST_QUERY_TYPE_NAME (query), res);
3955 GST_TRACER_PAD_QUERY_POST (pad, query, res);
3960 GST_OBJECT_LOCK (pad);
3961 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PULL, query, probe_stopped);
3962 GST_OBJECT_UNLOCK (pad);
3964 if (G_UNLIKELY (serialized))
3965 GST_PAD_STREAM_UNLOCK (pad);
3972 g_warning ("pad %s:%s query %s in wrong direction",
3973 GST_DEBUG_PAD_NAME (pad), GST_QUERY_TYPE_NAME (query));
3978 g_warning ("pad %s:%s has invalid direction", GST_DEBUG_PAD_NAME (pad));
3983 GST_DEBUG_OBJECT (pad, "had no parent");
3984 GST_OBJECT_UNLOCK (pad);
3985 if (G_UNLIKELY (serialized))
3986 GST_PAD_STREAM_UNLOCK (pad);
3991 GST_DEBUG_OBJECT (pad, "had no query function");
3992 RELEASE_PARENT (parent);
3993 if (G_UNLIKELY (serialized))
3994 GST_PAD_STREAM_UNLOCK (pad);
3999 GST_DEBUG_OBJECT (pad, "query failed");
4000 if (G_UNLIKELY (serialized))
4001 GST_PAD_STREAM_UNLOCK (pad);
4006 GST_DEBUG_OBJECT (pad, "probe stopped: %s", gst_flow_get_name (ret));
4007 GST_OBJECT_UNLOCK (pad);
4008 if (G_UNLIKELY (serialized))
4009 GST_PAD_STREAM_UNLOCK (pad);
4011 /* if a probe dropped without handling, we don't sent it further but assume
4012 * that the probe did not answer the query and return FALSE */
4013 if (ret != GST_FLOW_CUSTOM_SUCCESS_1)
4023 * gst_pad_peer_query:
4024 * @pad: a #GstPad to invoke the peer query on.
4025 * @query: (transfer none): the #GstQuery to perform.
4027 * Performs gst_pad_query() on the peer of @pad.
4029 * The caller is responsible for both the allocation and deallocation of
4030 * the query structure.
4032 * Returns: %TRUE if the query could be performed. This function returns %FALSE
4033 * if @pad has no peer.
4036 gst_pad_peer_query (GstPad * pad, GstQuery * query)
4039 GstPadProbeType type;
4040 gboolean res, serialized;
4043 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
4044 g_return_val_if_fail (GST_IS_QUERY (query), FALSE);
4046 if (GST_PAD_IS_SRC (pad)) {
4047 if (G_UNLIKELY (!GST_QUERY_IS_DOWNSTREAM (query)))
4048 goto wrong_direction;
4049 type = GST_PAD_PROBE_TYPE_QUERY_DOWNSTREAM;
4050 } else if (GST_PAD_IS_SINK (pad)) {
4051 if (G_UNLIKELY (!GST_QUERY_IS_UPSTREAM (query)))
4052 goto wrong_direction;
4053 type = GST_PAD_PROBE_TYPE_QUERY_UPSTREAM;
4055 goto unknown_direction;
4057 GST_DEBUG_OBJECT (pad, "peer query %p (%s)", query,
4058 GST_QUERY_TYPE_NAME (query));
4060 serialized = GST_QUERY_IS_SERIALIZED (query);
4062 GST_OBJECT_LOCK (pad);
4063 if (GST_PAD_IS_SRC (pad) && serialized) {
4064 /* all serialized queries on the srcpad trigger push of
4066 if (check_sticky (pad, NULL) != GST_FLOW_OK)
4070 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH |
4071 GST_PAD_PROBE_TYPE_BLOCK, query, probe_stopped);
4072 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH, query, probe_stopped);
4074 peerpad = GST_PAD_PEER (pad);
4075 if (G_UNLIKELY (peerpad == NULL))
4078 gst_object_ref (peerpad);
4079 GST_OBJECT_UNLOCK (pad);
4081 res = gst_pad_query (peerpad, query);
4083 gst_object_unref (peerpad);
4088 GST_OBJECT_LOCK (pad);
4089 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PULL, query, probe_stopped);
4090 GST_OBJECT_UNLOCK (pad);
4097 g_warning ("pad %s:%s query %s in wrong direction",
4098 GST_DEBUG_PAD_NAME (pad), GST_QUERY_TYPE_NAME (query));
4103 g_warning ("pad %s:%s has invalid direction", GST_DEBUG_PAD_NAME (pad));
4108 GST_WARNING_OBJECT (pad, "could not send sticky events");
4109 GST_OBJECT_UNLOCK (pad);
4114 GST_INFO_OBJECT (pad, "pad has no peer");
4115 GST_OBJECT_UNLOCK (pad);
4120 GST_DEBUG_OBJECT (pad, "query failed");
4125 GST_DEBUG_OBJECT (pad, "probe stopped: %s", gst_flow_get_name (ret));
4126 GST_OBJECT_UNLOCK (pad);
4128 /* if a probe dropped without handling, we don't sent it further but
4129 * assume that the probe did not answer the query and return FALSE */
4130 if (ret != GST_FLOW_CUSTOM_SUCCESS_1)
4139 /**********************************************************************
4140 * Data passing functions
4143 /* this is the chain function that does not perform the additional argument
4144 * checking for that little extra speed.
4146 static inline GstFlowReturn
4147 gst_pad_chain_data_unchecked (GstPad * pad, GstPadProbeType type, void *data)
4151 gboolean handled = FALSE;
4153 GST_PAD_STREAM_LOCK (pad);
4155 GST_OBJECT_LOCK (pad);
4156 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
4159 if (G_UNLIKELY (GST_PAD_IS_EOS (pad)))
4162 if (G_UNLIKELY (GST_PAD_MODE (pad) != GST_PAD_MODE_PUSH))
4165 #ifdef GST_ENABLE_EXTRA_CHECKS
4166 if (G_UNLIKELY (pad->priv->last_cookie != pad->priv->events_cookie)) {
4167 if (!find_event_by_type (pad, GST_EVENT_STREAM_START, 0)) {
4169 ":%s:<%s:%s> Got data flow before stream-start event",
4170 G_STRFUNC, GST_DEBUG_PAD_NAME (pad));
4172 if (!find_event_by_type (pad, GST_EVENT_SEGMENT, 0)) {
4174 ":%s:<%s:%s> Got data flow before segment event",
4175 G_STRFUNC, GST_DEBUG_PAD_NAME (pad));
4177 pad->priv->last_cookie = pad->priv->events_cookie;
4181 PROBE_HANDLE (pad, type | GST_PAD_PROBE_TYPE_BLOCK, data, probe_stopped,
4184 PROBE_HANDLE (pad, type, data, probe_stopped, probe_handled);
4186 ACQUIRE_PARENT (pad, parent, no_parent);
4187 GST_OBJECT_UNLOCK (pad);
4189 /* NOTE: we read the chainfunc unlocked.
4190 * we cannot hold the lock for the pad so we might send
4191 * the data to the wrong function. This is not really a
4192 * problem since functions are assigned at creation time
4193 * and don't change that often... */
4194 if (G_LIKELY (type & GST_PAD_PROBE_TYPE_BUFFER)) {
4195 GstPadChainFunction chainfunc;
4197 if (G_UNLIKELY ((chainfunc = GST_PAD_CHAINFUNC (pad)) == NULL))
4200 GST_CAT_DEBUG_OBJECT (GST_CAT_SCHEDULING, pad,
4201 "calling chainfunction &%s with buffer %" GST_PTR_FORMAT,
4202 GST_DEBUG_FUNCPTR_NAME (chainfunc), GST_BUFFER (data));
4204 ret = chainfunc (pad, parent, GST_BUFFER_CAST (data));
4206 GST_CAT_DEBUG_OBJECT (GST_CAT_SCHEDULING, pad,
4207 "called chainfunction &%s with buffer %p, returned %s",
4208 GST_DEBUG_FUNCPTR_NAME (chainfunc), data, gst_flow_get_name (ret));
4210 GstPadChainListFunction chainlistfunc;
4212 if (G_UNLIKELY ((chainlistfunc = GST_PAD_CHAINLISTFUNC (pad)) == NULL))
4215 GST_CAT_DEBUG_OBJECT (GST_CAT_SCHEDULING, pad,
4216 "calling chainlistfunction &%s",
4217 GST_DEBUG_FUNCPTR_NAME (chainlistfunc));
4219 ret = chainlistfunc (pad, parent, GST_BUFFER_LIST_CAST (data));
4221 GST_CAT_DEBUG_OBJECT (GST_CAT_SCHEDULING, pad,
4222 "called chainlistfunction &%s, returned %s",
4223 GST_DEBUG_FUNCPTR_NAME (chainlistfunc), gst_flow_get_name (ret));
4226 RELEASE_PARENT (parent);
4228 GST_PAD_STREAM_UNLOCK (pad);
4235 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4236 "chaining, but pad was flushing");
4237 GST_OBJECT_UNLOCK (pad);
4238 GST_PAD_STREAM_UNLOCK (pad);
4239 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4240 return GST_FLOW_FLUSHING;
4244 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "chaining, but pad was EOS");
4245 GST_OBJECT_UNLOCK (pad);
4246 GST_PAD_STREAM_UNLOCK (pad);
4247 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4248 return GST_FLOW_EOS;
4252 g_critical ("chain on pad %s:%s but it was not in push mode",
4253 GST_DEBUG_PAD_NAME (pad));
4254 GST_OBJECT_UNLOCK (pad);
4255 GST_PAD_STREAM_UNLOCK (pad);
4256 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4257 return GST_FLOW_ERROR;
4264 GST_OBJECT_UNLOCK (pad);
4265 GST_PAD_STREAM_UNLOCK (pad);
4266 /* We unref the buffer, except if the probe handled it (CUSTOM_SUCCESS_1) */
4268 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4271 case GST_FLOW_CUSTOM_SUCCESS:
4272 case GST_FLOW_CUSTOM_SUCCESS_1:
4273 GST_DEBUG_OBJECT (pad, "dropped or handled buffer");
4277 GST_DEBUG_OBJECT (pad, "an error occurred %s", gst_flow_get_name (ret));
4284 GST_DEBUG_OBJECT (pad, "No parent when chaining %" GST_PTR_FORMAT, data);
4285 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4286 GST_OBJECT_UNLOCK (pad);
4287 GST_PAD_STREAM_UNLOCK (pad);
4288 return GST_FLOW_FLUSHING;
4292 RELEASE_PARENT (parent);
4293 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4294 g_critical ("chain on pad %s:%s but it has no chainfunction",
4295 GST_DEBUG_PAD_NAME (pad));
4296 GST_PAD_STREAM_UNLOCK (pad);
4297 return GST_FLOW_NOT_SUPPORTED;
4303 * @pad: a sink #GstPad, returns GST_FLOW_ERROR if not.
4304 * @buffer: (transfer full): the #GstBuffer to send, return GST_FLOW_ERROR
4307 * Chain a buffer to @pad.
4309 * The function returns #GST_FLOW_FLUSHING if the pad was flushing.
4311 * If the buffer type is not acceptable for @pad (as negotiated with a
4312 * preceding GST_EVENT_CAPS event), this function returns
4313 * #GST_FLOW_NOT_NEGOTIATED.
4315 * The function proceeds calling the chain function installed on @pad (see
4316 * gst_pad_set_chain_function()) and the return value of that function is
4317 * returned to the caller. #GST_FLOW_NOT_SUPPORTED is returned if @pad has no
4320 * In all cases, success or failure, the caller loses its reference to @buffer
4321 * after calling this function.
4323 * Returns: a #GstFlowReturn from the pad.
4328 gst_pad_chain (GstPad * pad, GstBuffer * buffer)
4330 g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
4331 g_return_val_if_fail (GST_PAD_IS_SINK (pad), GST_FLOW_ERROR);
4332 g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
4334 return gst_pad_chain_data_unchecked (pad,
4335 GST_PAD_PROBE_TYPE_BUFFER | GST_PAD_PROBE_TYPE_PUSH, buffer);
4338 static GstFlowReturn
4339 gst_pad_chain_list_default (GstPad * pad, GstObject * parent,
4340 GstBufferList * list)
4346 GST_INFO_OBJECT (pad, "chaining each buffer in list individually");
4348 len = gst_buffer_list_length (list);
4351 for (i = 0; i < len; i++) {
4352 buffer = gst_buffer_list_get (list, i);
4354 gst_pad_chain_data_unchecked (pad,
4355 GST_PAD_PROBE_TYPE_BUFFER | GST_PAD_PROBE_TYPE_PUSH,
4356 gst_buffer_ref (buffer));
4357 if (ret != GST_FLOW_OK)
4360 gst_buffer_list_unref (list);
4366 * gst_pad_chain_list:
4367 * @pad: a sink #GstPad, returns GST_FLOW_ERROR if not.
4368 * @list: (transfer full): the #GstBufferList to send, return GST_FLOW_ERROR
4371 * Chain a bufferlist to @pad.
4373 * The function returns #GST_FLOW_FLUSHING if the pad was flushing.
4375 * If @pad was not negotiated properly with a CAPS event, this function
4376 * returns #GST_FLOW_NOT_NEGOTIATED.
4378 * The function proceeds calling the chainlist function installed on @pad (see
4379 * gst_pad_set_chain_list_function()) and the return value of that function is
4380 * returned to the caller. #GST_FLOW_NOT_SUPPORTED is returned if @pad has no
4381 * chainlist function.
4383 * In all cases, success or failure, the caller loses its reference to @list
4384 * after calling this function.
4388 * Returns: a #GstFlowReturn from the pad.
4391 gst_pad_chain_list (GstPad * pad, GstBufferList * list)
4393 g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
4394 g_return_val_if_fail (GST_PAD_IS_SINK (pad), GST_FLOW_ERROR);
4395 g_return_val_if_fail (GST_IS_BUFFER_LIST (list), GST_FLOW_ERROR);
4397 return gst_pad_chain_data_unchecked (pad,
4398 GST_PAD_PROBE_TYPE_BUFFER_LIST | GST_PAD_PROBE_TYPE_PUSH, list);
4401 static GstFlowReturn
4402 gst_pad_push_data (GstPad * pad, GstPadProbeType type, void *data)
4406 gboolean handled = FALSE;
4408 GST_OBJECT_LOCK (pad);
4409 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
4412 if (G_UNLIKELY (GST_PAD_IS_EOS (pad)))
4415 if (G_UNLIKELY (GST_PAD_MODE (pad) != GST_PAD_MODE_PUSH))
4418 #ifdef GST_ENABLE_EXTRA_CHECKS
4419 if (G_UNLIKELY (pad->priv->last_cookie != pad->priv->events_cookie)) {
4420 if (!find_event_by_type (pad, GST_EVENT_STREAM_START, 0)) {
4422 ":%s:<%s:%s> Got data flow before stream-start event",
4423 G_STRFUNC, GST_DEBUG_PAD_NAME (pad));
4425 if (!find_event_by_type (pad, GST_EVENT_SEGMENT, 0)) {
4427 ":%s:<%s:%s> Got data flow before segment event",
4428 G_STRFUNC, GST_DEBUG_PAD_NAME (pad));
4430 pad->priv->last_cookie = pad->priv->events_cookie;
4434 if (G_UNLIKELY ((ret = check_sticky (pad, NULL))) != GST_FLOW_OK)
4437 /* do block probes */
4438 PROBE_HANDLE (pad, type | GST_PAD_PROBE_TYPE_BLOCK, data, probe_stopped,
4441 /* recheck sticky events because the probe might have cause a relink */
4442 if (G_UNLIKELY ((ret = check_sticky (pad, NULL))) != GST_FLOW_OK)
4445 /* do post-blocking probes */
4446 PROBE_HANDLE (pad, type, data, probe_stopped, probe_handled);
4448 if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
4451 /* take ref to peer pad before releasing the lock */
4452 gst_object_ref (peer);
4454 GST_OBJECT_UNLOCK (pad);
4456 ret = gst_pad_chain_data_unchecked (peer, type, data);
4459 gst_object_unref (peer);
4461 GST_OBJECT_LOCK (pad);
4462 pad->ABI.abi.last_flowret = ret;
4464 if (pad->priv->using == 0) {
4465 /* pad is not active anymore, trigger idle callbacks */
4466 PROBE_NO_DATA (pad, GST_PAD_PROBE_TYPE_PUSH | GST_PAD_PROBE_TYPE_IDLE,
4467 probe_stopped, ret);
4469 GST_OBJECT_UNLOCK (pad);
4473 /* ERROR recovery here */
4477 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4478 "pushing, but pad was flushing");
4479 pad->ABI.abi.last_flowret = GST_FLOW_FLUSHING;
4480 GST_OBJECT_UNLOCK (pad);
4481 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4482 return GST_FLOW_FLUSHING;
4486 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "pushing, but pad was EOS");
4487 pad->ABI.abi.last_flowret = GST_FLOW_EOS;
4488 GST_OBJECT_UNLOCK (pad);
4489 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4490 return GST_FLOW_EOS;
4494 g_critical ("pushing on pad %s:%s but it was not activated in push mode",
4495 GST_DEBUG_PAD_NAME (pad));
4496 pad->ABI.abi.last_flowret = GST_FLOW_ERROR;
4497 GST_OBJECT_UNLOCK (pad);
4498 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4499 return GST_FLOW_ERROR;
4503 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4504 "error pushing events, return %s", gst_flow_get_name (ret));
4505 pad->ABI.abi.last_flowret = ret;
4506 GST_OBJECT_UNLOCK (pad);
4507 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4515 GST_OBJECT_UNLOCK (pad);
4516 if (data != NULL && !handled)
4517 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4520 case GST_FLOW_CUSTOM_SUCCESS:
4521 case GST_FLOW_CUSTOM_SUCCESS_1:
4522 GST_DEBUG_OBJECT (pad, "dropped or handled buffer");
4526 GST_DEBUG_OBJECT (pad, "an error occurred %s", gst_flow_get_name (ret));
4529 pad->ABI.abi.last_flowret = ret;
4534 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4535 "pushing, but it was not linked");
4536 pad->ABI.abi.last_flowret = GST_FLOW_NOT_LINKED;
4537 GST_OBJECT_UNLOCK (pad);
4538 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4539 return GST_FLOW_NOT_LINKED;
4545 * @pad: a source #GstPad, returns #GST_FLOW_ERROR if not.
4546 * @buffer: (transfer full): the #GstBuffer to push returns GST_FLOW_ERROR
4549 * Pushes a buffer to the peer of @pad.
4551 * This function will call installed block probes before triggering any
4552 * installed data probes.
4554 * The function proceeds calling gst_pad_chain() on the peer pad and returns
4555 * the value from that function. If @pad has no peer, #GST_FLOW_NOT_LINKED will
4558 * In all cases, success or failure, the caller loses its reference to @buffer
4559 * after calling this function.
4561 * Returns: a #GstFlowReturn from the peer pad.
4566 gst_pad_push (GstPad * pad, GstBuffer * buffer)
4570 g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
4571 g_return_val_if_fail (GST_PAD_IS_SRC (pad), GST_FLOW_ERROR);
4572 g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
4574 GST_TRACER_PAD_PUSH_PRE (pad, buffer);
4575 res = gst_pad_push_data (pad,
4576 GST_PAD_PROBE_TYPE_BUFFER | GST_PAD_PROBE_TYPE_PUSH, buffer);
4577 GST_TRACER_PAD_PUSH_POST (pad, res);
4582 * gst_pad_push_list:
4583 * @pad: a source #GstPad, returns #GST_FLOW_ERROR if not.
4584 * @list: (transfer full): the #GstBufferList to push returns GST_FLOW_ERROR
4587 * Pushes a buffer list to the peer of @pad.
4589 * This function will call installed block probes before triggering any
4590 * installed data probes.
4592 * The function proceeds calling the chain function on the peer pad and returns
4593 * the value from that function. If @pad has no peer, #GST_FLOW_NOT_LINKED will
4594 * be returned. If the peer pad does not have any installed chainlist function
4595 * every group buffer of the list will be merged into a normal #GstBuffer and
4596 * chained via gst_pad_chain().
4598 * In all cases, success or failure, the caller loses its reference to @list
4599 * after calling this function.
4601 * Returns: a #GstFlowReturn from the peer pad.
4606 gst_pad_push_list (GstPad * pad, GstBufferList * list)
4610 g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
4611 g_return_val_if_fail (GST_PAD_IS_SRC (pad), GST_FLOW_ERROR);
4612 g_return_val_if_fail (GST_IS_BUFFER_LIST (list), GST_FLOW_ERROR);
4614 GST_TRACER_PAD_PUSH_LIST_PRE (pad, list);
4615 res = gst_pad_push_data (pad,
4616 GST_PAD_PROBE_TYPE_BUFFER_LIST | GST_PAD_PROBE_TYPE_PUSH, list);
4617 GST_TRACER_PAD_PUSH_LIST_POST (pad, res);
4621 static GstFlowReturn
4622 gst_pad_get_range_unchecked (GstPad * pad, guint64 offset, guint size,
4623 GstBuffer ** buffer)
4626 GstPadGetRangeFunction getrangefunc;
4630 GST_PAD_STREAM_LOCK (pad);
4632 GST_OBJECT_LOCK (pad);
4633 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
4636 if (G_UNLIKELY (GST_PAD_MODE (pad) != GST_PAD_MODE_PULL))
4639 if (G_UNLIKELY ((ret = check_sticky (pad, NULL))) != GST_FLOW_OK)
4644 /* when one of the probes returns DROPPED, probe_stopped will be called
4645 * and we skip calling the getrange function, res_buf should then contain a
4646 * valid result buffer */
4647 PROBE_PULL (pad, GST_PAD_PROBE_TYPE_PULL | GST_PAD_PROBE_TYPE_BLOCK,
4648 res_buf, offset, size, probe_stopped);
4650 /* recheck sticky events because the probe might have cause a relink */
4651 if (G_UNLIKELY ((ret = check_sticky (pad, NULL))) != GST_FLOW_OK)
4654 ACQUIRE_PARENT (pad, parent, no_parent);
4655 GST_OBJECT_UNLOCK (pad);
4657 if (G_UNLIKELY ((getrangefunc = GST_PAD_GETRANGEFUNC (pad)) == NULL))
4660 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4661 "calling getrangefunc %s, offset %"
4662 G_GUINT64_FORMAT ", size %u",
4663 GST_DEBUG_FUNCPTR_NAME (getrangefunc), offset, size);
4665 ret = getrangefunc (pad, parent, offset, size, &res_buf);
4667 RELEASE_PARENT (parent);
4669 GST_OBJECT_LOCK (pad);
4670 if (G_UNLIKELY (ret != GST_FLOW_OK))
4671 goto get_range_failed;
4673 /* can only fire the signal if we have a valid buffer */
4675 PROBE_PULL (pad, GST_PAD_PROBE_TYPE_PULL | GST_PAD_PROBE_TYPE_BUFFER,
4676 res_buf, offset, size, probe_stopped_unref);
4677 pad->ABI.abi.last_flowret = ret;
4678 GST_OBJECT_UNLOCK (pad);
4680 GST_PAD_STREAM_UNLOCK (pad);
4689 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4690 "getrange, but pad was flushing");
4691 pad->ABI.abi.last_flowret = GST_FLOW_FLUSHING;
4692 GST_OBJECT_UNLOCK (pad);
4693 GST_PAD_STREAM_UNLOCK (pad);
4694 return GST_FLOW_FLUSHING;
4698 g_critical ("getrange on pad %s:%s but it was not activated in pull mode",
4699 GST_DEBUG_PAD_NAME (pad));
4700 pad->ABI.abi.last_flowret = GST_FLOW_ERROR;
4701 GST_OBJECT_UNLOCK (pad);
4702 GST_PAD_STREAM_UNLOCK (pad);
4703 return GST_FLOW_ERROR;
4707 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "error pushing events");
4708 pad->ABI.abi.last_flowret = ret;
4709 GST_OBJECT_UNLOCK (pad);
4710 GST_PAD_STREAM_UNLOCK (pad);
4715 GST_DEBUG_OBJECT (pad, "no parent");
4716 pad->ABI.abi.last_flowret = GST_FLOW_FLUSHING;
4717 GST_OBJECT_UNLOCK (pad);
4718 GST_PAD_STREAM_UNLOCK (pad);
4719 return GST_FLOW_FLUSHING;
4723 g_critical ("getrange on pad %s:%s but it has no getrangefunction",
4724 GST_DEBUG_PAD_NAME (pad));
4725 RELEASE_PARENT (parent);
4726 GST_PAD_STREAM_UNLOCK (pad);
4727 return GST_FLOW_NOT_SUPPORTED;
4731 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4732 "probe returned %s", gst_flow_get_name (ret));
4733 if (ret == GST_FLOW_CUSTOM_SUCCESS) {
4735 /* the probe filled the buffer and asks us to not call the getrange
4736 * anymore, we continue with the post probes then. */
4737 GST_DEBUG_OBJECT (pad, "handled buffer");
4741 /* no buffer, we are EOS */
4742 GST_DEBUG_OBJECT (pad, "no buffer, return EOS");
4746 pad->ABI.abi.last_flowret = ret;
4747 GST_OBJECT_UNLOCK (pad);
4748 GST_PAD_STREAM_UNLOCK (pad);
4752 probe_stopped_unref:
4754 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4755 "probe returned %s", gst_flow_get_name (ret));
4756 /* if we drop here, it signals EOS */
4757 if (ret == GST_FLOW_CUSTOM_SUCCESS)
4759 pad->ABI.abi.last_flowret = ret;
4760 GST_OBJECT_UNLOCK (pad);
4761 GST_PAD_STREAM_UNLOCK (pad);
4762 if (*buffer == NULL)
4763 gst_buffer_unref (res_buf);
4768 pad->ABI.abi.last_flowret = ret;
4769 GST_OBJECT_UNLOCK (pad);
4770 GST_PAD_STREAM_UNLOCK (pad);
4771 GST_CAT_LEVEL_LOG (GST_CAT_SCHEDULING,
4772 (ret >= GST_FLOW_EOS) ? GST_LEVEL_INFO : GST_LEVEL_WARNING,
4773 pad, "getrange failed, flow: %s", gst_flow_get_name (ret));
4779 * gst_pad_get_range:
4780 * @pad: a src #GstPad, returns #GST_FLOW_ERROR if not.
4781 * @offset: The start offset of the buffer
4782 * @size: The length of the buffer
4783 * @buffer: (out callee-allocates): a pointer to hold the #GstBuffer,
4784 * returns #GST_FLOW_ERROR if %NULL.
4786 * When @pad is flushing this function returns #GST_FLOW_FLUSHING
4787 * immediately and @buffer is %NULL.
4789 * Calls the getrange function of @pad, see #GstPadGetRangeFunction for a
4790 * description of a getrange function. If @pad has no getrange function
4791 * installed (see gst_pad_set_getrange_function()) this function returns
4792 * #GST_FLOW_NOT_SUPPORTED.
4794 * If @buffer points to a variable holding %NULL, a valid new #GstBuffer will be
4795 * placed in @buffer when this function returns #GST_FLOW_OK. The new buffer
4796 * must be freed with gst_buffer_unref() after usage.
4798 * When @buffer points to a variable that points to a valid #GstBuffer, the
4799 * buffer will be filled with the result data when this function returns
4800 * #GST_FLOW_OK. If the provided buffer is larger than @size, only
4801 * @size bytes will be filled in the result buffer and its size will be updated
4804 * Note that less than @size bytes can be returned in @buffer when, for example,
4805 * an EOS condition is near or when @buffer is not large enough to hold @size
4806 * bytes. The caller should check the result buffer size to get the result size.
4808 * When this function returns any other result value than #GST_FLOW_OK, @buffer
4809 * will be unchanged.
4811 * This is a lowlevel function. Usually gst_pad_pull_range() is used.
4813 * Returns: a #GstFlowReturn from the pad.
4818 gst_pad_get_range (GstPad * pad, guint64 offset, guint size,
4819 GstBuffer ** buffer)
4821 g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
4822 g_return_val_if_fail (GST_PAD_IS_SRC (pad), GST_FLOW_ERROR);
4823 g_return_val_if_fail (buffer != NULL, GST_FLOW_ERROR);
4824 g_return_val_if_fail (*buffer == NULL || (GST_IS_BUFFER (*buffer)
4825 && gst_buffer_get_size (*buffer) >= size), GST_FLOW_ERROR);
4827 return gst_pad_get_range_unchecked (pad, offset, size, buffer);
4831 * gst_pad_pull_range:
4832 * @pad: a sink #GstPad, returns GST_FLOW_ERROR if not.
4833 * @offset: The start offset of the buffer
4834 * @size: The length of the buffer
4835 * @buffer: (out callee-allocates): a pointer to hold the #GstBuffer, returns
4836 * GST_FLOW_ERROR if %NULL.
4838 * Pulls a @buffer from the peer pad or fills up a provided buffer.
4840 * This function will first trigger the pad block signal if it was
4843 * When @pad is not linked #GST_FLOW_NOT_LINKED is returned else this
4844 * function returns the result of gst_pad_get_range() on the peer pad.
4845 * See gst_pad_get_range() for a list of return values and for the
4846 * semantics of the arguments of this function.
4848 * If @buffer points to a variable holding %NULL, a valid new #GstBuffer will be
4849 * placed in @buffer when this function returns #GST_FLOW_OK. The new buffer
4850 * must be freed with gst_buffer_unref() after usage. When this function
4851 * returns any other result value, @buffer will still point to %NULL.
4853 * When @buffer points to a variable that points to a valid #GstBuffer, the
4854 * buffer will be filled with the result data when this function returns
4855 * #GST_FLOW_OK. When this function returns any other result value,
4856 * @buffer will be unchanged. If the provided buffer is larger than @size, only
4857 * @size bytes will be filled in the result buffer and its size will be updated
4860 * Note that less than @size bytes can be returned in @buffer when, for example,
4861 * an EOS condition is near or when @buffer is not large enough to hold @size
4862 * bytes. The caller should check the result buffer size to get the result size.
4864 * Returns: a #GstFlowReturn from the peer pad.
4869 gst_pad_pull_range (GstPad * pad, guint64 offset, guint size,
4870 GstBuffer ** buffer)
4876 g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
4877 g_return_val_if_fail (GST_PAD_IS_SINK (pad), GST_FLOW_ERROR);
4878 g_return_val_if_fail (buffer != NULL, GST_FLOW_ERROR);
4879 g_return_val_if_fail (*buffer == NULL || (GST_IS_BUFFER (*buffer)
4880 && gst_buffer_get_size (*buffer) >= size), GST_FLOW_ERROR);
4882 GST_TRACER_PAD_PULL_RANGE_PRE (pad, offset, size);
4884 GST_OBJECT_LOCK (pad);
4885 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
4888 if (G_UNLIKELY (GST_PAD_MODE (pad) != GST_PAD_MODE_PULL))
4893 /* when one of the probes returns DROPPED, probe_stopped will be
4894 * called and we skip calling the peer getrange function. *buffer should then
4895 * contain a valid buffer */
4896 PROBE_PULL (pad, GST_PAD_PROBE_TYPE_PULL | GST_PAD_PROBE_TYPE_BLOCK,
4897 res_buf, offset, size, probe_stopped);
4899 if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
4902 gst_object_ref (peer);
4904 GST_OBJECT_UNLOCK (pad);
4906 ret = gst_pad_get_range_unchecked (peer, offset, size, &res_buf);
4908 gst_object_unref (peer);
4910 GST_OBJECT_LOCK (pad);
4912 pad->ABI.abi.last_flowret = ret;
4913 if (pad->priv->using == 0) {
4914 /* pad is not active anymore, trigger idle callbacks */
4915 PROBE_NO_DATA (pad, GST_PAD_PROBE_TYPE_PULL | GST_PAD_PROBE_TYPE_IDLE,
4916 probe_stopped_unref, ret);
4919 if (G_UNLIKELY (ret != GST_FLOW_OK))
4920 goto pull_range_failed;
4923 PROBE_PULL (pad, GST_PAD_PROBE_TYPE_PULL | GST_PAD_PROBE_TYPE_BUFFER,
4924 res_buf, offset, size, probe_stopped_unref);
4926 GST_OBJECT_UNLOCK (pad);
4930 GST_TRACER_PAD_PULL_RANGE_POST (pad, *buffer, ret);
4933 /* ERROR recovery here */
4936 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4937 "pullrange, but pad was flushing");
4938 pad->ABI.abi.last_flowret = GST_FLOW_FLUSHING;
4939 GST_OBJECT_UNLOCK (pad);
4940 ret = GST_FLOW_FLUSHING;
4945 g_critical ("pullrange on pad %s:%s but it was not activated in pull mode",
4946 GST_DEBUG_PAD_NAME (pad));
4947 pad->ABI.abi.last_flowret = GST_FLOW_ERROR;
4948 GST_OBJECT_UNLOCK (pad);
4949 ret = GST_FLOW_ERROR;
4954 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "pre probe returned %s",
4955 gst_flow_get_name (ret));
4956 if (ret == GST_FLOW_CUSTOM_SUCCESS) {
4958 /* the probe filled the buffer and asks us to not forward to the peer
4959 * anymore, we continue with the post probes then */
4960 GST_DEBUG_OBJECT (pad, "handled buffer");
4964 /* no buffer, we are EOS then */
4965 GST_DEBUG_OBJECT (pad, "no buffer, return EOS");
4969 pad->ABI.abi.last_flowret = ret;
4970 GST_OBJECT_UNLOCK (pad);
4975 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4976 "pulling range, but it was not linked");
4977 pad->ABI.abi.last_flowret = GST_FLOW_NOT_LINKED;
4978 GST_OBJECT_UNLOCK (pad);
4979 ret = GST_FLOW_NOT_LINKED;
4984 pad->ABI.abi.last_flowret = ret;
4985 GST_OBJECT_UNLOCK (pad);
4986 GST_CAT_LEVEL_LOG (GST_CAT_SCHEDULING,
4987 (ret >= GST_FLOW_EOS) ? GST_LEVEL_INFO : GST_LEVEL_WARNING,
4988 pad, "pullrange failed, flow: %s", gst_flow_get_name (ret));
4991 probe_stopped_unref:
4993 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4994 "post probe returned %s", gst_flow_get_name (ret));
4996 /* if we drop here, it signals EOS */
4997 if (ret == GST_FLOW_CUSTOM_SUCCESS)
5000 pad->ABI.abi.last_flowret = ret;
5001 GST_OBJECT_UNLOCK (pad);
5003 if (*buffer == NULL)
5004 gst_buffer_unref (res_buf);
5008 GST_TRACER_PAD_PULL_RANGE_POST (pad, NULL, ret);
5012 /* must be called with pad object lock */
5013 static GstFlowReturn
5014 store_sticky_event (GstPad * pad, GstEvent * event)
5019 gboolean res = FALSE;
5020 const gchar *name = NULL;
5021 gboolean insert = TRUE;
5023 type = GST_EVENT_TYPE (event);
5025 /* Store all sticky events except SEGMENT/EOS when we're flushing,
5026 * otherwise they can be dropped and nothing would ever resend them.
5027 * Only do that for activated pads though, everything else is a bug!
5029 if (G_UNLIKELY (GST_PAD_MODE (pad) == GST_PAD_MODE_NONE
5030 || (GST_PAD_IS_FLUSHING (pad) && (type == GST_EVENT_SEGMENT
5031 || type == GST_EVENT_EOS))))
5034 /* Unset the EOS flag when received STREAM_START event, so pad can
5035 * store sticky event and then push it later */
5036 if (type == GST_EVENT_STREAM_START) {
5037 GST_LOG_OBJECT (pad, "Removing pending EOS and StreamGroupDone events");
5038 remove_event_by_type (pad, GST_EVENT_EOS);
5039 remove_event_by_type (pad, GST_EVENT_STREAM_GROUP_DONE);
5040 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_EOS);
5043 if (G_UNLIKELY (GST_PAD_IS_EOS (pad)))
5046 if (type & GST_EVENT_TYPE_STICKY_MULTI)
5047 name = gst_structure_get_name (gst_event_get_structure (event));
5049 events = pad->priv->events;
5052 for (i = 0; i < len; i++) {
5053 PadEvent *ev = &g_array_index (events, PadEvent, i);
5055 if (ev->event == NULL)
5058 if (type == GST_EVENT_TYPE (ev->event)) {
5059 /* matching types, check matching name if needed */
5060 if (name && !gst_event_has_name (ev->event, name))
5064 if ((res = gst_event_replace (&ev->event, event)))
5065 ev->received = FALSE;
5071 if (type < GST_EVENT_TYPE (ev->event) || (type != GST_EVENT_TYPE (ev->event)
5072 && GST_EVENT_TYPE (ev->event) == GST_EVENT_EOS)) {
5073 /* STREAM_START, CAPS and SEGMENT must be delivered in this order. By
5074 * storing the sticky ordered we can check that this is respected. */
5075 if (G_UNLIKELY (GST_EVENT_TYPE (ev->event) <= GST_EVENT_SEGMENT
5076 || GST_EVENT_TYPE (ev->event) == GST_EVENT_EOS))
5078 ":%s:<%s:%s> Sticky event misordering, got '%s' before '%s'",
5079 G_STRFUNC, GST_DEBUG_PAD_NAME (pad),
5080 gst_event_type_get_name (GST_EVENT_TYPE (ev->event)),
5081 gst_event_type_get_name (type));
5087 ev.event = gst_event_ref (event);
5088 ev.received = FALSE;
5089 g_array_insert_val (events, i, ev);
5094 pad->priv->events_cookie++;
5095 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
5097 GST_LOG_OBJECT (pad, "stored sticky event %s", GST_EVENT_TYPE_NAME (event));
5099 switch (GST_EVENT_TYPE (event)) {
5100 case GST_EVENT_CAPS:
5101 GST_OBJECT_UNLOCK (pad);
5103 GST_DEBUG_OBJECT (pad, "notify caps");
5104 g_object_notify_by_pspec ((GObject *) pad, pspec_caps);
5106 GST_OBJECT_LOCK (pad);
5112 if (type == GST_EVENT_EOS) {
5113 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_EOS);
5114 pad->ABI.abi.last_flowret = GST_FLOW_EOS;
5117 return GST_PAD_IS_FLUSHING (pad) ? GST_FLOW_FLUSHING : GST_FLOW_OK;
5122 GST_DEBUG_OBJECT (pad, "pad is flushing");
5123 return GST_FLOW_FLUSHING;
5127 GST_DEBUG_OBJECT (pad, "pad is EOS");
5128 return GST_FLOW_EOS;
5133 * gst_pad_store_sticky_event:
5135 * @event: (transfer none): a #GstEvent
5137 * Store the sticky @event on @pad
5139 * Returns: #GST_FLOW_OK on success, #GST_FLOW_FLUSHING when the pad
5140 * was flushing or #GST_FLOW_EOS when the pad was EOS.
5145 gst_pad_store_sticky_event (GstPad * pad, GstEvent * event)
5149 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
5150 g_return_val_if_fail (GST_IS_EVENT (event), FALSE);
5152 GST_OBJECT_LOCK (pad);
5153 ret = store_sticky_event (pad, event);
5154 GST_OBJECT_UNLOCK (pad);
5160 sticky_changed (GstPad * pad, PadEvent * ev, gpointer user_data)
5162 PushStickyData *data = user_data;
5164 /* Forward all sticky events before our current one that are pending */
5165 if (ev->event != data->event
5166 && GST_EVENT_TYPE (ev->event) < GST_EVENT_TYPE (data->event))
5167 return push_sticky (pad, ev, data);
5172 /* should be called with pad LOCK */
5173 static GstFlowReturn
5174 gst_pad_push_event_unchecked (GstPad * pad, GstEvent * event,
5175 GstPadProbeType type)
5179 GstEventType event_type;
5181 /* pass the adjusted event on. We need to do this even if
5182 * there is no peer pad because of the probes. */
5183 event = apply_pad_offset (pad, event, GST_PAD_IS_SINK (pad));
5185 /* Two checks to be made:
5186 * . (un)set the FLUSHING flag for flushing events,
5187 * . handle pad blocking */
5188 event_type = GST_EVENT_TYPE (event);
5189 switch (event_type) {
5190 case GST_EVENT_FLUSH_START:
5191 GST_PAD_SET_FLUSHING (pad);
5193 GST_PAD_BLOCK_BROADCAST (pad);
5194 type |= GST_PAD_PROBE_TYPE_EVENT_FLUSH;
5196 case GST_EVENT_FLUSH_STOP:
5197 if (G_UNLIKELY (!GST_PAD_IS_ACTIVE (pad)))
5200 GST_PAD_UNSET_FLUSHING (pad);
5202 /* Remove sticky EOS events */
5203 GST_LOG_OBJECT (pad, "Removing pending EOS events");
5204 remove_event_by_type (pad, GST_EVENT_EOS);
5205 remove_event_by_type (pad, GST_EVENT_STREAM_GROUP_DONE);
5206 remove_event_by_type (pad, GST_EVENT_SEGMENT);
5207 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_EOS);
5208 pad->ABI.abi.last_flowret = GST_FLOW_OK;
5210 type |= GST_PAD_PROBE_TYPE_EVENT_FLUSH;
5214 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
5217 /* No need to check for EOS here as either the caller (gst_pad_push_event())
5218 * checked already or this is called as part of pushing sticky events,
5219 * in which case we still want to forward the EOS event downstream.
5222 switch (GST_EVENT_TYPE (event)) {
5223 case GST_EVENT_RECONFIGURE:
5224 if (GST_PAD_IS_SINK (pad))
5225 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_NEED_RECONFIGURE);
5230 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH |
5231 GST_PAD_PROBE_TYPE_BLOCK, event, probe_stopped);
5236 /* send probes after modifying the events above */
5237 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH, event, probe_stopped);
5239 /* recheck sticky events because the probe might have cause a relink */
5240 if (GST_PAD_HAS_PENDING_EVENTS (pad) && GST_PAD_IS_SRC (pad)
5241 && (GST_EVENT_IS_SERIALIZED (event)
5242 || GST_EVENT_IS_STICKY (event))) {
5243 PushStickyData data = { GST_FLOW_OK, FALSE, event };
5244 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_PENDING_EVENTS);
5246 /* Push all sticky events before our current one
5247 * that have changed */
5248 events_foreach (pad, sticky_changed, &data);
5251 /* now check the peer pad */
5252 peerpad = GST_PAD_PEER (pad);
5253 if (peerpad == NULL)
5256 gst_object_ref (peerpad);
5258 GST_OBJECT_UNLOCK (pad);
5260 GST_LOG_OBJECT (pad, "sending event %p (%s) to peerpad %" GST_PTR_FORMAT,
5261 event, gst_event_type_get_name (event_type), peerpad);
5263 ret = gst_pad_send_event_unchecked (peerpad, event, type);
5265 /* Note: we gave away ownership of the event at this point but we can still
5266 * print the old pointer */
5267 GST_LOG_OBJECT (pad,
5268 "sent event %p (%s) to peerpad %" GST_PTR_FORMAT ", ret %s", event,
5269 gst_event_type_get_name (event_type), peerpad, gst_flow_get_name (ret));
5271 gst_object_unref (peerpad);
5273 GST_OBJECT_LOCK (pad);
5275 if (pad->priv->using == 0) {
5276 /* pad is not active anymore, trigger idle callbacks */
5277 PROBE_NO_DATA (pad, GST_PAD_PROBE_TYPE_PUSH | GST_PAD_PROBE_TYPE_IDLE,
5278 idle_probe_stopped, ret);
5282 /* ERROR handling */
5285 GST_DEBUG_OBJECT (pad, "We're flushing");
5286 gst_event_unref (event);
5287 return GST_FLOW_FLUSHING;
5291 GST_DEBUG_OBJECT (pad, "flush-stop on inactive pad");
5292 gst_event_unref (event);
5293 return GST_FLOW_FLUSHING;
5297 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
5298 if (ret != GST_FLOW_CUSTOM_SUCCESS_1)
5299 gst_event_unref (event);
5302 case GST_FLOW_CUSTOM_SUCCESS_1:
5303 GST_DEBUG_OBJECT (pad, "handled event");
5305 case GST_FLOW_CUSTOM_SUCCESS:
5306 GST_DEBUG_OBJECT (pad, "dropped event");
5309 GST_DEBUG_OBJECT (pad, "an error occurred %s", gst_flow_get_name (ret));
5316 GST_DEBUG_OBJECT (pad, "Dropping event %s because pad is not linked",
5317 gst_event_type_get_name (GST_EVENT_TYPE (event)));
5318 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
5319 gst_event_unref (event);
5321 /* unlinked pads should not influence latency configuration */
5322 if (event_type == GST_EVENT_LATENCY)
5325 return GST_FLOW_NOT_LINKED;
5329 GST_DEBUG_OBJECT (pad, "Idle probe returned %s", gst_flow_get_name (ret));
5335 * gst_pad_push_event:
5336 * @pad: a #GstPad to push the event to.
5337 * @event: (transfer full): the #GstEvent to send to the pad.
5339 * Sends the event to the peer of the given pad. This function is
5340 * mainly used by elements to send events to their peer
5343 * This function takes ownership of the provided event so you should
5344 * gst_event_ref() it if you want to reuse the event after this call.
5346 * Returns: %TRUE if the event was handled.
5351 gst_pad_push_event (GstPad * pad, GstEvent * event)
5353 gboolean res = FALSE;
5354 GstPadProbeType type;
5355 gboolean sticky, serialized;
5357 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
5358 g_return_val_if_fail (GST_IS_EVENT (event), FALSE);
5360 GST_TRACER_PAD_PUSH_EVENT_PRE (pad, event);
5362 if (GST_PAD_IS_SRC (pad)) {
5363 if (G_UNLIKELY (!GST_EVENT_IS_DOWNSTREAM (event)))
5364 goto wrong_direction;
5365 type = GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM;
5366 } else if (GST_PAD_IS_SINK (pad)) {
5367 if (G_UNLIKELY (!GST_EVENT_IS_UPSTREAM (event)))
5368 goto wrong_direction;
5369 /* events pushed on sinkpad never are sticky */
5370 type = GST_PAD_PROBE_TYPE_EVENT_UPSTREAM;
5372 goto unknown_direction;
5374 GST_OBJECT_LOCK (pad);
5375 sticky = GST_EVENT_IS_STICKY (event);
5376 serialized = GST_EVENT_IS_SERIALIZED (event);
5379 /* srcpad sticky events are stored immediately, the received flag is set
5380 * to FALSE and will be set to TRUE when we can successfully push the
5381 * event to the peer pad */
5382 switch (store_sticky_event (pad, event)) {
5383 case GST_FLOW_FLUSHING:
5391 if (GST_PAD_IS_SRC (pad) && (serialized || sticky)) {
5392 /* all serialized or sticky events on the srcpad trigger push of
5394 res = (check_sticky (pad, event) == GST_FLOW_OK);
5399 /* other events are pushed right away */
5400 ret = gst_pad_push_event_unchecked (pad, event, type);
5401 /* dropped events by a probe are not an error */
5402 res = (ret == GST_FLOW_OK || ret == GST_FLOW_CUSTOM_SUCCESS
5403 || ret == GST_FLOW_CUSTOM_SUCCESS_1);
5405 /* Errors in sticky event pushing are no problem and ignored here
5406 * as they will cause more meaningful errors during data flow.
5407 * For EOS events, that are not followed by data flow, we still
5408 * return FALSE here though.
5410 if (GST_EVENT_TYPE (event) != GST_EVENT_EOS)
5412 gst_event_unref (event);
5414 GST_OBJECT_UNLOCK (pad);
5416 GST_TRACER_PAD_PUSH_EVENT_POST (pad, res);
5419 /* ERROR handling */
5422 g_warning ("pad %s:%s pushing %s event in wrong direction",
5423 GST_DEBUG_PAD_NAME (pad), GST_EVENT_TYPE_NAME (event));
5424 gst_event_unref (event);
5429 g_warning ("pad %s:%s has invalid direction", GST_DEBUG_PAD_NAME (pad));
5430 gst_event_unref (event);
5435 GST_DEBUG_OBJECT (pad, "We're flushing");
5436 GST_OBJECT_UNLOCK (pad);
5437 gst_event_unref (event);
5442 GST_DEBUG_OBJECT (pad, "We're EOS");
5443 GST_OBJECT_UNLOCK (pad);
5444 gst_event_unref (event);
5448 GST_TRACER_PAD_PUSH_EVENT_POST (pad, FALSE);
5452 /* Check if we can call the event function with the given event */
5453 static GstFlowReturn
5454 pre_eventfunc_check (GstPad * pad, GstEvent * event)
5458 switch (GST_EVENT_TYPE (event)) {
5459 case GST_EVENT_CAPS:
5461 /* backwards compatibility mode for caps */
5462 gst_event_parse_caps (event, &caps);
5464 if (!gst_pad_query_accept_caps (pad, caps))
5476 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
5477 "caps %" GST_PTR_FORMAT " not accepted", caps);
5478 return GST_FLOW_NOT_NEGOTIATED;
5482 static GstFlowReturn
5483 gst_pad_send_event_unchecked (GstPad * pad, GstEvent * event,
5484 GstPadProbeType type)
5487 GstEventType event_type;
5488 gboolean serialized, need_unlock = FALSE, sticky;
5489 GstPadEventFunction eventfunc;
5490 GstPadEventFullFunction eventfullfunc = NULL;
5493 GST_OBJECT_LOCK (pad);
5495 event = apply_pad_offset (pad, event, GST_PAD_IS_SRC (pad));
5497 if (GST_PAD_IS_SINK (pad))
5498 serialized = GST_EVENT_IS_SERIALIZED (event);
5501 sticky = GST_EVENT_IS_STICKY (event);
5502 event_type = GST_EVENT_TYPE (event);
5503 switch (event_type) {
5504 case GST_EVENT_FLUSH_START:
5505 GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad,
5506 "have event type %d (FLUSH_START)", GST_EVENT_TYPE (event));
5508 /* can't even accept a flush begin event when flushing */
5509 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
5512 GST_PAD_SET_FLUSHING (pad);
5513 GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad, "set flush flag");
5514 GST_PAD_BLOCK_BROADCAST (pad);
5515 type |= GST_PAD_PROBE_TYPE_EVENT_FLUSH;
5517 case GST_EVENT_FLUSH_STOP:
5518 /* we can't accept flush-stop on inactive pads else the flushing flag
5519 * would be cleared and it would look like the pad can accept data.
5520 * Also, some elements restart a streaming thread in flush-stop which we
5521 * can't allow on inactive pads */
5522 if (G_UNLIKELY (!GST_PAD_IS_ACTIVE (pad)))
5525 GST_PAD_UNSET_FLUSHING (pad);
5526 GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad, "cleared flush flag");
5527 /* Remove pending EOS events */
5528 GST_LOG_OBJECT (pad, "Removing pending EOS and SEGMENT events");
5529 remove_event_by_type (pad, GST_EVENT_EOS);
5530 remove_event_by_type (pad, GST_EVENT_STREAM_GROUP_DONE);
5531 remove_event_by_type (pad, GST_EVENT_SEGMENT);
5532 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_EOS);
5533 pad->ABI.abi.last_flowret = GST_FLOW_OK;
5535 GST_OBJECT_UNLOCK (pad);
5536 /* grab stream lock */
5537 GST_PAD_STREAM_LOCK (pad);
5539 GST_OBJECT_LOCK (pad);
5540 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
5543 case GST_EVENT_RECONFIGURE:
5544 if (GST_PAD_IS_SRC (pad))
5545 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_NEED_RECONFIGURE);
5547 GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad,
5548 "have event type %" GST_PTR_FORMAT, event);
5550 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
5553 switch (event_type) {
5554 case GST_EVENT_STREAM_START:
5555 /* Remove sticky EOS events */
5556 GST_LOG_OBJECT (pad, "Removing pending EOS events");
5557 remove_event_by_type (pad, GST_EVENT_EOS);
5558 remove_event_by_type (pad, GST_EVENT_STREAM_GROUP_DONE);
5559 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_EOS);
5566 if (G_UNLIKELY (GST_PAD_IS_EOS (pad)))
5569 /* lock order: STREAM_LOCK, LOCK, recheck flushing. */
5570 GST_OBJECT_UNLOCK (pad);
5571 GST_PAD_STREAM_LOCK (pad);
5573 GST_OBJECT_LOCK (pad);
5574 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
5577 if (G_UNLIKELY (GST_PAD_IS_EOS (pad)))
5583 /* now do the probe */
5585 type | GST_PAD_PROBE_TYPE_PUSH |
5586 GST_PAD_PROBE_TYPE_BLOCK, event, probe_stopped);
5588 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH, event, probe_stopped);
5590 eventfullfunc = GST_PAD_EVENTFULLFUNC (pad);
5591 eventfunc = GST_PAD_EVENTFUNC (pad);
5592 if (G_UNLIKELY (eventfunc == NULL && eventfullfunc == NULL))
5595 ACQUIRE_PARENT (pad, parent, no_parent);
5596 GST_OBJECT_UNLOCK (pad);
5598 ret = pre_eventfunc_check (pad, event);
5599 if (G_UNLIKELY (ret != GST_FLOW_OK))
5600 goto precheck_failed;
5603 gst_event_ref (event);
5605 if (eventfullfunc) {
5606 ret = eventfullfunc (pad, parent, event);
5607 } else if (eventfunc (pad, parent, event)) {
5610 /* something went wrong */
5611 switch (event_type) {
5612 case GST_EVENT_CAPS:
5613 ret = GST_FLOW_NOT_NEGOTIATED;
5616 ret = GST_FLOW_ERROR;
5620 RELEASE_PARENT (parent);
5622 GST_DEBUG_OBJECT (pad, "sent event, ret %s", gst_flow_get_name (ret));
5625 if (ret == GST_FLOW_OK) {
5626 GST_OBJECT_LOCK (pad);
5627 /* after the event function accepted the event, we can store the sticky
5628 * event on the pad */
5629 switch (store_sticky_event (pad, event)) {
5630 case GST_FLOW_FLUSHING:
5637 GST_OBJECT_UNLOCK (pad);
5639 gst_event_unref (event);
5643 GST_PAD_STREAM_UNLOCK (pad);
5647 /* ERROR handling */
5650 GST_OBJECT_UNLOCK (pad);
5652 GST_PAD_STREAM_UNLOCK (pad);
5653 GST_CAT_INFO_OBJECT (GST_CAT_EVENT, pad,
5654 "Received event on flushing pad. Discarding");
5655 gst_event_unref (event);
5656 return GST_FLOW_FLUSHING;
5660 GST_OBJECT_UNLOCK (pad);
5662 GST_PAD_STREAM_UNLOCK (pad);
5663 GST_CAT_INFO_OBJECT (GST_CAT_EVENT, pad,
5664 "Received flush-stop on inactive pad. Discarding");
5665 gst_event_unref (event);
5666 return GST_FLOW_FLUSHING;
5670 GST_OBJECT_UNLOCK (pad);
5672 GST_PAD_STREAM_UNLOCK (pad);
5673 GST_CAT_INFO_OBJECT (GST_CAT_EVENT, pad,
5674 "Received event on EOS pad. Discarding");
5675 gst_event_unref (event);
5676 return GST_FLOW_EOS;
5680 GST_OBJECT_UNLOCK (pad);
5682 GST_PAD_STREAM_UNLOCK (pad);
5683 /* Only unref if unhandled */
5684 if (ret != GST_FLOW_CUSTOM_SUCCESS_1)
5685 gst_event_unref (event);
5688 case GST_FLOW_CUSTOM_SUCCESS_1:
5689 case GST_FLOW_CUSTOM_SUCCESS:
5690 GST_DEBUG_OBJECT (pad, "dropped or handled event");
5694 GST_DEBUG_OBJECT (pad, "an error occurred %s", gst_flow_get_name (ret));
5701 g_warning ("pad %s:%s has no event handler, file a bug.",
5702 GST_DEBUG_PAD_NAME (pad));
5703 GST_OBJECT_UNLOCK (pad);
5705 GST_PAD_STREAM_UNLOCK (pad);
5706 gst_event_unref (event);
5707 return GST_FLOW_NOT_SUPPORTED;
5711 GST_DEBUG_OBJECT (pad, "no parent");
5712 GST_OBJECT_UNLOCK (pad);
5714 GST_PAD_STREAM_UNLOCK (pad);
5715 gst_event_unref (event);
5716 return GST_FLOW_FLUSHING;
5720 GST_DEBUG_OBJECT (pad, "pre event check failed");
5721 RELEASE_PARENT (parent);
5723 GST_PAD_STREAM_UNLOCK (pad);
5724 gst_event_unref (event);
5730 * gst_pad_send_event:
5731 * @pad: a #GstPad to send the event to.
5732 * @event: (transfer full): the #GstEvent to send to the pad.
5734 * Sends the event to the pad. This function can be used
5735 * by applications to send events in the pipeline.
5737 * If @pad is a source pad, @event should be an upstream event. If @pad is a
5738 * sink pad, @event should be a downstream event. For example, you would not
5739 * send a #GST_EVENT_EOS on a src pad; EOS events only propagate downstream.
5740 * Furthermore, some downstream events have to be serialized with data flow,
5741 * like EOS, while some can travel out-of-band, like #GST_EVENT_FLUSH_START. If
5742 * the event needs to be serialized with data flow, this function will take the
5743 * pad's stream lock while calling its event function.
5745 * To find out whether an event type is upstream, downstream, or downstream and
5746 * serialized, see #GstEventTypeFlags, gst_event_type_get_flags(),
5747 * #GST_EVENT_IS_UPSTREAM, #GST_EVENT_IS_DOWNSTREAM, and
5748 * #GST_EVENT_IS_SERIALIZED. Note that in practice that an application or
5749 * plugin doesn't need to bother itself with this information; the core handles
5750 * all necessary locks and checks.
5752 * This function takes ownership of the provided event so you should
5753 * gst_event_ref() it if you want to reuse the event after this call.
5755 * Returns: %TRUE if the event was handled.
5758 gst_pad_send_event (GstPad * pad, GstEvent * event)
5761 GstPadProbeType type;
5763 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
5764 g_return_val_if_fail (event != NULL, FALSE);
5766 if (GST_PAD_IS_SINK (pad)) {
5767 if (G_UNLIKELY (!GST_EVENT_IS_DOWNSTREAM (event)))
5768 goto wrong_direction;
5769 type = GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM;
5770 } else if (GST_PAD_IS_SRC (pad)) {
5771 if (G_UNLIKELY (!GST_EVENT_IS_UPSTREAM (event)))
5772 goto wrong_direction;
5773 type = GST_PAD_PROBE_TYPE_EVENT_UPSTREAM;
5775 goto unknown_direction;
5777 if (gst_pad_send_event_unchecked (pad, event, type) != GST_FLOW_OK)
5784 /* ERROR handling */
5787 g_warning ("pad %s:%s sending %s event in wrong direction",
5788 GST_DEBUG_PAD_NAME (pad), GST_EVENT_TYPE_NAME (event));
5789 gst_event_unref (event);
5794 g_warning ("pad %s:%s has invalid direction", GST_DEBUG_PAD_NAME (pad));
5795 gst_event_unref (event);
5801 * gst_pad_set_element_private:
5802 * @pad: the #GstPad to set the private data of.
5803 * @priv: The private data to attach to the pad.
5805 * Set the given private data gpointer on the pad.
5806 * This function can only be used by the element that owns the pad.
5807 * No locking is performed in this function.
5810 gst_pad_set_element_private (GstPad * pad, gpointer priv)
5812 pad->element_private = priv;
5816 * gst_pad_get_element_private:
5817 * @pad: the #GstPad to get the private data of.
5819 * Gets the private data of a pad.
5820 * No locking is performed in this function.
5822 * Returns: (transfer none): a #gpointer to the private data.
5825 gst_pad_get_element_private (GstPad * pad)
5827 return pad->element_private;
5831 * gst_pad_get_sticky_event:
5832 * @pad: the #GstPad to get the event from.
5833 * @event_type: the #GstEventType that should be retrieved.
5834 * @idx: the index of the event
5836 * Returns a new reference of the sticky event of type @event_type
5839 * Returns: (transfer full) (nullable): a #GstEvent of type
5840 * @event_type or %NULL when no event of @event_type was on
5841 * @pad. Unref after usage.
5844 gst_pad_get_sticky_event (GstPad * pad, GstEventType event_type, guint idx)
5846 GstEvent *event = NULL;
5849 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
5850 g_return_val_if_fail ((event_type & GST_EVENT_TYPE_STICKY) != 0, NULL);
5852 GST_OBJECT_LOCK (pad);
5853 ev = find_event_by_type (pad, event_type, idx);
5854 if (ev && (event = ev->event))
5855 gst_event_ref (event);
5856 GST_OBJECT_UNLOCK (pad);
5863 GstPadStickyEventsForeachFunction func;
5868 foreach_dispatch_function (GstPad * pad, PadEvent * ev, gpointer user_data)
5870 ForeachDispatch *data = user_data;
5871 gboolean ret = TRUE;
5874 GST_OBJECT_UNLOCK (pad);
5876 ret = data->func (pad, &ev->event, data->user_data);
5878 GST_OBJECT_LOCK (pad);
5885 * gst_pad_sticky_events_foreach:
5886 * @pad: the #GstPad that should be used for iteration.
5887 * @foreach_func: (scope call): the #GstPadStickyEventsForeachFunction that
5888 * should be called for every event.
5889 * @user_data: (closure): the optional user data.
5891 * Iterates all sticky events on @pad and calls @foreach_func for every
5892 * event. If @foreach_func returns %FALSE the iteration is immediately stopped.
5895 gst_pad_sticky_events_foreach (GstPad * pad,
5896 GstPadStickyEventsForeachFunction foreach_func, gpointer user_data)
5898 ForeachDispatch data;
5900 g_return_if_fail (GST_IS_PAD (pad));
5901 g_return_if_fail (foreach_func != NULL);
5903 data.func = foreach_func;
5904 data.user_data = user_data;
5906 GST_OBJECT_LOCK (pad);
5907 events_foreach (pad, foreach_dispatch_function, &data);
5908 GST_OBJECT_UNLOCK (pad);
5912 do_stream_status (GstPad * pad, GstStreamStatusType type,
5913 GThread * thread, GstTask * task)
5917 GST_DEBUG_OBJECT (pad, "doing stream-status %d", type);
5919 if ((parent = GST_ELEMENT_CAST (gst_pad_get_parent (pad)))) {
5920 if (GST_IS_ELEMENT (parent)) {
5921 GstMessage *message;
5922 GValue value = { 0 };
5924 if (type == GST_STREAM_STATUS_TYPE_ENTER) {
5925 gchar *tname, *ename, *pname;
5927 /* create a good task name */
5928 ename = gst_element_get_name (parent);
5929 pname = gst_pad_get_name (pad);
5930 tname = g_strdup_printf ("%s:%s", ename, pname);
5934 gst_object_set_name (GST_OBJECT_CAST (task), tname);
5938 message = gst_message_new_stream_status (GST_OBJECT_CAST (pad),
5941 g_value_init (&value, GST_TYPE_TASK);
5942 g_value_set_object (&value, task);
5943 gst_message_set_stream_status_object (message, &value);
5944 g_value_unset (&value);
5946 GST_DEBUG_OBJECT (pad, "posting stream-status %d", type);
5947 gst_element_post_message (parent, message);
5949 gst_object_unref (parent);
5954 pad_enter_thread (GstTask * task, GThread * thread, gpointer user_data)
5956 do_stream_status (GST_PAD_CAST (user_data), GST_STREAM_STATUS_TYPE_ENTER,
5961 pad_leave_thread (GstTask * task, GThread * thread, gpointer user_data)
5963 do_stream_status (GST_PAD_CAST (user_data), GST_STREAM_STATUS_TYPE_LEAVE,
5968 * gst_pad_start_task:
5969 * @pad: the #GstPad to start the task of
5970 * @func: the task function to call
5971 * @user_data: user data passed to the task function
5972 * @notify: called when @user_data is no longer referenced
5974 * Starts a task that repeatedly calls @func with @user_data. This function
5975 * is mostly used in pad activation functions to start the dataflow.
5976 * The #GST_PAD_STREAM_LOCK of @pad will automatically be acquired
5977 * before @func is called.
5979 * Returns: a %TRUE if the task could be started.
5982 gst_pad_start_task (GstPad * pad, GstTaskFunction func, gpointer user_data,
5983 GDestroyNotify notify)
5988 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
5989 g_return_val_if_fail (func != NULL, FALSE);
5991 GST_DEBUG_OBJECT (pad, "start task");
5993 GST_OBJECT_LOCK (pad);
5994 task = GST_PAD_TASK (pad);
5996 task = gst_task_new (func, user_data, notify);
5997 gst_task_set_lock (task, GST_PAD_GET_STREAM_LOCK (pad));
5998 gst_task_set_enter_callback (task, pad_enter_thread, pad, NULL);
5999 gst_task_set_leave_callback (task, pad_leave_thread, pad, NULL);
6000 GST_INFO_OBJECT (pad, "created task %p", task);
6001 GST_PAD_TASK (pad) = task;
6002 gst_object_ref (task);
6003 /* release lock to post the message */
6004 GST_OBJECT_UNLOCK (pad);
6006 do_stream_status (pad, GST_STREAM_STATUS_TYPE_CREATE, NULL, task);
6008 gst_object_unref (task);
6010 GST_OBJECT_LOCK (pad);
6011 /* nobody else is supposed to have changed the pad now */
6012 if (GST_PAD_TASK (pad) != task)
6013 goto concurrent_stop;
6015 res = gst_task_set_state (task, GST_TASK_STARTED);
6016 GST_OBJECT_UNLOCK (pad);
6023 GST_OBJECT_UNLOCK (pad);
6029 * gst_pad_pause_task:
6030 * @pad: the #GstPad to pause the task of
6032 * Pause the task of @pad. This function will also wait until the
6033 * function executed by the task is finished if this function is not
6034 * called from the task function.
6036 * Returns: a %TRUE if the task could be paused or %FALSE when the pad
6040 gst_pad_pause_task (GstPad * pad)
6045 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
6047 GST_DEBUG_OBJECT (pad, "pause task");
6049 GST_OBJECT_LOCK (pad);
6050 task = GST_PAD_TASK (pad);
6053 res = gst_task_set_state (task, GST_TASK_PAUSED);
6054 GST_OBJECT_UNLOCK (pad);
6056 /* wait for task function to finish, this lock is recursive so it does nothing
6057 * when the pause is called from the task itself */
6058 GST_PAD_STREAM_LOCK (pad);
6059 GST_PAD_STREAM_UNLOCK (pad);
6065 GST_DEBUG_OBJECT (pad, "pad has no task");
6066 GST_OBJECT_UNLOCK (pad);
6072 * gst_pad_stop_task:
6073 * @pad: the #GstPad to stop the task of
6075 * Stop the task of @pad. This function will also make sure that the
6076 * function executed by the task will effectively stop if not called
6077 * from the GstTaskFunction.
6079 * This function will deadlock if called from the GstTaskFunction of
6080 * the task. Use gst_task_pause() instead.
6082 * Regardless of whether the pad has a task, the stream lock is acquired and
6083 * released so as to ensure that streaming through this pad has finished.
6085 * Returns: a %TRUE if the task could be stopped or %FALSE on error.
6088 gst_pad_stop_task (GstPad * pad)
6093 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
6095 GST_DEBUG_OBJECT (pad, "stop task");
6097 GST_OBJECT_LOCK (pad);
6098 task = GST_PAD_TASK (pad);
6101 GST_PAD_TASK (pad) = NULL;
6102 res = gst_task_set_state (task, GST_TASK_STOPPED);
6103 GST_OBJECT_UNLOCK (pad);
6105 GST_PAD_STREAM_LOCK (pad);
6106 GST_PAD_STREAM_UNLOCK (pad);
6108 if (!gst_task_join (task))
6111 gst_object_unref (task);
6117 GST_DEBUG_OBJECT (pad, "no task");
6118 GST_OBJECT_UNLOCK (pad);
6120 GST_PAD_STREAM_LOCK (pad);
6121 GST_PAD_STREAM_UNLOCK (pad);
6123 /* this is not an error */
6128 /* this is bad, possibly the application tried to join the task from
6129 * the task's thread. We install the task again so that it will be stopped
6130 * again from the right thread next time hopefully. */
6131 GST_OBJECT_LOCK (pad);
6132 GST_DEBUG_OBJECT (pad, "join failed");
6133 /* we can only install this task if there was no other task */
6134 if (GST_PAD_TASK (pad) == NULL)
6135 GST_PAD_TASK (pad) = task;
6136 GST_OBJECT_UNLOCK (pad);
6143 * gst_pad_probe_info_get_event:
6144 * @info: a #GstPadProbeInfo
6146 * Returns: (transfer none): The #GstEvent from the probe
6150 gst_pad_probe_info_get_event (GstPadProbeInfo * info)
6152 g_return_val_if_fail (info->type & (GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM |
6153 GST_PAD_PROBE_TYPE_EVENT_UPSTREAM), NULL);
6155 return GST_PAD_PROBE_INFO_EVENT (info);
6160 * gst_pad_probe_info_get_query:
6161 * @info: a #GstPadProbeInfo
6163 * Returns: (transfer none): The #GstQuery from the probe
6167 gst_pad_probe_info_get_query (GstPadProbeInfo * info)
6169 g_return_val_if_fail (info->type & (GST_PAD_PROBE_TYPE_QUERY_DOWNSTREAM |
6170 GST_PAD_PROBE_TYPE_QUERY_UPSTREAM), NULL);
6172 return GST_PAD_PROBE_INFO_QUERY (info);
6176 * gst_pad_probe_info_get_buffer:
6177 * @info: a #GstPadProbeInfo
6179 * Returns: (transfer none): The #GstBuffer from the probe
6183 gst_pad_probe_info_get_buffer (GstPadProbeInfo * info)
6185 g_return_val_if_fail (info->type & GST_PAD_PROBE_TYPE_BUFFER, NULL);
6187 return GST_PAD_PROBE_INFO_BUFFER (info);
6191 * gst_pad_probe_info_get_buffer_list:
6192 * @info: a #GstPadProbeInfo
6194 * Returns: (transfer none): The #GstBufferList from the probe
6198 gst_pad_probe_info_get_buffer_list (GstPadProbeInfo * info)
6200 g_return_val_if_fail (info->type & GST_PAD_PROBE_TYPE_BUFFER_LIST, NULL);
6202 return GST_PAD_PROBE_INFO_BUFFER_LIST (info);
6206 * gst_pad_get_last_flow_return:
6209 * Gets the #GstFlowReturn return from the last data passed by this pad.
6214 gst_pad_get_last_flow_return (GstPad * pad)
6218 GST_OBJECT_LOCK (pad);
6219 ret = GST_PAD_LAST_FLOW_RETURN (pad);
6220 GST_OBJECT_UNLOCK (pad);