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"
98 #include "glib-compat-private.h"
100 GST_DEBUG_CATEGORY_STATIC (debug_dataflow);
101 #define GST_CAT_DEFAULT GST_CAT_PADS
103 /* Pad signals and args */
122 #define GST_PAD_GET_PRIVATE(obj) \
123 (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_PAD, GstPadPrivate))
125 /* we have a pending and an active event on the pad. On source pads only the
126 * active event is used. On sinkpads, events are copied to the pending entry and
127 * moved to the active event when the eventfunc returned %TRUE. */
134 struct _GstPadPrivate
141 guint probe_list_cookie;
151 #define PROBE_COOKIE(h) (((GstProbe *)(h))->cookie)
156 GstPadProbeInfo *info;
163 static void gst_pad_dispose (GObject * object);
164 static void gst_pad_finalize (GObject * object);
165 static void gst_pad_set_property (GObject * object, guint prop_id,
166 const GValue * value, GParamSpec * pspec);
167 static void gst_pad_get_property (GObject * object, guint prop_id,
168 GValue * value, GParamSpec * pspec);
170 static void gst_pad_set_pad_template (GstPad * pad, GstPadTemplate * templ);
171 static gboolean gst_pad_activate_default (GstPad * pad, GstObject * parent);
172 static GstFlowReturn gst_pad_chain_list_default (GstPad * pad,
173 GstObject * parent, GstBufferList * list);
175 static GstFlowReturn gst_pad_send_event_unchecked (GstPad * pad,
176 GstEvent * event, GstPadProbeType type);
177 static GstFlowReturn gst_pad_push_event_unchecked (GstPad * pad,
178 GstEvent * event, GstPadProbeType type);
180 static guint gst_pad_signals[LAST_SIGNAL] = { 0 };
182 static GParamSpec *pspec_caps = NULL;
184 /* quarks for probe signals */
185 static GQuark buffer_quark;
186 static GQuark buffer_list_quark;
187 static GQuark event_quark;
196 static GstFlowQuarks flow_quarks[] = {
197 {GST_FLOW_CUSTOM_SUCCESS, "custom-success", 0},
198 {GST_FLOW_OK, "ok", 0},
199 {GST_FLOW_NOT_LINKED, "not-linked", 0},
200 {GST_FLOW_FLUSHING, "flushing", 0},
201 {GST_FLOW_EOS, "eos", 0},
202 {GST_FLOW_NOT_NEGOTIATED, "not-negotiated", 0},
203 {GST_FLOW_ERROR, "error", 0},
204 {GST_FLOW_NOT_SUPPORTED, "not-supported", 0},
205 {GST_FLOW_CUSTOM_ERROR, "custom-error", 0}
210 * @ret: a #GstFlowReturn to get the name of.
212 * Gets a string representing the given flow return.
214 * Returns: a static string with the name of the flow return.
217 gst_flow_get_name (GstFlowReturn ret)
221 ret = CLAMP (ret, GST_FLOW_CUSTOM_ERROR, GST_FLOW_CUSTOM_SUCCESS);
223 for (i = 0; i < G_N_ELEMENTS (flow_quarks); i++) {
224 if (ret == flow_quarks[i].ret)
225 return flow_quarks[i].name;
232 * @ret: a #GstFlowReturn to get the quark of.
234 * Get the unique quark for the given GstFlowReturn.
236 * Returns: the quark associated with the flow return or 0 if an
237 * invalid return was specified.
240 gst_flow_to_quark (GstFlowReturn ret)
244 ret = CLAMP (ret, GST_FLOW_CUSTOM_ERROR, GST_FLOW_CUSTOM_SUCCESS);
246 for (i = 0; i < G_N_ELEMENTS (flow_quarks); i++) {
247 if (ret == flow_quarks[i].ret)
248 return flow_quarks[i].quark;
254 * gst_pad_link_get_name:
255 * @ret: a #GstPadLinkReturn to get the name of.
257 * Gets a string representing the given pad-link return.
259 * Returns: a static string with the name of the pad-link return.
264 gst_pad_link_get_name (GstPadLinkReturn ret)
267 case GST_PAD_LINK_OK:
269 case GST_PAD_LINK_WRONG_HIERARCHY:
270 return "wrong hierarchy";
271 case GST_PAD_LINK_WAS_LINKED:
273 case GST_PAD_LINK_WRONG_DIRECTION:
274 return "wrong direction";
275 case GST_PAD_LINK_NOFORMAT:
276 return "no common format";
277 case GST_PAD_LINK_NOSCHED:
278 return "incompatible scheduling";
279 case GST_PAD_LINK_REFUSED:
282 g_return_val_if_reached ("unknown");
289 buffer_quark = g_quark_from_static_string ("buffer"); \
290 buffer_list_quark = g_quark_from_static_string ("bufferlist"); \
291 event_quark = g_quark_from_static_string ("event"); \
293 for (i = 0; i < G_N_ELEMENTS (flow_quarks); i++) { \
294 flow_quarks[i].quark = g_quark_from_static_string (flow_quarks[i].name); \
297 GST_DEBUG_CATEGORY_INIT (debug_dataflow, "GST_DATAFLOW", \
298 GST_DEBUG_BOLD | GST_DEBUG_FG_GREEN, "dataflow inside pads"); \
301 #define gst_pad_parent_class parent_class
302 G_DEFINE_TYPE_WITH_CODE (GstPad, gst_pad, GST_TYPE_OBJECT, _do_init);
305 gst_pad_class_init (GstPadClass * klass)
307 GObjectClass *gobject_class;
308 GstObjectClass *gstobject_class;
310 gobject_class = G_OBJECT_CLASS (klass);
311 gstobject_class = GST_OBJECT_CLASS (klass);
313 g_type_class_add_private (klass, sizeof (GstPadPrivate));
315 gobject_class->dispose = gst_pad_dispose;
316 gobject_class->finalize = gst_pad_finalize;
317 gobject_class->set_property = gst_pad_set_property;
318 gobject_class->get_property = gst_pad_get_property;
322 * @pad: the pad that emitted the signal
323 * @peer: the peer pad that has been connected
325 * Signals that a pad has been linked to the peer pad.
327 gst_pad_signals[PAD_LINKED] =
328 g_signal_new ("linked", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
329 G_STRUCT_OFFSET (GstPadClass, linked), NULL, NULL,
330 g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_PAD);
333 * @pad: the pad that emitted the signal
334 * @peer: the peer pad that has been disconnected
336 * Signals that a pad has been unlinked from the peer pad.
338 gst_pad_signals[PAD_UNLINKED] =
339 g_signal_new ("unlinked", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
340 G_STRUCT_OFFSET (GstPadClass, unlinked), NULL, NULL,
341 g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_PAD);
343 pspec_caps = g_param_spec_boxed ("caps", "Caps",
344 "The capabilities of the pad", GST_TYPE_CAPS,
345 G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
346 g_object_class_install_property (gobject_class, PAD_PROP_CAPS, pspec_caps);
348 g_object_class_install_property (gobject_class, PAD_PROP_DIRECTION,
349 g_param_spec_enum ("direction", "Direction", "The direction of the pad",
350 GST_TYPE_PAD_DIRECTION, GST_PAD_UNKNOWN,
351 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
353 /* FIXME, Make G_PARAM_CONSTRUCT_ONLY when we fix ghostpads. */
354 g_object_class_install_property (gobject_class, PAD_PROP_TEMPLATE,
355 g_param_spec_object ("template", "Template",
356 "The GstPadTemplate of this pad", GST_TYPE_PAD_TEMPLATE,
357 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
362 * The offset that will be applied to the running time of the pad.
366 g_object_class_install_property (gobject_class, PAD_PROP_OFFSET,
367 g_param_spec_int64 ("offset", "Offset",
368 "The running time offset of the pad", 0, G_MAXINT64, 0,
369 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
371 gstobject_class->path_string_separator = ".";
373 /* Register common function pointer descriptions */
374 GST_DEBUG_REGISTER_FUNCPTR (gst_pad_activate_default);
375 GST_DEBUG_REGISTER_FUNCPTR (gst_pad_event_default);
376 GST_DEBUG_REGISTER_FUNCPTR (gst_pad_query_default);
377 GST_DEBUG_REGISTER_FUNCPTR (gst_pad_iterate_internal_links_default);
378 GST_DEBUG_REGISTER_FUNCPTR (gst_pad_chain_list_default);
382 gst_pad_init (GstPad * pad)
384 pad->priv = GST_PAD_GET_PRIVATE (pad);
386 GST_PAD_DIRECTION (pad) = GST_PAD_UNKNOWN;
388 GST_PAD_ACTIVATEFUNC (pad) = gst_pad_activate_default;
389 GST_PAD_EVENTFUNC (pad) = gst_pad_event_default;
390 GST_PAD_QUERYFUNC (pad) = gst_pad_query_default;
391 GST_PAD_ITERINTLINKFUNC (pad) = gst_pad_iterate_internal_links_default;
392 GST_PAD_CHAINLISTFUNC (pad) = gst_pad_chain_list_default;
394 GST_PAD_SET_FLUSHING (pad);
396 g_rec_mutex_init (&pad->stream_rec_lock);
398 g_cond_init (&pad->block_cond);
400 g_hook_list_init (&pad->probes, sizeof (GstProbe));
402 pad->priv->events = g_array_sized_new (FALSE, TRUE, sizeof (PadEvent), 16);
403 pad->priv->events_cookie = 0;
404 pad->priv->last_cookie = -1;
405 pad->ABI.abi.last_flowret = GST_FLOW_FLUSHING;
408 /* called when setting the pad inactive. It removes all sticky events from
409 * the pad. must be called with object lock */
411 remove_events (GstPad * pad)
415 gboolean notify = FALSE;
417 events = pad->priv->events;
420 for (i = 0; i < len; i++) {
421 PadEvent *ev = &g_array_index (events, PadEvent, i);
422 GstEvent *event = ev->event;
426 if (event && GST_EVENT_TYPE (event) == GST_EVENT_CAPS)
429 gst_event_unref (event);
432 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_PENDING_EVENTS);
433 g_array_set_size (events, 0);
434 pad->priv->events_cookie++;
437 GST_OBJECT_UNLOCK (pad);
439 GST_DEBUG_OBJECT (pad, "notify caps");
440 g_object_notify_by_pspec ((GObject *) pad, pspec_caps);
442 GST_OBJECT_LOCK (pad);
446 /* should be called with object lock */
448 find_event_by_type (GstPad * pad, GstEventType type, guint idx)
454 events = pad->priv->events;
457 for (i = 0; i < len; i++) {
458 ev = &g_array_index (events, PadEvent, i);
459 if (ev->event == NULL)
462 if (GST_EVENT_TYPE (ev->event) == type) {
473 /* should be called with OBJECT lock */
475 find_event (GstPad * pad, GstEvent * event)
481 events = pad->priv->events;
484 for (i = 0; i < len; i++) {
485 ev = &g_array_index (events, PadEvent, i);
486 if (event == ev->event)
494 /* should be called with OBJECT lock */
496 remove_event_by_type (GstPad * pad, GstEventType type)
502 events = pad->priv->events;
507 ev = &g_array_index (events, PadEvent, i);
508 if (ev->event == NULL)
511 if (GST_EVENT_TYPE (ev->event) != type)
514 gst_event_unref (ev->event);
515 g_array_remove_index (events, i);
517 pad->priv->events_cookie++;
525 /* check all events on srcpad against those on sinkpad. All events that are not
526 * on sinkpad are marked as received=%FALSE and the PENDING_EVENTS is set on the
527 * srcpad so that the events will be sent next time */
528 /* should be called with srcpad and sinkpad LOCKS */
530 schedule_events (GstPad * srcpad, GstPad * sinkpad)
535 gboolean pending = FALSE;
537 events = srcpad->priv->events;
540 for (i = 0; i < len; i++) {
541 ev = &g_array_index (events, PadEvent, i);
542 if (ev->event == NULL)
545 if (sinkpad == NULL || !find_event (sinkpad, ev->event)) {
546 ev->received = FALSE;
551 GST_OBJECT_FLAG_SET (srcpad, GST_PAD_FLAG_PENDING_EVENTS);
554 typedef gboolean (*PadEventFunction) (GstPad * pad, PadEvent * ev,
557 /* should be called with pad LOCK */
559 events_foreach (GstPad * pad, PadEventFunction func, gpointer user_data)
566 events = pad->priv->events;
569 cookie = pad->priv->events_cookie;
573 PadEvent *ev, ev_ret;
575 ev = &g_array_index (events, PadEvent, i);
576 if (G_UNLIKELY (ev->event == NULL))
579 /* take aditional ref, func might release the lock */
580 ev_ret.event = gst_event_ref (ev->event);
581 ev_ret.received = ev->received;
583 ret = func (pad, &ev_ret, user_data);
585 /* recheck the cookie, lock might have been released and the list could have
587 if (G_UNLIKELY (cookie != pad->priv->events_cookie)) {
588 if (G_LIKELY (ev_ret.event))
589 gst_event_unref (ev_ret.event);
593 /* store the received state */
594 ev->received = ev_ret.received;
596 /* if the event changed, we need to do something */
597 if (G_UNLIKELY (ev->event != ev_ret.event)) {
598 if (G_UNLIKELY (ev_ret.event == NULL)) {
599 /* function unreffed and set the event to NULL, remove it */
600 gst_event_unref (ev->event);
601 g_array_remove_index (events, i);
603 cookie = ++pad->priv->events_cookie;
606 /* function gave a new event for us */
607 gst_event_take (&ev->event, ev_ret.event);
610 /* just unref, nothing changed */
611 gst_event_unref (ev_ret.event);
620 /* should be called with LOCK */
622 _apply_pad_offset (GstPad * pad, GstEvent * event, gboolean upstream)
626 GST_DEBUG_OBJECT (pad, "apply pad offset %" GST_TIME_FORMAT,
627 GST_TIME_ARGS (pad->offset));
629 if (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT) {
632 g_assert (!upstream);
634 /* copy segment values */
635 gst_event_copy_segment (event, &segment);
636 gst_event_unref (event);
638 gst_segment_offset_running_time (&segment, segment.format, pad->offset);
639 event = gst_event_new_segment (&segment);
642 event = gst_event_make_writable (event);
643 offset = gst_event_get_running_time_offset (event);
645 offset -= pad->offset;
647 offset += pad->offset;
648 gst_event_set_running_time_offset (event, offset);
653 static inline GstEvent *
654 apply_pad_offset (GstPad * pad, GstEvent * event, gboolean upstream)
656 if (G_UNLIKELY (pad->offset != 0))
657 return _apply_pad_offset (pad, event, upstream);
662 /* should be called with the OBJECT_LOCK */
664 get_pad_caps (GstPad * pad)
666 GstCaps *caps = NULL;
669 ev = find_event_by_type (pad, GST_EVENT_CAPS, 0);
671 gst_event_parse_caps (ev->event, &caps);
677 gst_pad_dispose (GObject * object)
679 GstPad *pad = GST_PAD_CAST (object);
682 GST_CAT_DEBUG_OBJECT (GST_CAT_REFCOUNTING, pad, "dispose");
684 /* unlink the peer pad */
685 if ((peer = gst_pad_get_peer (pad))) {
686 /* window for MT unsafeness, someone else could unlink here
687 * and then we call unlink with wrong pads. The unlink
688 * function would catch this and safely return failed. */
689 if (GST_PAD_IS_SRC (pad))
690 gst_pad_unlink (pad, peer);
692 gst_pad_unlink (peer, pad);
694 gst_object_unref (peer);
697 gst_pad_set_pad_template (pad, NULL);
699 GST_OBJECT_LOCK (pad);
701 GST_OBJECT_UNLOCK (pad);
703 g_hook_list_clear (&pad->probes);
705 G_OBJECT_CLASS (parent_class)->dispose (object);
709 gst_pad_finalize (GObject * object)
711 GstPad *pad = GST_PAD_CAST (object);
714 /* in case the task is still around, clean it up */
715 if ((task = GST_PAD_TASK (pad))) {
716 gst_task_join (task);
717 GST_PAD_TASK (pad) = NULL;
718 gst_object_unref (task);
721 if (pad->activatenotify)
722 pad->activatenotify (pad->activatedata);
723 if (pad->activatemodenotify)
724 pad->activatemodenotify (pad->activatemodedata);
726 pad->linknotify (pad->linkdata);
727 if (pad->unlinknotify)
728 pad->unlinknotify (pad->unlinkdata);
729 if (pad->chainnotify)
730 pad->chainnotify (pad->chaindata);
731 if (pad->chainlistnotify)
732 pad->chainlistnotify (pad->chainlistdata);
733 if (pad->getrangenotify)
734 pad->getrangenotify (pad->getrangedata);
735 if (pad->eventnotify)
736 pad->eventnotify (pad->eventdata);
737 if (pad->querynotify)
738 pad->querynotify (pad->querydata);
739 if (pad->iterintlinknotify)
740 pad->iterintlinknotify (pad->iterintlinkdata);
742 g_rec_mutex_clear (&pad->stream_rec_lock);
743 g_cond_clear (&pad->block_cond);
744 g_array_free (pad->priv->events, TRUE);
746 G_OBJECT_CLASS (parent_class)->finalize (object);
750 gst_pad_set_property (GObject * object, guint prop_id,
751 const GValue * value, GParamSpec * pspec)
753 g_return_if_fail (GST_IS_PAD (object));
756 case PAD_PROP_DIRECTION:
757 GST_PAD_DIRECTION (object) = (GstPadDirection) g_value_get_enum (value);
759 case PAD_PROP_TEMPLATE:
760 gst_pad_set_pad_template (GST_PAD_CAST (object),
761 (GstPadTemplate *) g_value_get_object (value));
763 case PAD_PROP_OFFSET:
764 gst_pad_set_offset (GST_PAD_CAST (object), g_value_get_int64 (value));
767 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
773 gst_pad_get_property (GObject * object, guint prop_id,
774 GValue * value, GParamSpec * pspec)
776 g_return_if_fail (GST_IS_PAD (object));
780 GST_OBJECT_LOCK (object);
781 g_value_set_boxed (value, get_pad_caps (GST_PAD_CAST (object)));
782 GST_OBJECT_UNLOCK (object);
784 case PAD_PROP_DIRECTION:
785 g_value_set_enum (value, GST_PAD_DIRECTION (object));
787 case PAD_PROP_TEMPLATE:
788 g_value_set_object (value, GST_PAD_PAD_TEMPLATE (object));
790 case PAD_PROP_OFFSET:
791 g_value_set_int64 (value, gst_pad_get_offset (GST_PAD_CAST (object)));
794 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
801 * @name: (allow-none): the name of the new pad.
802 * @direction: the #GstPadDirection of the pad.
804 * Creates a new pad with the given name in the given direction.
805 * If name is %NULL, a guaranteed unique name (across all pads)
807 * This function makes a copy of the name so you can safely free the name.
809 * Returns: (transfer floating) (nullable): a new #GstPad, or %NULL in
815 gst_pad_new (const gchar * name, GstPadDirection direction)
817 return g_object_new (GST_TYPE_PAD,
818 "name", name, "direction", direction, NULL);
822 * gst_pad_new_from_template:
823 * @templ: the pad template to use
824 * @name: (allow-none): the name of the pad
826 * Creates a new pad with the given name from the given template.
827 * If name is %NULL, a guaranteed unique name (across all pads)
829 * This function makes a copy of the name so you can safely free the name.
831 * Returns: (transfer floating) (nullable): a new #GstPad, or %NULL in
835 gst_pad_new_from_template (GstPadTemplate * templ, const gchar * name)
837 g_return_val_if_fail (GST_IS_PAD_TEMPLATE (templ), NULL);
839 return g_object_new (GST_TYPE_PAD,
840 "name", name, "direction", templ->direction, "template", templ, NULL);
844 * gst_pad_new_from_static_template:
845 * @templ: the #GstStaticPadTemplate to use
846 * @name: the name of the pad
848 * Creates a new pad with the given name from the given static template.
849 * If name is %NULL, a guaranteed unique name (across all pads)
851 * This function makes a copy of the name so you can safely free the name.
853 * Returns: (transfer floating) (nullable): a new #GstPad, or %NULL in
857 gst_pad_new_from_static_template (GstStaticPadTemplate * templ,
861 GstPadTemplate *template;
863 template = gst_static_pad_template_get (templ);
864 pad = gst_pad_new_from_template (template, name);
865 gst_object_unref (template);
869 #define ACQUIRE_PARENT(pad, parent, label) \
871 if (G_LIKELY ((parent = GST_OBJECT_PARENT (pad)))) \
872 gst_object_ref (parent); \
873 else if (G_LIKELY (GST_PAD_NEEDS_PARENT (pad))) \
877 #define RELEASE_PARENT(parent) \
879 if (G_LIKELY (parent)) \
880 gst_object_unref (parent); \
884 * gst_pad_get_direction:
885 * @pad: a #GstPad to get the direction of.
887 * Gets the direction of the pad. The direction of the pad is
888 * decided at construction time so this function does not take
891 * Returns: the #GstPadDirection of the pad.
896 gst_pad_get_direction (GstPad * pad)
898 GstPadDirection result;
900 /* PAD_UNKNOWN is a little silly but we need some sort of
901 * error return value */
902 g_return_val_if_fail (GST_IS_PAD (pad), GST_PAD_UNKNOWN);
904 result = GST_PAD_DIRECTION (pad);
910 gst_pad_activate_default (GstPad * pad, GstObject * parent)
912 return gst_pad_activate_mode (pad, GST_PAD_MODE_PUSH, TRUE);
916 * gst_pad_mode_get_name:
917 * @mode: the pad mode
919 * Return the name of a pad mode, for use in debug messages mostly.
921 * Returns: short mnemonic for pad mode @mode
924 gst_pad_mode_get_name (GstPadMode mode)
927 case GST_PAD_MODE_NONE:
929 case GST_PAD_MODE_PUSH:
931 case GST_PAD_MODE_PULL:
940 pre_activate (GstPad * pad, GstPadMode new_mode)
943 case GST_PAD_MODE_NONE:
944 GST_OBJECT_LOCK (pad);
945 GST_DEBUG_OBJECT (pad, "setting PAD_MODE NONE, set flushing");
946 GST_PAD_SET_FLUSHING (pad);
947 pad->ABI.abi.last_flowret = GST_FLOW_FLUSHING;
948 GST_PAD_MODE (pad) = new_mode;
949 /* unlock blocked pads so element can resume and stop */
950 GST_PAD_BLOCK_BROADCAST (pad);
951 GST_OBJECT_UNLOCK (pad);
953 case GST_PAD_MODE_PUSH:
954 case GST_PAD_MODE_PULL:
955 GST_OBJECT_LOCK (pad);
956 GST_DEBUG_OBJECT (pad, "setting pad into %s mode, unset flushing",
957 gst_pad_mode_get_name (new_mode));
958 GST_PAD_UNSET_FLUSHING (pad);
959 pad->ABI.abi.last_flowret = GST_FLOW_OK;
960 GST_PAD_MODE (pad) = new_mode;
961 if (GST_PAD_IS_SINK (pad)) {
963 /* make sure the peer src pad sends us all events */
964 if ((peer = GST_PAD_PEER (pad))) {
965 gst_object_ref (peer);
966 GST_OBJECT_UNLOCK (pad);
968 GST_DEBUG_OBJECT (pad, "reschedule events on peer %s:%s",
969 GST_DEBUG_PAD_NAME (peer));
971 GST_OBJECT_LOCK (peer);
972 schedule_events (peer, NULL);
973 GST_OBJECT_UNLOCK (peer);
975 gst_object_unref (peer);
977 GST_OBJECT_UNLOCK (pad);
980 GST_OBJECT_UNLOCK (pad);
987 post_activate (GstPad * pad, GstPadMode new_mode)
990 case GST_PAD_MODE_NONE:
991 /* ensures that streaming stops */
992 GST_PAD_STREAM_LOCK (pad);
993 GST_DEBUG_OBJECT (pad, "stopped streaming");
994 GST_OBJECT_LOCK (pad);
996 GST_OBJECT_UNLOCK (pad);
997 GST_PAD_STREAM_UNLOCK (pad);
999 case GST_PAD_MODE_PUSH:
1000 case GST_PAD_MODE_PULL:
1007 * gst_pad_set_active:
1008 * @pad: the #GstPad to activate or deactivate.
1009 * @active: whether or not the pad should be active.
1011 * Activates or deactivates the given pad.
1012 * Normally called from within core state change functions.
1014 * If @active, makes sure the pad is active. If it is already active, either in
1015 * push or pull mode, just return. Otherwise dispatches to the pad's activate
1016 * function to perform the actual activation.
1018 * If not @active, calls gst_pad_activate_mode() with the pad's current mode
1019 * and a %FALSE argument.
1021 * Returns: %TRUE if the operation was successful.
1026 gst_pad_set_active (GstPad * pad, gboolean active)
1030 gboolean ret = FALSE;
1032 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1034 GST_OBJECT_LOCK (pad);
1035 old = GST_PAD_MODE (pad);
1036 ACQUIRE_PARENT (pad, parent, no_parent);
1037 GST_OBJECT_UNLOCK (pad);
1040 if (old == GST_PAD_MODE_NONE) {
1041 GST_DEBUG_OBJECT (pad, "activating pad from none");
1042 ret = (GST_PAD_ACTIVATEFUNC (pad)) (pad, parent);
1044 pad->ABI.abi.last_flowret = GST_FLOW_OK;
1046 GST_DEBUG_OBJECT (pad, "pad was active in %s mode",
1047 gst_pad_mode_get_name (old));
1051 if (old == GST_PAD_MODE_NONE) {
1052 GST_DEBUG_OBJECT (pad, "pad was inactive");
1055 GST_DEBUG_OBJECT (pad, "deactivating pad from %s mode",
1056 gst_pad_mode_get_name (old));
1057 ret = gst_pad_activate_mode (pad, old, FALSE);
1059 pad->ABI.abi.last_flowret = GST_FLOW_FLUSHING;
1063 RELEASE_PARENT (parent);
1065 if (G_UNLIKELY (!ret))
1073 GST_DEBUG_OBJECT (pad, "no parent");
1074 GST_OBJECT_UNLOCK (pad);
1079 GST_OBJECT_LOCK (pad);
1081 g_critical ("Failed to deactivate pad %s:%s, very bad",
1082 GST_DEBUG_PAD_NAME (pad));
1084 GST_WARNING_OBJECT (pad, "Failed to activate pad");
1086 GST_OBJECT_UNLOCK (pad);
1092 * gst_pad_activate_mode:
1093 * @pad: the #GstPad to activate or deactivate.
1094 * @mode: the requested activation mode
1095 * @active: whether or not the pad should be active.
1097 * Activates or deactivates the given pad in @mode via dispatching to the
1098 * pad's activatemodefunc. For use from within pad activation functions only.
1100 * If you don't know what this is, you probably don't want to call it.
1102 * Returns: %TRUE if the operation was successful.
1107 gst_pad_activate_mode (GstPad * pad, GstPadMode mode, gboolean active)
1109 gboolean res = FALSE;
1111 GstPadMode old, new;
1112 GstPadDirection dir;
1115 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1117 GST_OBJECT_LOCK (pad);
1118 old = GST_PAD_MODE (pad);
1119 dir = GST_PAD_DIRECTION (pad);
1120 ACQUIRE_PARENT (pad, parent, no_parent);
1121 GST_OBJECT_UNLOCK (pad);
1123 new = active ? mode : GST_PAD_MODE_NONE;
1128 if (active && old != mode && old != GST_PAD_MODE_NONE) {
1129 /* pad was activate in the wrong direction, deactivate it
1130 * and reactivate it in the requested mode */
1131 GST_DEBUG_OBJECT (pad, "deactivating pad from %s mode",
1132 gst_pad_mode_get_name (old));
1134 if (G_UNLIKELY (!gst_pad_activate_mode (pad, old, FALSE)))
1135 goto deactivate_failed;
1139 case GST_PAD_MODE_PULL:
1141 if (dir == GST_PAD_SINK) {
1142 if ((peer = gst_pad_get_peer (pad))) {
1143 GST_DEBUG_OBJECT (pad, "calling peer");
1144 if (G_UNLIKELY (!gst_pad_activate_mode (peer, mode, active)))
1146 gst_object_unref (peer);
1148 /* there is no peer, this is only fatal when we activate. When we
1149 * deactivate, we must assume the application has unlinked the peer and
1150 * will deactivate it eventually. */
1154 GST_DEBUG_OBJECT (pad, "deactivating unlinked pad");
1157 if (G_UNLIKELY (GST_PAD_GETRANGEFUNC (pad) == NULL))
1158 goto failure; /* Can't activate pull on a src without a
1159 getrange function */
1167 /* Mark pad as needing reconfiguration */
1169 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_NEED_RECONFIGURE);
1170 pre_activate (pad, new);
1172 if (GST_PAD_ACTIVATEMODEFUNC (pad)) {
1173 if (G_UNLIKELY (!GST_PAD_ACTIVATEMODEFUNC (pad) (pad, parent, mode,
1177 /* can happen for sinks of passthrough elements */
1180 post_activate (pad, new);
1182 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "%s in %s mode",
1183 active ? "activated" : "deactivated", gst_pad_mode_get_name (mode));
1188 /* Clear sticky flags on deactivation */
1190 GST_OBJECT_LOCK (pad);
1191 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_NEED_RECONFIGURE);
1192 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_EOS);
1193 GST_OBJECT_UNLOCK (pad);
1197 RELEASE_PARENT (parent);
1203 GST_DEBUG_OBJECT (pad, "no parent");
1204 GST_OBJECT_UNLOCK (pad);
1209 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "already %s in %s mode",
1210 active ? "activated" : "deactivated", gst_pad_mode_get_name (mode));
1215 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
1216 "failed to %s in switch to %s mode from %s mode",
1217 (active ? "activate" : "deactivate"), gst_pad_mode_get_name (mode),
1218 gst_pad_mode_get_name (old));
1223 GST_OBJECT_LOCK (peer);
1224 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
1225 "activate_mode on peer (%s:%s) failed", GST_DEBUG_PAD_NAME (peer));
1226 GST_OBJECT_UNLOCK (peer);
1227 gst_object_unref (peer);
1232 GST_CAT_INFO_OBJECT (GST_CAT_PADS, pad, "can't activate unlinked sink "
1233 "pad in pull mode");
1238 GST_OBJECT_LOCK (pad);
1239 GST_CAT_INFO_OBJECT (GST_CAT_PADS, pad, "failed to %s in %s mode",
1240 active ? "activate" : "deactivate", gst_pad_mode_get_name (mode));
1241 GST_PAD_SET_FLUSHING (pad);
1242 GST_PAD_MODE (pad) = old;
1243 GST_OBJECT_UNLOCK (pad);
1249 * gst_pad_is_active:
1250 * @pad: the #GstPad to query
1252 * Query if a pad is active
1254 * Returns: %TRUE if the pad is active.
1259 gst_pad_is_active (GstPad * pad)
1261 gboolean result = FALSE;
1263 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1265 GST_OBJECT_LOCK (pad);
1266 result = GST_PAD_IS_ACTIVE (pad);
1267 GST_OBJECT_UNLOCK (pad);
1273 cleanup_hook (GstPad * pad, GHook * hook)
1275 GstPadProbeType type;
1277 if (!G_HOOK_IS_VALID (hook))
1280 type = (hook->flags) >> G_HOOK_FLAG_USER_SHIFT;
1282 if (type & GST_PAD_PROBE_TYPE_BLOCKING) {
1283 /* unblock when we remove the last blocking probe */
1285 GST_DEBUG_OBJECT (pad, "remove blocking probe, now %d left",
1288 /* Might have new probes now that want to be called */
1289 GST_PAD_BLOCK_BROADCAST (pad);
1291 if (pad->num_blocked == 0) {
1292 GST_DEBUG_OBJECT (pad, "last blocking probe removed, unblocking");
1293 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_BLOCKED);
1296 g_hook_destroy_link (&pad->probes, hook);
1301 * gst_pad_add_probe:
1302 * @pad: the #GstPad to add the probe to
1303 * @mask: the probe mask
1304 * @callback: #GstPadProbeCallback that will be called with notifications of
1306 * @user_data: (closure): user data passed to the callback
1307 * @destroy_data: #GDestroyNotify for user_data
1309 * Be notified of different states of pads. The provided callback is called for
1310 * every state that matches @mask.
1312 * Returns: an id or 0 if no probe is pending. The id can be used to remove the
1313 * probe with gst_pad_remove_probe(). When using GST_PAD_PROBE_TYPE_IDLE it can
1314 * happen that the probe can be run immediately and if the probe returns
1315 * GST_PAD_PROBE_REMOVE this functions returns 0.
1320 gst_pad_add_probe (GstPad * pad, GstPadProbeType mask,
1321 GstPadProbeCallback callback, gpointer user_data,
1322 GDestroyNotify destroy_data)
1327 g_return_val_if_fail (GST_IS_PAD (pad), 0);
1328 g_return_val_if_fail (mask != 0, 0);
1330 GST_OBJECT_LOCK (pad);
1332 /* make a new probe */
1333 hook = g_hook_alloc (&pad->probes);
1335 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "adding probe for mask 0x%08x",
1338 /* when no contraints are given for the types, assume all types are
1340 if ((mask & GST_PAD_PROBE_TYPE_ALL_BOTH) == 0)
1341 mask |= GST_PAD_PROBE_TYPE_ALL_BOTH;
1342 if ((mask & GST_PAD_PROBE_TYPE_SCHEDULING) == 0)
1343 mask |= GST_PAD_PROBE_TYPE_SCHEDULING;
1345 /* store our flags and other fields */
1346 hook->flags |= (mask << G_HOOK_FLAG_USER_SHIFT);
1347 hook->func = callback;
1348 hook->data = user_data;
1349 hook->destroy = destroy_data;
1350 PROBE_COOKIE (hook) = (pad->priv->probe_cookie - 1);
1353 g_hook_prepend (&pad->probes, hook);
1355 /* incremenent cookie so that the new hook get's called */
1356 pad->priv->probe_list_cookie++;
1358 /* get the id of the hook, we return this and it can be used to remove the
1360 res = hook->hook_id;
1362 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "got probe id %lu", res);
1364 if (mask & GST_PAD_PROBE_TYPE_BLOCKING) {
1365 /* we have a block probe */
1367 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_BLOCKED);
1368 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "added blocking probe, "
1369 "now %d blocking probes", pad->num_blocked);
1371 /* Might have new probes now that want to be called */
1372 GST_PAD_BLOCK_BROADCAST (pad);
1375 /* call the callback if we need to be called for idle callbacks */
1376 if ((mask & GST_PAD_PROBE_TYPE_IDLE) && (callback != NULL)) {
1377 if (pad->priv->using > 0) {
1378 /* the pad is in use, we can't signal the idle callback yet. Since we set the
1379 * flag above, the last thread to leave the push will do the callback. New
1380 * threads going into the push will block. */
1381 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
1382 "pad is in use, delay idle callback");
1383 GST_OBJECT_UNLOCK (pad);
1385 GstPadProbeInfo info = { GST_PAD_PROBE_TYPE_IDLE, res, };
1386 GstPadProbeReturn ret;
1388 /* Keep another ref, the callback could destroy the pad */
1389 gst_object_ref (pad);
1391 /* the pad is idle now, we can signal the idle callback now */
1392 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
1393 "pad is idle, trigger idle callback");
1394 GST_OBJECT_UNLOCK (pad);
1396 ret = callback (pad, &info, user_data);
1398 GST_OBJECT_LOCK (pad);
1400 case GST_PAD_PROBE_REMOVE:
1401 /* remove the probe */
1402 GST_DEBUG_OBJECT (pad, "asked to remove hook");
1403 cleanup_hook (pad, hook);
1406 case GST_PAD_PROBE_DROP:
1407 GST_DEBUG_OBJECT (pad, "asked to drop item");
1409 case GST_PAD_PROBE_PASS:
1410 GST_DEBUG_OBJECT (pad, "asked to pass item");
1412 case GST_PAD_PROBE_OK:
1413 GST_DEBUG_OBJECT (pad, "probe returned OK");
1416 GST_DEBUG_OBJECT (pad, "probe returned %d", ret);
1419 GST_OBJECT_UNLOCK (pad);
1421 gst_object_unref (pad);
1424 GST_OBJECT_UNLOCK (pad);
1430 * gst_pad_remove_probe:
1431 * @pad: the #GstPad with the probe
1432 * @id: the probe id to remove
1434 * Remove the probe with @id from @pad.
1439 gst_pad_remove_probe (GstPad * pad, gulong id)
1443 g_return_if_fail (GST_IS_PAD (pad));
1445 GST_OBJECT_LOCK (pad);
1447 hook = g_hook_get (&pad->probes, id);
1451 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "removing hook %ld",
1453 cleanup_hook (pad, hook);
1454 GST_OBJECT_UNLOCK (pad);
1460 GST_OBJECT_UNLOCK (pad);
1461 g_warning ("%s: pad `%p' has no probe with id `%lu'", G_STRLOC, pad, id);
1467 * gst_pad_is_blocked:
1468 * @pad: the #GstPad to query
1470 * Checks if the pad is blocked or not. This function returns the
1471 * last requested state of the pad. It is not certain that the pad
1472 * is actually blocking at this point (see gst_pad_is_blocking()).
1474 * Returns: %TRUE if the pad is blocked.
1479 gst_pad_is_blocked (GstPad * pad)
1481 gboolean result = FALSE;
1483 g_return_val_if_fail (GST_IS_PAD (pad), result);
1485 GST_OBJECT_LOCK (pad);
1486 result = GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_BLOCKED);
1487 GST_OBJECT_UNLOCK (pad);
1493 * gst_pad_is_blocking:
1494 * @pad: the #GstPad to query
1496 * Checks if the pad is blocking or not. This is a guaranteed state
1497 * of whether the pad is actually blocking on a #GstBuffer or a #GstEvent.
1499 * Returns: %TRUE if the pad is blocking.
1504 gst_pad_is_blocking (GstPad * pad)
1506 gboolean result = FALSE;
1508 g_return_val_if_fail (GST_IS_PAD (pad), result);
1510 GST_OBJECT_LOCK (pad);
1511 /* the blocking flag is only valid if the pad is not flushing */
1512 result = GST_PAD_IS_BLOCKING (pad) && !GST_PAD_IS_FLUSHING (pad);
1513 GST_OBJECT_UNLOCK (pad);
1519 * gst_pad_needs_reconfigure:
1520 * @pad: the #GstPad to check
1522 * Check the #GST_PAD_FLAG_NEED_RECONFIGURE flag on @pad and return %TRUE
1523 * if the flag was set.
1525 * Returns: %TRUE is the GST_PAD_FLAG_NEED_RECONFIGURE flag is set on @pad.
1528 gst_pad_needs_reconfigure (GstPad * pad)
1530 gboolean reconfigure;
1532 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1534 GST_OBJECT_LOCK (pad);
1535 reconfigure = GST_PAD_NEEDS_RECONFIGURE (pad);
1536 GST_DEBUG_OBJECT (pad, "peeking RECONFIGURE flag %d", reconfigure);
1537 GST_OBJECT_UNLOCK (pad);
1543 * gst_pad_check_reconfigure:
1544 * @pad: the #GstPad to check
1546 * Check and clear the #GST_PAD_FLAG_NEED_RECONFIGURE flag on @pad and return %TRUE
1547 * if the flag was set.
1549 * Returns: %TRUE is the GST_PAD_FLAG_NEED_RECONFIGURE flag was set on @pad.
1552 gst_pad_check_reconfigure (GstPad * pad)
1554 gboolean reconfigure;
1556 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1558 GST_OBJECT_LOCK (pad);
1559 reconfigure = GST_PAD_NEEDS_RECONFIGURE (pad);
1561 GST_DEBUG_OBJECT (pad, "remove RECONFIGURE flag");
1562 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_NEED_RECONFIGURE);
1564 GST_OBJECT_UNLOCK (pad);
1570 * gst_pad_mark_reconfigure:
1571 * @pad: the #GstPad to mark
1573 * Mark a pad for needing reconfiguration. The next call to
1574 * gst_pad_check_reconfigure() will return %TRUE after this call.
1577 gst_pad_mark_reconfigure (GstPad * pad)
1579 g_return_if_fail (GST_IS_PAD (pad));
1581 GST_OBJECT_LOCK (pad);
1582 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_NEED_RECONFIGURE);
1583 GST_OBJECT_UNLOCK (pad);
1587 * gst_pad_set_activate_function:
1589 * @f: the #GstPadActivateFunction to set.
1591 * Calls gst_pad_set_activate_function_full() with %NULL for the user_data and
1595 * gst_pad_set_activate_function_full:
1597 * @activate: the #GstPadActivateFunction to set.
1598 * @user_data: user_data passed to @notify
1599 * @notify: notify called when @activate will not be used anymore.
1601 * Sets the given activate function for @pad. The activate function will
1602 * dispatch to gst_pad_activate_mode() to perform the actual activation.
1603 * Only makes sense to set on sink pads.
1605 * Call this function if your sink pad can start a pull-based task.
1608 gst_pad_set_activate_function_full (GstPad * pad,
1609 GstPadActivateFunction activate, gpointer user_data, GDestroyNotify notify)
1611 g_return_if_fail (GST_IS_PAD (pad));
1613 if (pad->activatenotify)
1614 pad->activatenotify (pad->activatedata);
1615 GST_PAD_ACTIVATEFUNC (pad) = activate;
1616 pad->activatedata = user_data;
1617 pad->activatenotify = notify;
1619 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "activatefunc set to %s",
1620 GST_DEBUG_FUNCPTR_NAME (activate));
1624 * gst_pad_set_activatemode_function:
1626 * @f: the #GstPadActivateModeFunction to set.
1628 * Calls gst_pad_set_activatemode_function_full() with %NULL for the user_data and
1632 * gst_pad_set_activatemode_function_full:
1634 * @activatemode: the #GstPadActivateModeFunction to set.
1635 * @user_data: user_data passed to @notify
1636 * @notify: notify called when @activatemode will not be used anymore.
1638 * Sets the given activate_mode function for the pad. An activate_mode function
1639 * prepares the element for data passing.
1642 gst_pad_set_activatemode_function_full (GstPad * pad,
1643 GstPadActivateModeFunction activatemode, gpointer user_data,
1644 GDestroyNotify notify)
1646 g_return_if_fail (GST_IS_PAD (pad));
1648 if (pad->activatemodenotify)
1649 pad->activatemodenotify (pad->activatemodedata);
1650 GST_PAD_ACTIVATEMODEFUNC (pad) = activatemode;
1651 pad->activatemodedata = user_data;
1652 pad->activatemodenotify = notify;
1654 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "activatemodefunc set to %s",
1655 GST_DEBUG_FUNCPTR_NAME (activatemode));
1659 * gst_pad_set_chain_function:
1660 * @p: a sink #GstPad.
1661 * @f: the #GstPadChainFunction to set.
1663 * Calls gst_pad_set_chain_function_full() with %NULL for the user_data and
1667 * gst_pad_set_chain_function_full:
1668 * @pad: a sink #GstPad.
1669 * @chain: the #GstPadChainFunction to set.
1670 * @user_data: user_data passed to @notify
1671 * @notify: notify called when @chain will not be used anymore.
1673 * Sets the given chain function for the pad. The chain function is called to
1674 * process a #GstBuffer input buffer. see #GstPadChainFunction for more details.
1677 gst_pad_set_chain_function_full (GstPad * pad, GstPadChainFunction chain,
1678 gpointer user_data, GDestroyNotify notify)
1680 g_return_if_fail (GST_IS_PAD (pad));
1681 g_return_if_fail (GST_PAD_IS_SINK (pad));
1683 if (pad->chainnotify)
1684 pad->chainnotify (pad->chaindata);
1685 GST_PAD_CHAINFUNC (pad) = chain;
1686 pad->chaindata = user_data;
1687 pad->chainnotify = notify;
1689 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "chainfunc set to %s",
1690 GST_DEBUG_FUNCPTR_NAME (chain));
1694 * gst_pad_set_chain_list_function:
1695 * @p: a sink #GstPad.
1696 * @f: the #GstPadChainListFunction to set.
1698 * Calls gst_pad_set_chain_list_function_full() with %NULL for the user_data and
1702 * gst_pad_set_chain_list_function_full:
1703 * @pad: a sink #GstPad.
1704 * @chainlist: the #GstPadChainListFunction to set.
1705 * @user_data: user_data passed to @notify
1706 * @notify: notify called when @chainlist will not be used anymore.
1708 * Sets the given chain list function for the pad. The chainlist function is
1709 * called to process a #GstBufferList input buffer list. See
1710 * #GstPadChainListFunction for more details.
1713 gst_pad_set_chain_list_function_full (GstPad * pad,
1714 GstPadChainListFunction chainlist, gpointer user_data,
1715 GDestroyNotify notify)
1717 g_return_if_fail (GST_IS_PAD (pad));
1718 g_return_if_fail (GST_PAD_IS_SINK (pad));
1720 if (pad->chainlistnotify)
1721 pad->chainlistnotify (pad->chainlistdata);
1722 GST_PAD_CHAINLISTFUNC (pad) = chainlist;
1723 pad->chainlistdata = user_data;
1724 pad->chainlistnotify = notify;
1726 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "chainlistfunc set to %s",
1727 GST_DEBUG_FUNCPTR_NAME (chainlist));
1731 * gst_pad_set_getrange_function:
1732 * @p: a source #GstPad.
1733 * @f: the #GstPadGetRangeFunction to set.
1735 * Calls gst_pad_set_getrange_function_full() with %NULL for the user_data and
1739 * gst_pad_set_getrange_function_full:
1740 * @pad: a source #GstPad.
1741 * @get: the #GstPadGetRangeFunction to set.
1742 * @user_data: user_data passed to @notify
1743 * @notify: notify called when @get will not be used anymore.
1745 * Sets the given getrange function for the pad. The getrange function is
1746 * called to produce a new #GstBuffer to start the processing pipeline. see
1747 * #GstPadGetRangeFunction for a description of the getrange function.
1750 gst_pad_set_getrange_function_full (GstPad * pad, GstPadGetRangeFunction get,
1751 gpointer user_data, GDestroyNotify notify)
1753 g_return_if_fail (GST_IS_PAD (pad));
1754 g_return_if_fail (GST_PAD_IS_SRC (pad));
1756 if (pad->getrangenotify)
1757 pad->getrangenotify (pad->getrangedata);
1758 GST_PAD_GETRANGEFUNC (pad) = get;
1759 pad->getrangedata = user_data;
1760 pad->getrangenotify = notify;
1762 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "getrangefunc set to %s",
1763 GST_DEBUG_FUNCPTR_NAME (get));
1767 * gst_pad_set_event_function:
1768 * @p: a #GstPad of either direction.
1769 * @f: the #GstPadEventFunction to set.
1771 * Calls gst_pad_set_event_function_full() with %NULL for the user_data and
1775 * gst_pad_set_event_function_full:
1776 * @pad: a #GstPad of either direction.
1777 * @event: the #GstPadEventFunction to set.
1778 * @user_data: user_data passed to @notify
1779 * @notify: notify called when @event will not be used anymore.
1781 * Sets the given event handler for the pad.
1784 gst_pad_set_event_function_full (GstPad * pad, GstPadEventFunction event,
1785 gpointer user_data, GDestroyNotify notify)
1787 g_return_if_fail (GST_IS_PAD (pad));
1789 if (pad->eventnotify)
1790 pad->eventnotify (pad->eventdata);
1791 GST_PAD_EVENTFUNC (pad) = event;
1792 pad->eventdata = user_data;
1793 pad->eventnotify = notify;
1795 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "eventfunc for set to %s",
1796 GST_DEBUG_FUNCPTR_NAME (event));
1800 * gst_pad_set_query_function:
1801 * @p: a #GstPad of either direction.
1802 * @f: the #GstPadQueryFunction to set.
1804 * Calls gst_pad_set_query_function_full() with %NULL for the user_data and
1808 * gst_pad_set_query_function_full:
1809 * @pad: a #GstPad of either direction.
1810 * @query: the #GstPadQueryFunction to set.
1811 * @user_data: user_data passed to @notify
1812 * @notify: notify called when @query will not be used anymore.
1814 * Set the given query function for the pad.
1817 gst_pad_set_query_function_full (GstPad * pad, GstPadQueryFunction query,
1818 gpointer user_data, GDestroyNotify notify)
1820 g_return_if_fail (GST_IS_PAD (pad));
1822 if (pad->querynotify)
1823 pad->querynotify (pad->querydata);
1824 GST_PAD_QUERYFUNC (pad) = query;
1825 pad->querydata = user_data;
1826 pad->querynotify = notify;
1828 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "queryfunc set to %s",
1829 GST_DEBUG_FUNCPTR_NAME (query));
1833 * gst_pad_set_iterate_internal_links_function:
1834 * @p: a #GstPad of either direction.
1835 * @f: the #GstPadIterIntLinkFunction to set.
1837 * Calls gst_pad_set_iterate_internal_links_function_full() with %NULL
1838 * for the user_data and notify.
1841 * gst_pad_set_iterate_internal_links_function_full:
1842 * @pad: a #GstPad of either direction.
1843 * @iterintlink: the #GstPadIterIntLinkFunction to set.
1844 * @user_data: user_data passed to @notify
1845 * @notify: notify called when @iterintlink will not be used anymore.
1847 * Sets the given internal link iterator function for the pad.
1850 gst_pad_set_iterate_internal_links_function_full (GstPad * pad,
1851 GstPadIterIntLinkFunction iterintlink, gpointer user_data,
1852 GDestroyNotify notify)
1854 g_return_if_fail (GST_IS_PAD (pad));
1856 if (pad->iterintlinknotify)
1857 pad->iterintlinknotify (pad->iterintlinkdata);
1858 GST_PAD_ITERINTLINKFUNC (pad) = iterintlink;
1859 pad->iterintlinkdata = user_data;
1860 pad->iterintlinknotify = notify;
1862 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "internal link iterator set to %s",
1863 GST_DEBUG_FUNCPTR_NAME (iterintlink));
1867 * gst_pad_set_link_function:
1869 * @f: the #GstPadLinkFunction to set.
1871 * Calls gst_pad_set_link_function_full() with %NULL
1872 * for the user_data and notify.
1875 * gst_pad_set_link_function_full:
1877 * @link: the #GstPadLinkFunction to set.
1878 * @user_data: user_data passed to @notify
1879 * @notify: notify called when @link will not be used anymore.
1881 * Sets the given link function for the pad. It will be called when
1882 * the pad is linked with another pad.
1884 * The return value #GST_PAD_LINK_OK should be used when the connection can be
1887 * The return value #GST_PAD_LINK_REFUSED should be used when the connection
1888 * cannot be made for some reason.
1890 * If @link is installed on a source pad, it should call the #GstPadLinkFunction
1891 * of the peer sink pad, if present.
1894 gst_pad_set_link_function_full (GstPad * pad, GstPadLinkFunction link,
1895 gpointer user_data, GDestroyNotify notify)
1897 g_return_if_fail (GST_IS_PAD (pad));
1899 if (pad->linknotify)
1900 pad->linknotify (pad->linkdata);
1901 GST_PAD_LINKFUNC (pad) = link;
1902 pad->linkdata = user_data;
1903 pad->linknotify = notify;
1905 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "linkfunc set to %s",
1906 GST_DEBUG_FUNCPTR_NAME (link));
1910 * gst_pad_set_unlink_function:
1912 * @f: the #GstPadUnlinkFunction to set.
1914 * Calls gst_pad_set_unlink_function_full() with %NULL
1915 * for the user_data and notify.
1918 * gst_pad_set_unlink_function_full:
1920 * @unlink: the #GstPadUnlinkFunction to set.
1921 * @user_data: user_data passed to @notify
1922 * @notify: notify called when @unlink will not be used anymore.
1924 * Sets the given unlink function for the pad. It will be called
1925 * when the pad is unlinked.
1928 gst_pad_set_unlink_function_full (GstPad * pad, GstPadUnlinkFunction unlink,
1929 gpointer user_data, GDestroyNotify notify)
1931 g_return_if_fail (GST_IS_PAD (pad));
1933 if (pad->unlinknotify)
1934 pad->unlinknotify (pad->unlinkdata);
1935 GST_PAD_UNLINKFUNC (pad) = unlink;
1936 pad->unlinkdata = user_data;
1937 pad->unlinknotify = notify;
1939 GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "unlinkfunc set to %s",
1940 GST_DEBUG_FUNCPTR_NAME (unlink));
1945 * @srcpad: the source #GstPad to unlink.
1946 * @sinkpad: the sink #GstPad to unlink.
1948 * Unlinks the source pad from the sink pad. Will emit the #GstPad::unlinked
1949 * signal on both pads.
1951 * Returns: %TRUE if the pads were unlinked. This function returns %FALSE if
1952 * the pads were not linked together.
1957 gst_pad_unlink (GstPad * srcpad, GstPad * sinkpad)
1959 gboolean result = FALSE;
1960 GstElement *parent = NULL;
1962 g_return_val_if_fail (GST_IS_PAD (srcpad), FALSE);
1963 g_return_val_if_fail (GST_PAD_IS_SRC (srcpad), FALSE);
1964 g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
1965 g_return_val_if_fail (GST_PAD_IS_SINK (sinkpad), FALSE);
1967 GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "unlinking %s:%s(%p) and %s:%s(%p)",
1968 GST_DEBUG_PAD_NAME (srcpad), srcpad,
1969 GST_DEBUG_PAD_NAME (sinkpad), sinkpad);
1971 /* We need to notify the parent before taking any pad locks as the bin in
1972 * question might be waiting for a lock on the pad while holding its lock
1973 * that our message will try to take. */
1974 if ((parent = GST_ELEMENT_CAST (gst_pad_get_parent (srcpad)))) {
1975 if (GST_IS_ELEMENT (parent)) {
1976 gst_element_post_message (parent,
1977 gst_message_new_structure_change (GST_OBJECT_CAST (sinkpad),
1978 GST_STRUCTURE_CHANGE_TYPE_PAD_UNLINK, parent, TRUE));
1980 gst_object_unref (parent);
1985 GST_OBJECT_LOCK (srcpad);
1986 GST_OBJECT_LOCK (sinkpad);
1988 if (G_UNLIKELY (GST_PAD_PEER (srcpad) != sinkpad))
1989 goto not_linked_together;
1991 if (GST_PAD_UNLINKFUNC (srcpad)) {
1992 GstObject *tmpparent;
1994 ACQUIRE_PARENT (srcpad, tmpparent, no_src_parent);
1996 GST_PAD_UNLINKFUNC (srcpad) (srcpad, tmpparent);
1997 RELEASE_PARENT (tmpparent);
2000 if (GST_PAD_UNLINKFUNC (sinkpad)) {
2001 GstObject *tmpparent;
2003 ACQUIRE_PARENT (sinkpad, tmpparent, no_sink_parent);
2005 GST_PAD_UNLINKFUNC (sinkpad) (sinkpad, tmpparent);
2006 RELEASE_PARENT (tmpparent);
2010 /* first clear peers */
2011 GST_PAD_PEER (srcpad) = NULL;
2012 GST_PAD_PEER (sinkpad) = NULL;
2014 GST_OBJECT_UNLOCK (sinkpad);
2015 GST_OBJECT_UNLOCK (srcpad);
2017 /* fire off a signal to each of the pads telling them
2018 * that they've been unlinked */
2019 g_signal_emit (srcpad, gst_pad_signals[PAD_UNLINKED], 0, sinkpad);
2020 g_signal_emit (sinkpad, gst_pad_signals[PAD_UNLINKED], 0, srcpad);
2022 GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "unlinked %s:%s and %s:%s",
2023 GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
2028 if (parent != NULL) {
2029 gst_element_post_message (parent,
2030 gst_message_new_structure_change (GST_OBJECT_CAST (sinkpad),
2031 GST_STRUCTURE_CHANGE_TYPE_PAD_UNLINK, parent, FALSE));
2032 gst_object_unref (parent);
2037 not_linked_together:
2039 /* we do not emit a warning in this case because unlinking cannot
2040 * be made MT safe.*/
2041 GST_OBJECT_UNLOCK (sinkpad);
2042 GST_OBJECT_UNLOCK (srcpad);
2048 * gst_pad_is_linked:
2049 * @pad: pad to check
2051 * Checks if a @pad is linked to another pad or not.
2053 * Returns: %TRUE if the pad is linked, %FALSE otherwise.
2058 gst_pad_is_linked (GstPad * pad)
2062 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2064 GST_OBJECT_LOCK (pad);
2065 result = (GST_PAD_PEER (pad) != NULL);
2066 GST_OBJECT_UNLOCK (pad);
2071 /* get the caps from both pads and see if the intersection
2074 * This function should be called with the pad LOCK on both
2078 gst_pad_link_check_compatible_unlocked (GstPad * src, GstPad * sink,
2079 GstPadLinkCheck flags)
2081 GstCaps *srccaps = NULL;
2082 GstCaps *sinkcaps = NULL;
2083 gboolean compatible = FALSE;
2085 if (!(flags & (GST_PAD_LINK_CHECK_CAPS | GST_PAD_LINK_CHECK_TEMPLATE_CAPS)))
2088 /* Doing the expensive caps checking takes priority over only checking the template caps */
2089 if (flags & GST_PAD_LINK_CHECK_CAPS) {
2090 GST_OBJECT_UNLOCK (sink);
2091 GST_OBJECT_UNLOCK (src);
2093 srccaps = gst_pad_query_caps (src, NULL);
2094 sinkcaps = gst_pad_query_caps (sink, NULL);
2096 GST_OBJECT_LOCK (src);
2097 GST_OBJECT_LOCK (sink);
2099 /* If one of the two pads doesn't have a template, consider the intersection
2101 if (G_UNLIKELY ((GST_PAD_PAD_TEMPLATE (src) == NULL)
2102 || (GST_PAD_PAD_TEMPLATE (sink) == NULL))) {
2106 srccaps = gst_caps_ref (GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (src)));
2108 gst_caps_ref (GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (sink)));
2111 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, src, "src caps %" GST_PTR_FORMAT,
2113 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, sink, "sink caps %" GST_PTR_FORMAT,
2116 /* if we have caps on both pads we can check the intersection. If one
2117 * of the caps is %NULL, we return %TRUE. */
2118 if (G_UNLIKELY (srccaps == NULL || sinkcaps == NULL)) {
2120 gst_caps_unref (srccaps);
2122 gst_caps_unref (sinkcaps);
2126 compatible = gst_caps_can_intersect (srccaps, sinkcaps);
2127 gst_caps_unref (srccaps);
2128 gst_caps_unref (sinkcaps);
2131 GST_CAT_DEBUG (GST_CAT_CAPS, "caps are %scompatible",
2132 (compatible ? "" : "not "));
2137 /* check if the grandparents of both pads are the same.
2138 * This check is required so that we don't try to link
2139 * pads from elements in different bins without ghostpads.
2141 * The LOCK should be held on both pads
2144 gst_pad_link_check_hierarchy (GstPad * src, GstPad * sink)
2146 GstObject *psrc, *psink;
2148 psrc = GST_OBJECT_PARENT (src);
2149 psink = GST_OBJECT_PARENT (sink);
2151 /* if one of the pads has no parent, we allow the link */
2152 if (G_UNLIKELY (psrc == NULL || psink == NULL))
2155 /* only care about parents that are elements */
2156 if (G_UNLIKELY (!GST_IS_ELEMENT (psrc) || !GST_IS_ELEMENT (psink)))
2157 goto no_element_parent;
2159 /* if the parents are the same, we have a loop */
2160 if (G_UNLIKELY (psrc == psink))
2163 /* if they both have a parent, we check the grandparents. We can not lock
2164 * the parent because we hold on the child (pad) and the locking order is
2165 * parent >> child. */
2166 psrc = GST_OBJECT_PARENT (psrc);
2167 psink = GST_OBJECT_PARENT (psink);
2169 /* if they have grandparents but they are not the same */
2170 if (G_UNLIKELY (psrc != psink))
2171 goto wrong_grandparents;
2178 GST_CAT_DEBUG (GST_CAT_CAPS,
2179 "one of the pads has no parent %" GST_PTR_FORMAT " and %"
2180 GST_PTR_FORMAT, psrc, psink);
2185 GST_CAT_DEBUG (GST_CAT_CAPS,
2186 "one of the pads has no element parent %" GST_PTR_FORMAT " and %"
2187 GST_PTR_FORMAT, psrc, psink);
2192 GST_CAT_DEBUG (GST_CAT_CAPS, "pads have same parent %" GST_PTR_FORMAT,
2198 GST_CAT_DEBUG (GST_CAT_CAPS,
2199 "pads have different grandparents %" GST_PTR_FORMAT " and %"
2200 GST_PTR_FORMAT, psrc, psink);
2205 /* FIXME leftover from an attempt at refactoring... */
2206 /* call with the two pads unlocked, when this function returns GST_PAD_LINK_OK,
2207 * the two pads will be locked in the srcpad, sinkpad order. */
2208 static GstPadLinkReturn
2209 gst_pad_link_prepare (GstPad * srcpad, GstPad * sinkpad, GstPadLinkCheck flags)
2211 GST_CAT_INFO (GST_CAT_PADS, "trying to link %s:%s and %s:%s",
2212 GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
2214 GST_OBJECT_LOCK (srcpad);
2216 if (G_UNLIKELY (GST_PAD_PEER (srcpad) != NULL))
2217 goto src_was_linked;
2219 GST_OBJECT_LOCK (sinkpad);
2221 if (G_UNLIKELY (GST_PAD_PEER (sinkpad) != NULL))
2222 goto sink_was_linked;
2224 /* check hierarchy, pads can only be linked if the grandparents
2226 if ((flags & GST_PAD_LINK_CHECK_HIERARCHY)
2227 && !gst_pad_link_check_hierarchy (srcpad, sinkpad))
2228 goto wrong_hierarchy;
2230 /* check pad caps for non-empty intersection */
2231 if (!gst_pad_link_check_compatible_unlocked (srcpad, sinkpad, flags))
2234 /* FIXME check pad scheduling for non-empty intersection */
2236 return GST_PAD_LINK_OK;
2240 GST_CAT_INFO (GST_CAT_PADS, "src %s:%s was already linked to %s:%s",
2241 GST_DEBUG_PAD_NAME (srcpad),
2242 GST_DEBUG_PAD_NAME (GST_PAD_PEER (srcpad)));
2243 /* we do not emit a warning in this case because unlinking cannot
2244 * be made MT safe.*/
2245 GST_OBJECT_UNLOCK (srcpad);
2246 return GST_PAD_LINK_WAS_LINKED;
2250 GST_CAT_INFO (GST_CAT_PADS, "sink %s:%s was already linked to %s:%s",
2251 GST_DEBUG_PAD_NAME (sinkpad),
2252 GST_DEBUG_PAD_NAME (GST_PAD_PEER (sinkpad)));
2253 /* we do not emit a warning in this case because unlinking cannot
2254 * be made MT safe.*/
2255 GST_OBJECT_UNLOCK (sinkpad);
2256 GST_OBJECT_UNLOCK (srcpad);
2257 return GST_PAD_LINK_WAS_LINKED;
2261 GST_CAT_INFO (GST_CAT_PADS, "pads have wrong hierarchy");
2262 GST_OBJECT_UNLOCK (sinkpad);
2263 GST_OBJECT_UNLOCK (srcpad);
2264 return GST_PAD_LINK_WRONG_HIERARCHY;
2268 GST_CAT_INFO (GST_CAT_PADS, "caps are incompatible");
2269 GST_OBJECT_UNLOCK (sinkpad);
2270 GST_OBJECT_UNLOCK (srcpad);
2271 return GST_PAD_LINK_NOFORMAT;
2277 * @srcpad: the source #GstPad.
2278 * @sinkpad: the sink #GstPad.
2280 * Checks if the source pad and the sink pad are compatible so they can be
2283 * Returns: %TRUE if the pads can be linked.
2286 gst_pad_can_link (GstPad * srcpad, GstPad * sinkpad)
2288 GstPadLinkReturn result;
2290 /* generic checks */
2291 g_return_val_if_fail (GST_IS_PAD (srcpad), FALSE);
2292 g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
2294 GST_CAT_INFO (GST_CAT_PADS, "check if %s:%s can link with %s:%s",
2295 GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
2297 /* gst_pad_link_prepare does everything for us, we only release the locks
2298 * on the pads that it gets us. If this function returns !OK the locks are not
2300 result = gst_pad_link_prepare (srcpad, sinkpad, GST_PAD_LINK_CHECK_DEFAULT);
2301 if (result != GST_PAD_LINK_OK)
2304 GST_OBJECT_UNLOCK (srcpad);
2305 GST_OBJECT_UNLOCK (sinkpad);
2308 return result == GST_PAD_LINK_OK;
2312 * gst_pad_link_full:
2313 * @srcpad: the source #GstPad to link.
2314 * @sinkpad: the sink #GstPad to link.
2315 * @flags: the checks to validate when linking
2317 * Links the source pad and the sink pad.
2319 * This variant of #gst_pad_link provides a more granular control on the
2320 * checks being done when linking. While providing some considerable speedups
2321 * the caller of this method must be aware that wrong usage of those flags
2322 * can cause severe issues. Refer to the documentation of #GstPadLinkCheck
2323 * for more information.
2327 * Returns: A result code indicating if the connection worked or
2331 gst_pad_link_full (GstPad * srcpad, GstPad * sinkpad, GstPadLinkCheck flags)
2333 GstPadLinkReturn result;
2335 GstPadLinkFunction srcfunc, sinkfunc;
2337 g_return_val_if_fail (GST_IS_PAD (srcpad), GST_PAD_LINK_REFUSED);
2338 g_return_val_if_fail (GST_PAD_IS_SRC (srcpad), GST_PAD_LINK_WRONG_DIRECTION);
2339 g_return_val_if_fail (GST_IS_PAD (sinkpad), GST_PAD_LINK_REFUSED);
2340 g_return_val_if_fail (GST_PAD_IS_SINK (sinkpad),
2341 GST_PAD_LINK_WRONG_DIRECTION);
2343 /* Notify the parent early. See gst_pad_unlink for details. */
2344 if (G_LIKELY ((parent = GST_ELEMENT_CAST (gst_pad_get_parent (srcpad))))) {
2345 if (G_LIKELY (GST_IS_ELEMENT (parent))) {
2346 gst_element_post_message (parent,
2347 gst_message_new_structure_change (GST_OBJECT_CAST (sinkpad),
2348 GST_STRUCTURE_CHANGE_TYPE_PAD_LINK, parent, TRUE));
2350 gst_object_unref (parent);
2355 /* prepare will also lock the two pads */
2356 result = gst_pad_link_prepare (srcpad, sinkpad, flags);
2358 if (G_UNLIKELY (result != GST_PAD_LINK_OK))
2361 /* must set peers before calling the link function */
2362 GST_PAD_PEER (srcpad) = sinkpad;
2363 GST_PAD_PEER (sinkpad) = srcpad;
2365 /* check events, when something is different, mark pending */
2366 schedule_events (srcpad, sinkpad);
2368 /* get the link functions */
2369 srcfunc = GST_PAD_LINKFUNC (srcpad);
2370 sinkfunc = GST_PAD_LINKFUNC (sinkpad);
2372 if (G_UNLIKELY (srcfunc || sinkfunc)) {
2373 /* custom link functions, execute them */
2374 GST_OBJECT_UNLOCK (sinkpad);
2375 GST_OBJECT_UNLOCK (srcpad);
2378 GstObject *tmpparent;
2380 ACQUIRE_PARENT (srcpad, tmpparent, no_parent);
2381 /* this one will call the peer link function */
2382 result = srcfunc (srcpad, tmpparent, sinkpad);
2383 RELEASE_PARENT (tmpparent);
2384 } else if (sinkfunc) {
2385 GstObject *tmpparent;
2387 ACQUIRE_PARENT (sinkpad, tmpparent, no_parent);
2388 /* if no source link function, we need to call the sink link
2389 * function ourselves. */
2390 result = sinkfunc (sinkpad, tmpparent, srcpad);
2391 RELEASE_PARENT (tmpparent);
2395 GST_OBJECT_LOCK (srcpad);
2396 GST_OBJECT_LOCK (sinkpad);
2398 /* we released the lock, check if the same pads are linked still */
2399 if (GST_PAD_PEER (srcpad) != sinkpad || GST_PAD_PEER (sinkpad) != srcpad)
2400 goto concurrent_link;
2402 if (G_UNLIKELY (result != GST_PAD_LINK_OK))
2405 GST_OBJECT_UNLOCK (sinkpad);
2406 GST_OBJECT_UNLOCK (srcpad);
2408 /* fire off a signal to each of the pads telling them
2409 * that they've been linked */
2410 g_signal_emit (srcpad, gst_pad_signals[PAD_LINKED], 0, sinkpad);
2411 g_signal_emit (sinkpad, gst_pad_signals[PAD_LINKED], 0, srcpad);
2413 GST_CAT_INFO (GST_CAT_PADS, "linked %s:%s and %s:%s, successful",
2414 GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
2416 gst_pad_send_event (srcpad, gst_event_new_reconfigure ());
2419 if (G_LIKELY (parent)) {
2420 gst_element_post_message (parent,
2421 gst_message_new_structure_change (GST_OBJECT_CAST (sinkpad),
2422 GST_STRUCTURE_CHANGE_TYPE_PAD_LINK, parent, FALSE));
2423 gst_object_unref (parent);
2431 GST_CAT_INFO (GST_CAT_PADS, "concurrent link between %s:%s and %s:%s",
2432 GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
2433 GST_OBJECT_UNLOCK (sinkpad);
2434 GST_OBJECT_UNLOCK (srcpad);
2436 /* The other link operation succeeded first */
2437 result = GST_PAD_LINK_WAS_LINKED;
2442 GST_CAT_INFO (GST_CAT_PADS, "link between %s:%s and %s:%s failed: %s",
2443 GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad),
2444 gst_pad_link_get_name (result));
2446 GST_PAD_PEER (srcpad) = NULL;
2447 GST_PAD_PEER (sinkpad) = NULL;
2449 GST_OBJECT_UNLOCK (sinkpad);
2450 GST_OBJECT_UNLOCK (srcpad);
2458 * @srcpad: the source #GstPad to link.
2459 * @sinkpad: the sink #GstPad to link.
2461 * Links the source pad and the sink pad.
2463 * Returns: A result code indicating if the connection worked or
2469 gst_pad_link (GstPad * srcpad, GstPad * sinkpad)
2471 return gst_pad_link_full (srcpad, sinkpad, GST_PAD_LINK_CHECK_DEFAULT);
2475 gst_pad_set_pad_template (GstPad * pad, GstPadTemplate * templ)
2477 GstPadTemplate **template_p;
2479 /* this function would need checks if it weren't static */
2481 GST_OBJECT_LOCK (pad);
2482 template_p = &pad->padtemplate;
2483 gst_object_replace ((GstObject **) template_p, (GstObject *) templ);
2484 GST_OBJECT_UNLOCK (pad);
2487 gst_pad_template_pad_created (templ, pad);
2491 * gst_pad_get_pad_template:
2494 * Gets the template for @pad.
2496 * Returns: (transfer full) (nullable): the #GstPadTemplate from which
2497 * this pad was instantiated, or %NULL if this pad has no
2498 * template. Unref after usage.
2501 gst_pad_get_pad_template (GstPad * pad)
2503 GstPadTemplate *templ;
2505 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2507 templ = GST_PAD_PAD_TEMPLATE (pad);
2509 return (templ ? gst_object_ref (templ) : NULL);
2513 * gst_pad_has_current_caps:
2514 * @pad: a #GstPad to check
2516 * Check if @pad has caps set on it with a #GST_EVENT_CAPS event.
2518 * Returns: %TRUE when @pad has caps associated with it.
2521 gst_pad_has_current_caps (GstPad * pad)
2526 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2528 GST_OBJECT_LOCK (pad);
2529 caps = get_pad_caps (pad);
2530 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2531 "check current pad caps %" GST_PTR_FORMAT, caps);
2532 result = (caps != NULL);
2533 GST_OBJECT_UNLOCK (pad);
2539 * gst_pad_get_current_caps:
2540 * @pad: a #GstPad to get the current capabilities of.
2542 * Gets the capabilities currently configured on @pad with the last
2543 * #GST_EVENT_CAPS event.
2545 * Returns: the current caps of the pad with incremented ref-count.
2548 gst_pad_get_current_caps (GstPad * pad)
2552 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2554 GST_OBJECT_LOCK (pad);
2555 if ((result = get_pad_caps (pad)))
2556 gst_caps_ref (result);
2557 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
2558 "get current pad caps %" GST_PTR_FORMAT, result);
2559 GST_OBJECT_UNLOCK (pad);
2565 * gst_pad_get_pad_template_caps:
2566 * @pad: a #GstPad to get the template capabilities from.
2568 * Gets the capabilities for @pad's template.
2570 * Returns: (transfer full): the #GstCaps of this pad template.
2571 * Unref after usage.
2574 gst_pad_get_pad_template_caps (GstPad * pad)
2576 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2578 if (GST_PAD_PAD_TEMPLATE (pad))
2579 return gst_pad_template_get_caps (GST_PAD_PAD_TEMPLATE (pad));
2581 return gst_caps_ref (GST_CAPS_ANY);
2586 * @pad: a #GstPad to get the peer of.
2588 * Gets the peer of @pad. This function refs the peer pad so
2589 * you need to unref it after use.
2591 * Returns: (transfer full): the peer #GstPad. Unref after usage.
2596 gst_pad_get_peer (GstPad * pad)
2600 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2602 GST_OBJECT_LOCK (pad);
2603 result = GST_PAD_PEER (pad);
2605 gst_object_ref (result);
2606 GST_OBJECT_UNLOCK (pad);
2612 * gst_pad_get_allowed_caps:
2615 * Gets the capabilities of the allowed media types that can flow through
2616 * @pad and its peer.
2618 * The allowed capabilities is calculated as the intersection of the results of
2619 * calling gst_pad_query_caps() on @pad and its peer. The caller owns a reference
2620 * on the resulting caps.
2622 * Returns: (transfer full) (nullable): the allowed #GstCaps of the
2623 * pad link. Unref the caps when you no longer need it. This
2624 * function returns %NULL when @pad has no peer.
2629 gst_pad_get_allowed_caps (GstPad * pad)
2635 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2637 GST_OBJECT_LOCK (pad);
2638 peer = GST_PAD_PEER (pad);
2639 if (G_UNLIKELY (peer == NULL))
2642 GST_CAT_DEBUG_OBJECT (GST_CAT_PROPERTIES, pad, "getting allowed caps");
2644 gst_object_ref (peer);
2645 GST_OBJECT_UNLOCK (pad);
2646 mycaps = gst_pad_query_caps (pad, NULL);
2648 caps = gst_pad_query_caps (peer, mycaps);
2649 gst_object_unref (peer);
2651 gst_caps_unref (mycaps);
2653 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "allowed caps %" GST_PTR_FORMAT,
2660 GST_CAT_DEBUG_OBJECT (GST_CAT_PROPERTIES, pad, "no peer");
2661 GST_OBJECT_UNLOCK (pad);
2668 * gst_pad_iterate_internal_links_default:
2669 * @pad: the #GstPad to get the internal links of.
2670 * @parent: (allow-none): the parent of @pad or %NULL
2672 * Iterate the list of pads to which the given pad is linked to inside of
2673 * the parent element.
2674 * This is the default handler, and thus returns an iterator of all of the
2675 * pads inside the parent element with opposite direction.
2677 * The caller must free this iterator after use with gst_iterator_free().
2679 * Returns: (nullable): a #GstIterator of #GstPad, or %NULL if @pad
2680 * has no parent. Unref each returned pad with gst_object_unref().
2683 gst_pad_iterate_internal_links_default (GstPad * pad, GstObject * parent)
2690 GstElement *eparent;
2692 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2694 if (parent != NULL && GST_IS_ELEMENT (parent)) {
2695 eparent = GST_ELEMENT_CAST (gst_object_ref (parent));
2697 GST_OBJECT_LOCK (pad);
2698 eparent = GST_PAD_PARENT (pad);
2699 if (!eparent || !GST_IS_ELEMENT (eparent))
2702 gst_object_ref (eparent);
2703 GST_OBJECT_UNLOCK (pad);
2706 if (pad->direction == GST_PAD_SRC)
2707 padlist = &eparent->sinkpads;
2709 padlist = &eparent->srcpads;
2711 GST_DEBUG_OBJECT (pad, "Making iterator");
2713 cookie = &eparent->pads_cookie;
2715 lock = GST_OBJECT_GET_LOCK (eparent);
2717 res = gst_iterator_new_list (GST_TYPE_PAD,
2718 lock, cookie, padlist, (GObject *) owner, NULL);
2720 gst_object_unref (owner);
2727 GST_OBJECT_UNLOCK (pad);
2728 GST_DEBUG_OBJECT (pad, "no parent element");
2734 * gst_pad_iterate_internal_links:
2735 * @pad: the GstPad to get the internal links of.
2737 * Gets an iterator for the pads to which the given pad is linked to inside
2738 * of the parent element.
2740 * Each #GstPad element yielded by the iterator will have its refcount increased,
2741 * so unref after use.
2743 * Free-function: gst_iterator_free
2745 * Returns: (transfer full) (nullable): a new #GstIterator of #GstPad
2746 * or %NULL when the pad does not have an iterator function
2747 * configured. Use gst_iterator_free() after usage.
2750 gst_pad_iterate_internal_links (GstPad * pad)
2752 GstIterator *res = NULL;
2755 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2757 GST_OBJECT_LOCK (pad);
2758 ACQUIRE_PARENT (pad, parent, no_parent);
2759 GST_OBJECT_UNLOCK (pad);
2761 if (GST_PAD_ITERINTLINKFUNC (pad))
2762 res = GST_PAD_ITERINTLINKFUNC (pad) (pad, parent);
2764 RELEASE_PARENT (parent);
2771 GST_DEBUG_OBJECT (pad, "no parent");
2772 GST_OBJECT_UNLOCK (pad);
2780 * @forward: (scope call): a #GstPadForwardFunction
2781 * @user_data: user data passed to @forward
2783 * Calls @forward for all internally linked pads of @pad. This function deals with
2784 * dynamically changing internal pads and will make sure that the @forward
2785 * function is only called once for each pad.
2787 * When @forward returns %TRUE, no further pads will be processed.
2789 * Returns: %TRUE if one of the dispatcher functions returned %TRUE.
2792 gst_pad_forward (GstPad * pad, GstPadForwardFunction forward,
2795 gboolean result = FALSE;
2797 gboolean done = FALSE;
2798 GValue item = { 0, };
2799 GList *pushed_pads = NULL;
2801 iter = gst_pad_iterate_internal_links (pad);
2807 switch (gst_iterator_next (iter, &item)) {
2808 case GST_ITERATOR_OK:
2812 intpad = g_value_get_object (&item);
2814 /* if already pushed, skip. FIXME, find something faster to tag pads */
2815 if (intpad == NULL || g_list_find (pushed_pads, intpad)) {
2816 g_value_reset (&item);
2820 GST_LOG_OBJECT (pad, "calling forward function on pad %s:%s",
2821 GST_DEBUG_PAD_NAME (intpad));
2822 done = result = forward (intpad, user_data);
2824 pushed_pads = g_list_prepend (pushed_pads, intpad);
2826 g_value_reset (&item);
2829 case GST_ITERATOR_RESYNC:
2830 /* We don't reset the result here because we don't push the event
2831 * again on pads that got the event already and because we need
2832 * to consider the result of the previous pushes */
2833 gst_iterator_resync (iter);
2835 case GST_ITERATOR_ERROR:
2836 GST_ERROR_OBJECT (pad, "Could not iterate over internally linked pads");
2839 case GST_ITERATOR_DONE:
2844 g_value_unset (&item);
2845 gst_iterator_free (iter);
2847 g_list_free (pushed_pads);
2857 gboolean dispatched;
2861 event_forward_func (GstPad * pad, EventData * data)
2863 /* for each pad we send to, we should ref the event; it's up
2864 * to downstream to unref again when handled. */
2865 GST_LOG_OBJECT (pad, "Reffing and pushing event %p (%s) to %s:%s",
2866 data->event, GST_EVENT_TYPE_NAME (data->event), GST_DEBUG_PAD_NAME (pad));
2868 data->result |= gst_pad_push_event (pad, gst_event_ref (data->event));
2870 data->dispatched = TRUE;
2877 * gst_pad_event_default:
2878 * @pad: a #GstPad to call the default event handler on.
2879 * @parent: (allow-none): the parent of @pad or %NULL
2880 * @event: (transfer full): the #GstEvent to handle.
2882 * Invokes the default event handler for the given pad.
2884 * The EOS event will pause the task associated with @pad before it is forwarded
2885 * to all internally linked pads,
2887 * The the event is sent to all pads internally linked to @pad. This function
2888 * takes ownership of @event.
2890 * Returns: %TRUE if the event was sent successfully.
2893 gst_pad_event_default (GstPad * pad, GstObject * parent, GstEvent * event)
2895 gboolean result, forward = TRUE;
2897 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2898 g_return_val_if_fail (event != NULL, FALSE);
2900 GST_LOG_OBJECT (pad, "default event handler for event %" GST_PTR_FORMAT,
2903 switch (GST_EVENT_TYPE (event)) {
2904 case GST_EVENT_CAPS:
2905 forward = GST_PAD_IS_PROXY_CAPS (pad);
2916 data.dispatched = FALSE;
2917 data.result = FALSE;
2919 gst_pad_forward (pad, (GstPadForwardFunction) event_forward_func, &data);
2921 /* for sinkpads without a parent element or without internal links, nothing
2922 * will be dispatched but we still want to return TRUE. */
2923 if (data.dispatched)
2924 result = data.result;
2929 gst_event_unref (event);
2934 /* Default accept caps implementation just checks against
2935 * the allowed caps for the pad */
2937 gst_pad_query_accept_caps_default (GstPad * pad, GstQuery * query)
2939 /* get the caps and see if it intersects to something not empty */
2940 GstCaps *caps, *allowed;
2943 GST_DEBUG_OBJECT (pad, "query accept-caps %" GST_PTR_FORMAT, query);
2945 /* first forward the query to internally linked pads when we are dealing with
2947 if (GST_PAD_IS_PROXY_CAPS (pad)) {
2948 if ((result = gst_pad_proxy_query_accept_caps (pad, query))) {
2953 GST_CAT_DEBUG_OBJECT (GST_CAT_PERFORMANCE, pad,
2954 "fallback ACCEPT_CAPS query, consider implementing a specialized version");
2956 gst_query_parse_accept_caps (query, &caps);
2957 allowed = gst_pad_query_caps (pad, caps);
2960 if (GST_PAD_IS_ACCEPT_INTERSECT (pad)) {
2961 GST_DEBUG_OBJECT (pad,
2962 "allowed caps intersect %" GST_PTR_FORMAT ", caps %" GST_PTR_FORMAT,
2964 result = gst_caps_can_intersect (caps, allowed);
2966 GST_DEBUG_OBJECT (pad, "allowed caps subset %" GST_PTR_FORMAT ", caps %"
2967 GST_PTR_FORMAT, allowed, caps);
2968 result = gst_caps_is_subset (caps, allowed);
2970 gst_caps_unref (allowed);
2972 GST_DEBUG_OBJECT (pad, "no compatible caps allowed on the pad");
2975 gst_query_set_accept_caps_result (query, result);
2981 /* Default caps implementation */
2983 gst_pad_query_caps_default (GstPad * pad, GstQuery * query)
2985 GstCaps *result = NULL, *filter;
2986 GstPadTemplate *templ;
2987 gboolean fixed_caps;
2989 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "query caps %" GST_PTR_FORMAT,
2992 /* first try to proxy if we must */
2993 if (GST_PAD_IS_PROXY_CAPS (pad)) {
2994 if ((gst_pad_proxy_query_caps (pad, query))) {
2999 gst_query_parse_caps (query, &filter);
3001 /* no proxy or it failed, do default handling */
3002 fixed_caps = GST_PAD_IS_FIXED_CAPS (pad);
3004 GST_OBJECT_LOCK (pad);
3006 /* fixed caps, try the negotiated caps first */
3007 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "fixed pad caps: trying pad caps");
3008 if ((result = get_pad_caps (pad)))
3009 goto filter_done_unlock;
3012 if ((templ = GST_PAD_PAD_TEMPLATE (pad))) {
3013 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "trying pad template caps");
3014 if ((result = GST_PAD_TEMPLATE_CAPS (templ)))
3015 goto filter_done_unlock;
3019 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
3020 "non-fixed pad caps: trying pad caps");
3021 /* non fixed caps, try the negotiated caps */
3022 if ((result = get_pad_caps (pad)))
3023 goto filter_done_unlock;
3026 /* this almost never happens */
3027 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "pad has no caps");
3028 result = GST_CAPS_ANY;
3031 GST_OBJECT_UNLOCK (pad);
3033 /* run the filter on the result */
3035 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
3036 "using caps %p %" GST_PTR_FORMAT " with filter %p %"
3037 GST_PTR_FORMAT, result, result, filter, filter);
3038 result = gst_caps_intersect_full (filter, result, GST_CAPS_INTERSECT_FIRST);
3039 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "result %p %" GST_PTR_FORMAT,
3042 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
3043 "using caps %p %" GST_PTR_FORMAT, result, result);
3044 result = gst_caps_ref (result);
3046 gst_query_set_caps_result (query, result);
3047 gst_caps_unref (result);
3053 /* Default latency implementation */
3057 GstClockTime min, max;
3061 query_latency_default_fold (const GValue * item, GValue * ret,
3064 GstPad *pad = g_value_get_object (item), *peer;
3065 LatencyFoldData *fold_data = user_data;
3067 gboolean res = FALSE;
3069 query = gst_query_new_latency ();
3071 peer = gst_pad_get_peer (pad);
3073 res = gst_pad_peer_query (pad, query);
3075 GST_LOG_OBJECT (pad, "No peer pad found, ignoring this pad");
3080 GstClockTime min, max;
3082 gst_query_parse_latency (query, &live, &min, &max);
3084 GST_LOG_OBJECT (pad, "got latency live:%s min:%" G_GINT64_FORMAT
3085 " max:%" G_GINT64_FORMAT, live ? "true" : "false", min, max);
3088 if (min > fold_data->min)
3089 fold_data->min = min;
3091 if (fold_data->max == GST_CLOCK_TIME_NONE)
3092 fold_data->max = max;
3093 else if (max < fold_data->max)
3094 fold_data->max = max;
3096 fold_data->live = TRUE;
3099 GST_DEBUG_OBJECT (pad, "latency query failed");
3100 g_value_set_boolean (ret, FALSE);
3103 gst_query_unref (query);
3105 gst_object_unref (peer);
3111 gst_pad_query_latency_default (GstPad * pad, GstQuery * query)
3114 GstIteratorResult res;
3115 GValue ret = G_VALUE_INIT;
3117 LatencyFoldData fold_data;
3119 it = gst_pad_iterate_internal_links (pad);
3121 GST_DEBUG_OBJECT (pad, "Can't iterate internal links");
3125 g_value_init (&ret, G_TYPE_BOOLEAN);
3128 fold_data.live = FALSE;
3130 fold_data.max = GST_CLOCK_TIME_NONE;
3132 g_value_set_boolean (&ret, TRUE);
3133 res = gst_iterator_fold (it, query_latency_default_fold, &ret, &fold_data);
3135 case GST_ITERATOR_OK:
3136 g_assert_not_reached ();
3138 case GST_ITERATOR_DONE:
3140 case GST_ITERATOR_ERROR:
3141 g_value_set_boolean (&ret, FALSE);
3143 case GST_ITERATOR_RESYNC:
3144 gst_iterator_resync (it);
3147 g_assert_not_reached ();
3150 gst_iterator_free (it);
3152 query_ret = g_value_get_boolean (&ret);
3154 GST_LOG_OBJECT (pad, "got latency live:%s min:%" G_GINT64_FORMAT
3155 " max:%" G_GINT64_FORMAT, fold_data.live ? "true" : "false",
3156 fold_data.min, fold_data.max);
3158 if (fold_data.min > fold_data.max) {
3159 GST_ERROR_OBJECT (pad, "minimum latency bigger than maximum latency");
3162 gst_query_set_latency (query, fold_data.live, fold_data.min, fold_data.max);
3164 GST_LOG_OBJECT (pad, "latency query failed");
3174 gboolean dispatched;
3178 query_forward_func (GstPad * pad, QueryData * data)
3180 GST_LOG_OBJECT (pad, "query peer %p (%s) of %s:%s",
3181 data->query, GST_QUERY_TYPE_NAME (data->query), GST_DEBUG_PAD_NAME (pad));
3183 data->result |= gst_pad_peer_query (pad, data->query);
3185 data->dispatched = TRUE;
3187 /* stop on first successful reply */
3188 return data->result;
3192 * gst_pad_query_default:
3193 * @pad: a #GstPad to call the default query handler on.
3194 * @parent: (allow-none): the parent of @pad or %NULL
3195 * @query: (transfer none): the #GstQuery to handle.
3197 * Invokes the default query handler for the given pad.
3198 * The query is sent to all pads internally linked to @pad. Note that
3199 * if there are many possible sink pads that are internally linked to
3200 * @pad, only one will be sent the query.
3201 * Multi-sinkpad elements should implement custom query handlers.
3203 * Returns: %TRUE if the query was performed successfully.
3206 gst_pad_query_default (GstPad * pad, GstObject * parent, GstQuery * query)
3208 gboolean forward, ret = FALSE;
3210 switch (GST_QUERY_TYPE (query)) {
3211 case GST_QUERY_SCHEDULING:
3212 forward = GST_PAD_IS_PROXY_SCHEDULING (pad);
3214 case GST_QUERY_ALLOCATION:
3215 forward = GST_PAD_IS_PROXY_ALLOCATION (pad);
3217 case GST_QUERY_ACCEPT_CAPS:
3218 ret = gst_pad_query_accept_caps_default (pad, query);
3221 case GST_QUERY_CAPS:
3222 ret = gst_pad_query_caps_default (pad, query);
3225 case GST_QUERY_LATENCY:
3226 ret = gst_pad_query_latency_default (pad, query);
3229 case GST_QUERY_POSITION:
3230 case GST_QUERY_SEEKING:
3231 case GST_QUERY_FORMATS:
3232 case GST_QUERY_JITTER:
3233 case GST_QUERY_RATE:
3234 case GST_QUERY_CONVERT:
3240 GST_DEBUG_OBJECT (pad, "%sforwarding %p (%s) query", (forward ? "" : "not "),
3241 query, GST_QUERY_TYPE_NAME (query));
3247 data.dispatched = FALSE;
3248 data.result = FALSE;
3250 gst_pad_forward (pad, (GstPadForwardFunction) query_forward_func, &data);
3252 if (data.dispatched) {
3255 /* nothing dispatched, assume drained */
3256 if (GST_QUERY_TYPE (query) == GST_QUERY_DRAIN)
3266 probe_hook_marshal (GHook * hook, ProbeMarshall * data)
3268 GstPad *pad = data->pad;
3269 GstPadProbeInfo *info = data->info;
3270 GstPadProbeType type, flags;
3271 GstPadProbeCallback callback;
3272 GstPadProbeReturn ret;
3274 /* if we have called this callback, do nothing */
3275 if (PROBE_COOKIE (hook) == data->cookie) {
3276 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3277 "hook %lu, cookie %u already called", hook->hook_id,
3278 PROBE_COOKIE (hook));
3282 PROBE_COOKIE (hook) = data->cookie;
3284 flags = hook->flags >> G_HOOK_FLAG_USER_SHIFT;
3287 /* one of the data types for non-idle probes */
3288 if ((type & GST_PAD_PROBE_TYPE_IDLE) == 0
3289 && (flags & GST_PAD_PROBE_TYPE_ALL_BOTH & type) == 0)
3291 /* one of the scheduling types */
3292 if ((flags & GST_PAD_PROBE_TYPE_SCHEDULING & type) == 0)
3294 /* one of the blocking types must match */
3295 if ((type & GST_PAD_PROBE_TYPE_BLOCKING) &&
3296 (flags & GST_PAD_PROBE_TYPE_BLOCKING & type) == 0)
3298 if ((type & GST_PAD_PROBE_TYPE_BLOCKING) == 0 &&
3299 (flags & GST_PAD_PROBE_TYPE_BLOCKING))
3301 /* only probes that have GST_PAD_PROBE_TYPE_EVENT_FLUSH set */
3302 if ((type & GST_PAD_PROBE_TYPE_EVENT_FLUSH) &&
3303 (flags & GST_PAD_PROBE_TYPE_EVENT_FLUSH & type) == 0)
3306 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3307 "hook %lu, cookie %u with flags 0x%08x matches", hook->hook_id,
3308 PROBE_COOKIE (hook), flags);
3310 data->marshalled = TRUE;
3312 callback = (GstPadProbeCallback) hook->func;
3313 if (callback == NULL)
3316 info->id = hook->hook_id;
3318 GST_OBJECT_UNLOCK (pad);
3320 ret = callback (pad, info, hook->data);
3322 GST_OBJECT_LOCK (pad);
3325 case GST_PAD_PROBE_REMOVE:
3326 /* remove the probe */
3327 GST_DEBUG_OBJECT (pad, "asked to remove hook");
3328 cleanup_hook (pad, hook);
3330 case GST_PAD_PROBE_DROP:
3331 /* need to drop the data, make sure other probes don't get called
3333 GST_DEBUG_OBJECT (pad, "asked to drop item");
3334 info->type = GST_PAD_PROBE_TYPE_INVALID;
3335 data->dropped = TRUE;
3337 case GST_PAD_PROBE_PASS:
3338 /* inform the pad block to let things pass */
3339 GST_DEBUG_OBJECT (pad, "asked to pass item");
3342 case GST_PAD_PROBE_OK:
3343 GST_DEBUG_OBJECT (pad, "probe returned OK");
3346 GST_DEBUG_OBJECT (pad, "probe returned %d", ret);
3353 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3354 "hook %lu, cookie %u with flags 0x%08x does not match %08x",
3355 hook->hook_id, PROBE_COOKIE (hook), flags, info->type);
3360 /* a probe that does not take or return any data */
3361 #define PROBE_NO_DATA(pad,mask,label,defaultval) \
3363 if (G_UNLIKELY (pad->num_probes)) { \
3364 GstFlowReturn pval = defaultval; \
3365 /* pass NULL as the data item */ \
3366 GstPadProbeInfo info = { mask, 0, NULL, 0, 0 }; \
3367 ret = do_probe_callbacks (pad, &info, defaultval); \
3368 if (G_UNLIKELY (ret != pval && ret != GST_FLOW_OK)) \
3373 #define PROBE_FULL(pad,mask,data,offs,size,label) \
3375 if (G_UNLIKELY (pad->num_probes)) { \
3376 /* pass the data item */ \
3377 GstPadProbeInfo info = { mask, 0, data, offs, size }; \
3378 ret = do_probe_callbacks (pad, &info, GST_FLOW_OK); \
3379 /* store the possibly updated data item */ \
3380 data = GST_PAD_PROBE_INFO_DATA (&info); \
3381 /* if something went wrong, exit */ \
3382 if (G_UNLIKELY (ret != GST_FLOW_OK)) \
3387 #define PROBE_PUSH(pad,mask,data,label) \
3388 PROBE_FULL(pad, mask, data, -1, -1, label);
3389 #define PROBE_PULL(pad,mask,data,offs,size,label) \
3390 PROBE_FULL(pad, mask, data, offs, size, label);
3392 static GstFlowReturn
3393 do_probe_callbacks (GstPad * pad, GstPadProbeInfo * info,
3394 GstFlowReturn defaultval)
3403 data.marshalled = FALSE;
3404 data.dropped = FALSE;
3405 data.cookie = ++pad->priv->probe_cookie;
3408 (info->type & GST_PAD_PROBE_TYPE_BLOCK) == GST_PAD_PROBE_TYPE_BLOCK;
3411 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3412 "do probes cookie %u", data.cookie);
3413 cookie = pad->priv->probe_list_cookie;
3415 g_hook_list_marshal (&pad->probes, TRUE,
3416 (GHookMarshaller) probe_hook_marshal, &data);
3418 /* if the list changed, call the new callbacks (they will not have their
3419 * cookie set to data.cookie */
3420 if (cookie != pad->priv->probe_list_cookie) {
3421 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3422 "probe list changed, restarting");
3426 /* the first item that dropped will stop the hooks and then we drop here */
3430 /* if no handler matched and we are blocking, let the item pass */
3431 if (!data.marshalled && is_block)
3434 /* At this point, all handlers returned either OK or PASS. If one handler
3435 * returned PASS, let the item pass */
3440 while (GST_PAD_IS_BLOCKED (pad)) {
3441 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3442 "we are blocked %d times", pad->num_blocked);
3444 /* we might have released the lock */
3445 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
3448 /* now we block the streaming thread. It can be unlocked when we
3449 * deactivate the pad (which will also set the FLUSHING flag) or
3450 * when the pad is unblocked. A flushing event will also unblock
3451 * the pad after setting the FLUSHING flag. */
3452 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3453 "Waiting to be unblocked or set flushing");
3454 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_BLOCKING);
3455 GST_PAD_BLOCK_WAIT (pad);
3456 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_BLOCKING);
3457 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "We got unblocked");
3459 /* if the list changed, call the new callbacks (they will not have their
3460 * cookie set to data.cookie */
3461 if (cookie != pad->priv->probe_list_cookie) {
3462 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3463 "probe list changed, restarting");
3467 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
3477 GST_DEBUG_OBJECT (pad, "pad is flushing");
3478 return GST_FLOW_FLUSHING;
3482 GST_DEBUG_OBJECT (pad, "data is dropped");
3483 return GST_FLOW_CUSTOM_SUCCESS;
3487 /* FIXME : Should we return FLOW_OK or the defaultval ?? */
3488 GST_DEBUG_OBJECT (pad, "data is passed");
3496 * gst_pad_get_offset:
3499 * Get the offset applied to the running time of @pad. @pad has to be a source
3502 * Returns: the offset.
3505 gst_pad_get_offset (GstPad * pad)
3509 g_return_val_if_fail (GST_IS_PAD (pad), 0);
3511 GST_OBJECT_LOCK (pad);
3512 result = pad->offset;
3513 GST_OBJECT_UNLOCK (pad);
3519 mark_event_not_received (GstPad * pad, PadEvent * ev, gpointer user_data)
3521 ev->received = FALSE;
3526 * gst_pad_set_offset:
3528 * @offset: the offset
3530 * Set the offset that will be applied to the running time of @pad.
3533 gst_pad_set_offset (GstPad * pad, gint64 offset)
3535 g_return_if_fail (GST_IS_PAD (pad));
3537 GST_OBJECT_LOCK (pad);
3538 /* if nothing changed, do nothing */
3539 if (pad->offset == offset)
3542 pad->offset = offset;
3543 GST_DEBUG_OBJECT (pad, "changed offset to %" G_GINT64_FORMAT, offset);
3545 /* resend all sticky events with updated offset on next buffer push */
3546 events_foreach (pad, mark_event_not_received, NULL);
3547 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
3550 GST_OBJECT_UNLOCK (pad);
3557 /* If TRUE and ret is not OK this means
3558 * that pushing the EOS event failed
3562 /* If called for an event this is
3563 * the event that would be pushed
3564 * next. Don't forward sticky events
3565 * that would come after that */
3569 /* should be called with pad LOCK */
3571 push_sticky (GstPad * pad, PadEvent * ev, gpointer user_data)
3573 PushStickyData *data = user_data;
3574 GstEvent *event = ev->event;
3577 GST_DEBUG_OBJECT (pad, "event %s was already received",
3578 GST_EVENT_TYPE_NAME (event));
3582 /* If we're called because of an sticky event, only forward
3583 * events that would come before this new event and the
3585 if (data->event && GST_EVENT_IS_STICKY (data->event) &&
3586 GST_EVENT_TYPE (data->event) <= GST_EVENT_SEGMENT &&
3587 GST_EVENT_TYPE (data->event) < GST_EVENT_TYPE (event)) {
3588 data->ret = GST_FLOW_CUSTOM_SUCCESS_1;
3590 data->ret = gst_pad_push_event_unchecked (pad, gst_event_ref (event),
3591 GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM);
3594 switch (data->ret) {
3596 ev->received = TRUE;
3597 GST_DEBUG_OBJECT (pad, "event %s marked received",
3598 GST_EVENT_TYPE_NAME (event));
3600 case GST_FLOW_CUSTOM_SUCCESS:
3601 /* we can't assume the event is received when it was dropped */
3602 GST_DEBUG_OBJECT (pad, "event %s was dropped, mark pending",
3603 GST_EVENT_TYPE_NAME (event));
3604 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
3605 data->ret = GST_FLOW_OK;
3607 case GST_FLOW_CUSTOM_SUCCESS_1:
3608 /* event was ignored and should be sent later */
3609 GST_DEBUG_OBJECT (pad, "event %s was ignored, mark pending",
3610 GST_EVENT_TYPE_NAME (event));
3611 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
3612 data->ret = GST_FLOW_OK;
3614 case GST_FLOW_NOT_LINKED:
3615 /* not linked is not a problem, we are sticky so the event will be
3616 * sent later but only for non-EOS events */
3617 GST_DEBUG_OBJECT (pad, "pad was not linked, mark pending");
3618 if (GST_EVENT_TYPE (event) != GST_EVENT_EOS)
3619 data->ret = GST_FLOW_OK;
3620 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
3623 GST_DEBUG_OBJECT (pad, "result %s, mark pending events",
3624 gst_flow_get_name (data->ret));
3625 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
3629 if (data->ret != GST_FLOW_OK && GST_EVENT_TYPE (event) == GST_EVENT_EOS)
3630 data->was_eos = TRUE;
3632 return data->ret == GST_FLOW_OK;
3635 /* check sticky events and push them when needed. should be called
3637 static inline GstFlowReturn
3638 check_sticky (GstPad * pad, GstEvent * event)
3640 PushStickyData data = { GST_FLOW_OK, FALSE, event };
3642 if (G_UNLIKELY (GST_PAD_HAS_PENDING_EVENTS (pad))) {
3643 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_PENDING_EVENTS);
3645 GST_DEBUG_OBJECT (pad, "pushing all sticky events");
3646 events_foreach (pad, push_sticky, &data);
3648 /* If there's an EOS event we must push it downstream
3649 * even if sending a previous sticky event failed.
3650 * Otherwise the pipeline might wait forever for EOS.
3652 * Only do this if pushing another event than the EOS
3655 if (data.ret != GST_FLOW_OK && !data.was_eos) {
3656 PadEvent *ev = find_event_by_type (pad, GST_EVENT_EOS, 0);
3658 if (ev && !ev->received) {
3659 data.ret = gst_pad_push_event_unchecked (pad, gst_event_ref (ev->event),
3660 GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM);
3661 /* the event could have been dropped. Because this can only
3662 * happen if the user asked for it, it's not an error */
3663 if (data.ret == GST_FLOW_CUSTOM_SUCCESS)
3664 data.ret = GST_FLOW_OK;
3674 * @pad: a #GstPad to invoke the default query on.
3675 * @query: (transfer none): the #GstQuery to perform.
3677 * Dispatches a query to a pad. The query should have been allocated by the
3678 * caller via one of the type-specific allocation functions. The element that
3679 * the pad belongs to is responsible for filling the query with an appropriate
3680 * response, which should then be parsed with a type-specific query parsing
3683 * Again, the caller is responsible for both the allocation and deallocation of
3684 * the query structure.
3686 * Please also note that some queries might need a running pipeline to work.
3688 * Returns: %TRUE if the query could be performed.
3691 gst_pad_query (GstPad * pad, GstQuery * query)
3694 gboolean res, serialized;
3695 GstPadQueryFunction func;
3696 GstPadProbeType type;
3699 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3700 g_return_val_if_fail (GST_IS_QUERY (query), FALSE);
3702 if (GST_PAD_IS_SRC (pad)) {
3703 if (G_UNLIKELY (!GST_QUERY_IS_UPSTREAM (query)))
3704 goto wrong_direction;
3705 type = GST_PAD_PROBE_TYPE_QUERY_UPSTREAM;
3706 } else if (GST_PAD_IS_SINK (pad)) {
3707 if (G_UNLIKELY (!GST_QUERY_IS_DOWNSTREAM (query)))
3708 goto wrong_direction;
3709 type = GST_PAD_PROBE_TYPE_QUERY_DOWNSTREAM;
3711 goto unknown_direction;
3713 GST_DEBUG_OBJECT (pad, "doing query %p (%s)", query,
3714 GST_QUERY_TYPE_NAME (query));
3716 serialized = GST_QUERY_IS_SERIALIZED (query);
3717 if (G_UNLIKELY (serialized))
3718 GST_PAD_STREAM_LOCK (pad);
3720 GST_OBJECT_LOCK (pad);
3721 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH |
3722 GST_PAD_PROBE_TYPE_BLOCK, query, probe_stopped);
3723 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH, query, probe_stopped);
3725 ACQUIRE_PARENT (pad, parent, no_parent);
3726 GST_OBJECT_UNLOCK (pad);
3728 if ((func = GST_PAD_QUERYFUNC (pad)) == NULL)
3731 res = func (pad, parent, query);
3733 RELEASE_PARENT (parent);
3735 GST_DEBUG_OBJECT (pad, "sent query %p (%s), result %d", query,
3736 GST_QUERY_TYPE_NAME (query), res);
3741 GST_OBJECT_LOCK (pad);
3742 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PULL, query, probe_stopped);
3743 GST_OBJECT_UNLOCK (pad);
3745 if (G_UNLIKELY (serialized))
3746 GST_PAD_STREAM_UNLOCK (pad);
3753 g_warning ("pad %s:%s query %s in wrong direction",
3754 GST_DEBUG_PAD_NAME (pad), GST_QUERY_TYPE_NAME (query));
3759 g_warning ("pad %s:%s has invalid direction", GST_DEBUG_PAD_NAME (pad));
3764 GST_DEBUG_OBJECT (pad, "had no parent");
3765 GST_OBJECT_UNLOCK (pad);
3766 if (G_UNLIKELY (serialized))
3767 GST_PAD_STREAM_UNLOCK (pad);
3772 GST_DEBUG_OBJECT (pad, "had no query function");
3773 RELEASE_PARENT (parent);
3774 if (G_UNLIKELY (serialized))
3775 GST_PAD_STREAM_UNLOCK (pad);
3780 GST_DEBUG_OBJECT (pad, "query failed");
3781 if (G_UNLIKELY (serialized))
3782 GST_PAD_STREAM_UNLOCK (pad);
3787 GST_DEBUG_OBJECT (pad, "probe stopped: %s", gst_flow_get_name (ret));
3788 GST_OBJECT_UNLOCK (pad);
3789 if (G_UNLIKELY (serialized))
3790 GST_PAD_STREAM_UNLOCK (pad);
3792 /* if a probe dropped, we don't sent it further but assume that the probe
3793 * did not answer the query and return FALSE */
3801 * gst_pad_peer_query:
3802 * @pad: a #GstPad to invoke the peer query on.
3803 * @query: (transfer none): the #GstQuery to perform.
3805 * Performs gst_pad_query() on the peer of @pad.
3807 * The caller is responsible for both the allocation and deallocation of
3808 * the query structure.
3810 * Returns: %TRUE if the query could be performed. This function returns %FALSE
3811 * if @pad has no peer.
3814 gst_pad_peer_query (GstPad * pad, GstQuery * query)
3817 GstPadProbeType type;
3818 gboolean res, serialized;
3821 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3822 g_return_val_if_fail (GST_IS_QUERY (query), FALSE);
3824 if (GST_PAD_IS_SRC (pad)) {
3825 if (G_UNLIKELY (!GST_QUERY_IS_DOWNSTREAM (query)))
3826 goto wrong_direction;
3827 type = GST_PAD_PROBE_TYPE_QUERY_DOWNSTREAM;
3828 } else if (GST_PAD_IS_SINK (pad)) {
3829 if (G_UNLIKELY (!GST_QUERY_IS_UPSTREAM (query)))
3830 goto wrong_direction;
3831 type = GST_PAD_PROBE_TYPE_QUERY_UPSTREAM;
3833 goto unknown_direction;
3835 GST_DEBUG_OBJECT (pad, "peer query %p (%s)", query,
3836 GST_QUERY_TYPE_NAME (query));
3838 serialized = GST_QUERY_IS_SERIALIZED (query);
3840 GST_OBJECT_LOCK (pad);
3841 if (GST_PAD_IS_SRC (pad) && serialized) {
3842 /* all serialized queries on the srcpad trigger push of
3844 if (check_sticky (pad, NULL) != GST_FLOW_OK)
3848 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH |
3849 GST_PAD_PROBE_TYPE_BLOCK, query, probe_stopped);
3850 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH, query, probe_stopped);
3852 peerpad = GST_PAD_PEER (pad);
3853 if (G_UNLIKELY (peerpad == NULL))
3856 gst_object_ref (peerpad);
3857 GST_OBJECT_UNLOCK (pad);
3859 res = gst_pad_query (peerpad, query);
3861 gst_object_unref (peerpad);
3866 GST_OBJECT_LOCK (pad);
3867 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PULL, query, probe_stopped);
3868 GST_OBJECT_UNLOCK (pad);
3875 g_warning ("pad %s:%s query %s in wrong direction",
3876 GST_DEBUG_PAD_NAME (pad), GST_QUERY_TYPE_NAME (query));
3881 g_warning ("pad %s:%s has invalid direction", GST_DEBUG_PAD_NAME (pad));
3886 GST_WARNING_OBJECT (pad, "could not send sticky events");
3887 GST_OBJECT_UNLOCK (pad);
3892 GST_INFO_OBJECT (pad, "pad has no peer");
3893 GST_OBJECT_UNLOCK (pad);
3898 GST_DEBUG_OBJECT (pad, "query failed");
3903 GST_DEBUG_OBJECT (pad, "probe stopped: %s", gst_flow_get_name (ret));
3904 GST_OBJECT_UNLOCK (pad);
3906 /* if a probe dropped, we don't sent it further but assume that the probe
3907 * did not answer the query and return FALSE */
3914 /**********************************************************************
3915 * Data passing functions
3918 /* this is the chain function that does not perform the additional argument
3919 * checking for that little extra speed.
3921 static inline GstFlowReturn
3922 gst_pad_chain_data_unchecked (GstPad * pad, GstPadProbeType type, void *data)
3927 GST_PAD_STREAM_LOCK (pad);
3929 GST_OBJECT_LOCK (pad);
3930 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
3933 if (G_UNLIKELY (GST_PAD_IS_EOS (pad)))
3936 if (G_UNLIKELY (GST_PAD_MODE (pad) != GST_PAD_MODE_PUSH))
3939 #ifndef G_DISABLE_ASSERT
3940 if (G_UNLIKELY (pad->priv->last_cookie != pad->priv->events_cookie)) {
3941 if (!find_event_by_type (pad, GST_EVENT_STREAM_START, 0)) {
3943 ":%s:<%s:%s> Got data flow before stream-start event",
3944 G_STRFUNC, GST_DEBUG_PAD_NAME (pad));
3946 if (!find_event_by_type (pad, GST_EVENT_SEGMENT, 0)) {
3948 ":%s:<%s:%s> Got data flow before segment event",
3949 G_STRFUNC, GST_DEBUG_PAD_NAME (pad));
3951 pad->priv->last_cookie = pad->priv->events_cookie;
3955 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_BLOCK, data, probe_stopped);
3957 PROBE_PUSH (pad, type, data, probe_stopped);
3959 parent = GST_OBJECT_PARENT (pad);
3960 GST_OBJECT_UNLOCK (pad);
3962 /* NOTE: we read the chainfunc unlocked.
3963 * we cannot hold the lock for the pad so we might send
3964 * the data to the wrong function. This is not really a
3965 * problem since functions are assigned at creation time
3966 * and don't change that often... */
3967 if (G_LIKELY (type & GST_PAD_PROBE_TYPE_BUFFER)) {
3968 GstPadChainFunction chainfunc;
3970 if (G_UNLIKELY ((chainfunc = GST_PAD_CHAINFUNC (pad)) == NULL))
3973 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3974 "calling chainfunction &%s with buffer %" GST_PTR_FORMAT,
3975 GST_DEBUG_FUNCPTR_NAME (chainfunc), GST_BUFFER (data));
3977 ret = chainfunc (pad, parent, GST_BUFFER_CAST (data));
3979 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3980 "called chainfunction &%s with buffer %p, returned %s",
3981 GST_DEBUG_FUNCPTR_NAME (chainfunc), data, gst_flow_get_name (ret));
3983 GstPadChainListFunction chainlistfunc;
3985 if (G_UNLIKELY ((chainlistfunc = GST_PAD_CHAINLISTFUNC (pad)) == NULL))
3988 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3989 "calling chainlistfunction &%s",
3990 GST_DEBUG_FUNCPTR_NAME (chainlistfunc));
3992 ret = chainlistfunc (pad, parent, GST_BUFFER_LIST_CAST (data));
3994 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
3995 "called chainlistfunction &%s, returned %s",
3996 GST_DEBUG_FUNCPTR_NAME (chainlistfunc), gst_flow_get_name (ret));
3999 GST_PAD_STREAM_UNLOCK (pad);
4006 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4007 "chaining, but pad was flushing");
4008 GST_OBJECT_UNLOCK (pad);
4009 GST_PAD_STREAM_UNLOCK (pad);
4010 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4011 return GST_FLOW_FLUSHING;
4015 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "chaining, but pad was EOS");
4016 GST_OBJECT_UNLOCK (pad);
4017 GST_PAD_STREAM_UNLOCK (pad);
4018 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4019 return GST_FLOW_EOS;
4023 g_critical ("chain on pad %s:%s but it was not in push mode",
4024 GST_DEBUG_PAD_NAME (pad));
4025 GST_OBJECT_UNLOCK (pad);
4026 GST_PAD_STREAM_UNLOCK (pad);
4027 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4028 return GST_FLOW_ERROR;
4032 GST_OBJECT_UNLOCK (pad);
4033 GST_PAD_STREAM_UNLOCK (pad);
4034 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4037 case GST_FLOW_CUSTOM_SUCCESS:
4038 GST_DEBUG_OBJECT (pad, "dropped buffer");
4042 GST_DEBUG_OBJECT (pad, "an error occurred %s", gst_flow_get_name (ret));
4049 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4050 g_critical ("chain on pad %s:%s but it has no chainfunction",
4051 GST_DEBUG_PAD_NAME (pad));
4052 GST_PAD_STREAM_UNLOCK (pad);
4053 return GST_FLOW_NOT_SUPPORTED;
4059 * @pad: a sink #GstPad, returns GST_FLOW_ERROR if not.
4060 * @buffer: (transfer full): the #GstBuffer to send, return GST_FLOW_ERROR
4063 * Chain a buffer to @pad.
4065 * The function returns #GST_FLOW_FLUSHING if the pad was flushing.
4067 * If the buffer type is not acceptable for @pad (as negotiated with a
4068 * preceding GST_EVENT_CAPS event), this function returns
4069 * #GST_FLOW_NOT_NEGOTIATED.
4071 * The function proceeds calling the chain function installed on @pad (see
4072 * gst_pad_set_chain_function()) and the return value of that function is
4073 * returned to the caller. #GST_FLOW_NOT_SUPPORTED is returned if @pad has no
4076 * In all cases, success or failure, the caller loses its reference to @buffer
4077 * after calling this function.
4079 * Returns: a #GstFlowReturn from the pad.
4084 gst_pad_chain (GstPad * pad, GstBuffer * buffer)
4086 g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
4087 g_return_val_if_fail (GST_PAD_IS_SINK (pad), GST_FLOW_ERROR);
4088 g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
4090 return gst_pad_chain_data_unchecked (pad,
4091 GST_PAD_PROBE_TYPE_BUFFER | GST_PAD_PROBE_TYPE_PUSH, buffer);
4094 static GstFlowReturn
4095 gst_pad_chain_list_default (GstPad * pad, GstObject * parent,
4096 GstBufferList * list)
4102 GST_INFO_OBJECT (pad, "chaining each buffer in list individually");
4104 len = gst_buffer_list_length (list);
4107 for (i = 0; i < len; i++) {
4108 buffer = gst_buffer_list_get (list, i);
4110 gst_pad_chain_data_unchecked (pad,
4111 GST_PAD_PROBE_TYPE_BUFFER | GST_PAD_PROBE_TYPE_PUSH,
4112 gst_buffer_ref (buffer));
4113 if (ret != GST_FLOW_OK)
4116 gst_buffer_list_unref (list);
4122 * gst_pad_chain_list:
4123 * @pad: a sink #GstPad, returns GST_FLOW_ERROR if not.
4124 * @list: (transfer full): the #GstBufferList to send, return GST_FLOW_ERROR
4127 * Chain a bufferlist to @pad.
4129 * The function returns #GST_FLOW_FLUSHING if the pad was flushing.
4131 * If @pad was not negotiated properly with a CAPS event, this function
4132 * returns #GST_FLOW_NOT_NEGOTIATED.
4134 * The function proceeds calling the chainlist function installed on @pad (see
4135 * gst_pad_set_chain_list_function()) and the return value of that function is
4136 * returned to the caller. #GST_FLOW_NOT_SUPPORTED is returned if @pad has no
4137 * chainlist function.
4139 * In all cases, success or failure, the caller loses its reference to @list
4140 * after calling this function.
4144 * Returns: a #GstFlowReturn from the pad.
4147 gst_pad_chain_list (GstPad * pad, GstBufferList * list)
4149 g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
4150 g_return_val_if_fail (GST_PAD_IS_SINK (pad), GST_FLOW_ERROR);
4151 g_return_val_if_fail (GST_IS_BUFFER_LIST (list), GST_FLOW_ERROR);
4153 return gst_pad_chain_data_unchecked (pad,
4154 GST_PAD_PROBE_TYPE_BUFFER_LIST | GST_PAD_PROBE_TYPE_PUSH, list);
4157 static GstFlowReturn
4158 gst_pad_push_data (GstPad * pad, GstPadProbeType type, void *data)
4163 GST_OBJECT_LOCK (pad);
4164 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
4167 if (G_UNLIKELY (GST_PAD_IS_EOS (pad)))
4170 if (G_UNLIKELY (GST_PAD_MODE (pad) != GST_PAD_MODE_PUSH))
4173 #ifndef G_DISABLE_ASSERT
4174 if (G_UNLIKELY (pad->priv->last_cookie != pad->priv->events_cookie)) {
4175 if (!find_event_by_type (pad, GST_EVENT_STREAM_START, 0)) {
4177 ":%s:<%s:%s> Got data flow before stream-start event",
4178 G_STRFUNC, GST_DEBUG_PAD_NAME (pad));
4180 if (!find_event_by_type (pad, GST_EVENT_SEGMENT, 0)) {
4182 ":%s:<%s:%s> Got data flow before segment event",
4183 G_STRFUNC, GST_DEBUG_PAD_NAME (pad));
4185 pad->priv->last_cookie = pad->priv->events_cookie;
4189 if (G_UNLIKELY ((ret = check_sticky (pad, NULL))) != GST_FLOW_OK)
4192 /* do block probes */
4193 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_BLOCK, data, probe_stopped);
4195 /* recheck sticky events because the probe might have cause a relink */
4196 if (G_UNLIKELY ((ret = check_sticky (pad, NULL))) != GST_FLOW_OK)
4199 /* do post-blocking probes */
4200 PROBE_PUSH (pad, type, data, probe_stopped);
4202 if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
4205 /* take ref to peer pad before releasing the lock */
4206 gst_object_ref (peer);
4208 GST_OBJECT_UNLOCK (pad);
4210 ret = gst_pad_chain_data_unchecked (peer, type, data);
4212 gst_object_unref (peer);
4214 GST_OBJECT_LOCK (pad);
4215 pad->ABI.abi.last_flowret = ret;
4217 if (pad->priv->using == 0) {
4218 /* pad is not active anymore, trigger idle callbacks */
4219 PROBE_NO_DATA (pad, GST_PAD_PROBE_TYPE_PUSH | GST_PAD_PROBE_TYPE_IDLE,
4220 probe_stopped, ret);
4222 GST_OBJECT_UNLOCK (pad);
4226 /* ERROR recovery here */
4230 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4231 "pushing, but pad was flushing");
4232 pad->ABI.abi.last_flowret = GST_FLOW_FLUSHING;
4233 GST_OBJECT_UNLOCK (pad);
4234 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4235 return GST_FLOW_FLUSHING;
4239 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "pushing, but pad was EOS");
4240 pad->ABI.abi.last_flowret = GST_FLOW_EOS;
4241 GST_OBJECT_UNLOCK (pad);
4242 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4243 return GST_FLOW_EOS;
4247 g_critical ("pushing on pad %s:%s but it was not activated in push mode",
4248 GST_DEBUG_PAD_NAME (pad));
4249 pad->ABI.abi.last_flowret = GST_FLOW_ERROR;
4250 GST_OBJECT_UNLOCK (pad);
4251 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4252 return GST_FLOW_ERROR;
4256 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4257 "error pushing events, return %s", gst_flow_get_name (ret));
4258 pad->ABI.abi.last_flowret = ret;
4259 GST_OBJECT_UNLOCK (pad);
4260 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4265 GST_OBJECT_UNLOCK (pad);
4266 pad->ABI.abi.last_flowret =
4267 ret == GST_FLOW_CUSTOM_SUCCESS ? GST_FLOW_OK : ret;
4268 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4271 case GST_FLOW_CUSTOM_SUCCESS:
4272 GST_DEBUG_OBJECT (pad, "dropped buffer");
4276 GST_DEBUG_OBJECT (pad, "an error occurred %s", gst_flow_get_name (ret));
4283 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4284 "pushing, but it was not linked");
4285 pad->ABI.abi.last_flowret = GST_FLOW_NOT_LINKED;
4286 GST_OBJECT_UNLOCK (pad);
4287 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
4288 return GST_FLOW_NOT_LINKED;
4294 * @pad: a source #GstPad, returns #GST_FLOW_ERROR if not.
4295 * @buffer: (transfer full): the #GstBuffer to push returns GST_FLOW_ERROR
4298 * Pushes a buffer to the peer of @pad.
4300 * This function will call installed block probes before triggering any
4301 * installed data probes.
4303 * The function proceeds calling gst_pad_chain() on the peer pad and returns
4304 * the value from that function. If @pad has no peer, #GST_FLOW_NOT_LINKED will
4307 * In all cases, success or failure, the caller loses its reference to @buffer
4308 * after calling this function.
4310 * Returns: a #GstFlowReturn from the peer pad.
4315 gst_pad_push (GstPad * pad, GstBuffer * buffer)
4317 g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
4318 g_return_val_if_fail (GST_PAD_IS_SRC (pad), GST_FLOW_ERROR);
4319 g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
4321 return gst_pad_push_data (pad,
4322 GST_PAD_PROBE_TYPE_BUFFER | GST_PAD_PROBE_TYPE_PUSH, buffer);
4326 * gst_pad_push_list:
4327 * @pad: a source #GstPad, returns #GST_FLOW_ERROR if not.
4328 * @list: (transfer full): the #GstBufferList to push returns GST_FLOW_ERROR
4331 * Pushes a buffer list to the peer of @pad.
4333 * This function will call installed block probes before triggering any
4334 * installed data probes.
4336 * The function proceeds calling the chain function on the peer pad and returns
4337 * the value from that function. If @pad has no peer, #GST_FLOW_NOT_LINKED will
4338 * be returned. If the peer pad does not have any installed chainlist function
4339 * every group buffer of the list will be merged into a normal #GstBuffer and
4340 * chained via gst_pad_chain().
4342 * In all cases, success or failure, the caller loses its reference to @list
4343 * after calling this function.
4345 * Returns: a #GstFlowReturn from the peer pad.
4350 gst_pad_push_list (GstPad * pad, GstBufferList * list)
4352 g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
4353 g_return_val_if_fail (GST_PAD_IS_SRC (pad), GST_FLOW_ERROR);
4354 g_return_val_if_fail (GST_IS_BUFFER_LIST (list), GST_FLOW_ERROR);
4356 return gst_pad_push_data (pad,
4357 GST_PAD_PROBE_TYPE_BUFFER_LIST | GST_PAD_PROBE_TYPE_PUSH, list);
4360 static GstFlowReturn
4361 gst_pad_get_range_unchecked (GstPad * pad, guint64 offset, guint size,
4362 GstBuffer ** buffer)
4365 GstPadGetRangeFunction getrangefunc;
4369 GST_PAD_STREAM_LOCK (pad);
4371 GST_OBJECT_LOCK (pad);
4372 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
4375 if (G_UNLIKELY (GST_PAD_MODE (pad) != GST_PAD_MODE_PULL))
4378 if (G_UNLIKELY ((ret = check_sticky (pad, NULL))) != GST_FLOW_OK)
4383 /* when one of the probes returns DROPPED, probe_stopped will be called
4384 * and we skip calling the getrange function, res_buf should then contain a
4385 * valid result buffer */
4386 PROBE_PULL (pad, GST_PAD_PROBE_TYPE_PULL | GST_PAD_PROBE_TYPE_BLOCK,
4387 res_buf, offset, size, probe_stopped);
4389 /* recheck sticky events because the probe might have cause a relink */
4390 if (G_UNLIKELY ((ret = check_sticky (pad, NULL))) != GST_FLOW_OK)
4393 ACQUIRE_PARENT (pad, parent, no_parent);
4394 GST_OBJECT_UNLOCK (pad);
4396 if (G_UNLIKELY ((getrangefunc = GST_PAD_GETRANGEFUNC (pad)) == NULL))
4399 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4400 "calling getrangefunc %s, offset %"
4401 G_GUINT64_FORMAT ", size %u",
4402 GST_DEBUG_FUNCPTR_NAME (getrangefunc), offset, size);
4404 ret = getrangefunc (pad, parent, offset, size, &res_buf);
4406 RELEASE_PARENT (parent);
4408 GST_OBJECT_LOCK (pad);
4409 if (G_UNLIKELY (ret != GST_FLOW_OK))
4410 goto get_range_failed;
4412 /* can only fire the signal if we have a valid buffer */
4414 PROBE_PULL (pad, GST_PAD_PROBE_TYPE_PULL | GST_PAD_PROBE_TYPE_BUFFER,
4415 res_buf, offset, size, probe_stopped_unref);
4416 pad->ABI.abi.last_flowret = ret;
4417 GST_OBJECT_UNLOCK (pad);
4419 GST_PAD_STREAM_UNLOCK (pad);
4428 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4429 "getrange, but pad was flushing");
4430 pad->ABI.abi.last_flowret = GST_FLOW_FLUSHING;
4431 GST_OBJECT_UNLOCK (pad);
4432 GST_PAD_STREAM_UNLOCK (pad);
4433 return GST_FLOW_FLUSHING;
4437 g_critical ("getrange on pad %s:%s but it was not activated in pull mode",
4438 GST_DEBUG_PAD_NAME (pad));
4439 pad->ABI.abi.last_flowret = GST_FLOW_ERROR;
4440 GST_OBJECT_UNLOCK (pad);
4441 GST_PAD_STREAM_UNLOCK (pad);
4442 return GST_FLOW_ERROR;
4446 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "error pushing events");
4447 pad->ABI.abi.last_flowret = ret;
4448 GST_OBJECT_UNLOCK (pad);
4449 GST_PAD_STREAM_UNLOCK (pad);
4454 GST_DEBUG_OBJECT (pad, "no parent");
4455 pad->ABI.abi.last_flowret = GST_FLOW_FLUSHING;
4456 GST_OBJECT_UNLOCK (pad);
4457 GST_PAD_STREAM_UNLOCK (pad);
4458 return GST_FLOW_FLUSHING;
4462 g_critical ("getrange on pad %s:%s but it has no getrangefunction",
4463 GST_DEBUG_PAD_NAME (pad));
4464 RELEASE_PARENT (parent);
4465 GST_PAD_STREAM_UNLOCK (pad);
4466 return GST_FLOW_NOT_SUPPORTED;
4470 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4471 "probe returned %s", gst_flow_get_name (ret));
4472 if (ret == GST_FLOW_CUSTOM_SUCCESS) {
4474 /* the probe filled the buffer and asks us to not call the getrange
4475 * anymore, we continue with the post probes then. */
4476 GST_DEBUG_OBJECT (pad, "handled buffer");
4480 /* no buffer, we are EOS */
4481 GST_DEBUG_OBJECT (pad, "no buffer, return EOS");
4485 pad->ABI.abi.last_flowret = ret;
4486 GST_OBJECT_UNLOCK (pad);
4487 GST_PAD_STREAM_UNLOCK (pad);
4491 probe_stopped_unref:
4493 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4494 "probe returned %s", gst_flow_get_name (ret));
4495 /* if we drop here, it signals EOS */
4496 if (ret == GST_FLOW_CUSTOM_SUCCESS)
4498 pad->ABI.abi.last_flowret = ret;
4499 GST_OBJECT_UNLOCK (pad);
4500 GST_PAD_STREAM_UNLOCK (pad);
4501 if (*buffer == NULL)
4502 gst_buffer_unref (res_buf);
4507 pad->ABI.abi.last_flowret = ret;
4508 GST_OBJECT_UNLOCK (pad);
4509 GST_PAD_STREAM_UNLOCK (pad);
4510 GST_CAT_LEVEL_LOG (GST_CAT_SCHEDULING,
4511 (ret >= GST_FLOW_EOS) ? GST_LEVEL_INFO : GST_LEVEL_WARNING,
4512 pad, "getrange failed, flow: %s", gst_flow_get_name (ret));
4518 * gst_pad_get_range:
4519 * @pad: a src #GstPad, returns #GST_FLOW_ERROR if not.
4520 * @offset: The start offset of the buffer
4521 * @size: The length of the buffer
4522 * @buffer: (out callee-allocates): a pointer to hold the #GstBuffer,
4523 * returns #GST_FLOW_ERROR if %NULL.
4525 * When @pad is flushing this function returns #GST_FLOW_FLUSHING
4526 * immediately and @buffer is %NULL.
4528 * Calls the getrange function of @pad, see #GstPadGetRangeFunction for a
4529 * description of a getrange function. If @pad has no getrange function
4530 * installed (see gst_pad_set_getrange_function()) this function returns
4531 * #GST_FLOW_NOT_SUPPORTED.
4533 * If @buffer points to a variable holding %NULL, a valid new #GstBuffer will be
4534 * placed in @buffer when this function returns #GST_FLOW_OK. The new buffer
4535 * must be freed with gst_buffer_unref() after usage.
4537 * When @buffer points to a variable that points to a valid #GstBuffer, the
4538 * buffer will be filled with the result data when this function returns
4539 * #GST_FLOW_OK. If the provided buffer is larger than @size, only
4540 * @size bytes will be filled in the result buffer and its size will be updated
4543 * Note that less than @size bytes can be returned in @buffer when, for example,
4544 * an EOS condition is near or when @buffer is not large enough to hold @size
4545 * bytes. The caller should check the result buffer size to get the result size.
4547 * When this function returns any other result value than #GST_FLOW_OK, @buffer
4548 * will be unchanged.
4550 * This is a lowlevel function. Usually gst_pad_pull_range() is used.
4552 * Returns: a #GstFlowReturn from the pad.
4557 gst_pad_get_range (GstPad * pad, guint64 offset, guint size,
4558 GstBuffer ** buffer)
4560 g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
4561 g_return_val_if_fail (GST_PAD_IS_SRC (pad), GST_FLOW_ERROR);
4562 g_return_val_if_fail (buffer != NULL, GST_FLOW_ERROR);
4563 g_return_val_if_fail (*buffer == NULL || (GST_IS_BUFFER (*buffer)
4564 && gst_buffer_get_size (*buffer) >= size), GST_FLOW_ERROR);
4566 return gst_pad_get_range_unchecked (pad, offset, size, buffer);
4570 * gst_pad_pull_range:
4571 * @pad: a sink #GstPad, returns GST_FLOW_ERROR if not.
4572 * @offset: The start offset of the buffer
4573 * @size: The length of the buffer
4574 * @buffer: (out callee-allocates): a pointer to hold the #GstBuffer, returns
4575 * GST_FLOW_ERROR if %NULL.
4577 * Pulls a @buffer from the peer pad or fills up a provided buffer.
4579 * This function will first trigger the pad block signal if it was
4582 * When @pad is not linked #GST_FLOW_NOT_LINKED is returned else this
4583 * function returns the result of gst_pad_get_range() on the peer pad.
4584 * See gst_pad_get_range() for a list of return values and for the
4585 * semantics of the arguments of this function.
4587 * If @buffer points to a variable holding %NULL, a valid new #GstBuffer will be
4588 * placed in @buffer when this function returns #GST_FLOW_OK. The new buffer
4589 * must be freed with gst_buffer_unref() after usage. When this function
4590 * returns any other result value, @buffer will still point to %NULL.
4592 * When @buffer points to a variable that points to a valid #GstBuffer, the
4593 * buffer will be filled with the result data when this function returns
4594 * #GST_FLOW_OK. When this function returns any other result value,
4595 * @buffer will be unchanged. If the provided buffer is larger than @size, only
4596 * @size bytes will be filled in the result buffer and its size will be updated
4599 * Note that less than @size bytes can be returned in @buffer when, for example,
4600 * an EOS condition is near or when @buffer is not large enough to hold @size
4601 * bytes. The caller should check the result buffer size to get the result size.
4603 * Returns: a #GstFlowReturn from the peer pad.
4608 gst_pad_pull_range (GstPad * pad, guint64 offset, guint size,
4609 GstBuffer ** buffer)
4615 g_return_val_if_fail (GST_IS_PAD (pad), GST_FLOW_ERROR);
4616 g_return_val_if_fail (GST_PAD_IS_SINK (pad), GST_FLOW_ERROR);
4617 g_return_val_if_fail (buffer != NULL, GST_FLOW_ERROR);
4618 g_return_val_if_fail (*buffer == NULL || (GST_IS_BUFFER (*buffer)
4619 && gst_buffer_get_size (*buffer) >= size), GST_FLOW_ERROR);
4621 GST_OBJECT_LOCK (pad);
4622 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
4625 if (G_UNLIKELY (GST_PAD_MODE (pad) != GST_PAD_MODE_PULL))
4630 /* when one of the probes returns DROPPED, probe_stopped will be
4631 * called and we skip calling the peer getrange function. *buffer should then
4632 * contain a valid buffer */
4633 PROBE_PULL (pad, GST_PAD_PROBE_TYPE_PULL | GST_PAD_PROBE_TYPE_BLOCK,
4634 res_buf, offset, size, probe_stopped);
4636 if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
4639 gst_object_ref (peer);
4641 GST_OBJECT_UNLOCK (pad);
4643 ret = gst_pad_get_range_unchecked (peer, offset, size, &res_buf);
4645 gst_object_unref (peer);
4647 GST_OBJECT_LOCK (pad);
4649 pad->ABI.abi.last_flowret = ret;
4650 if (pad->priv->using == 0) {
4651 /* pad is not active anymore, trigger idle callbacks */
4652 PROBE_NO_DATA (pad, GST_PAD_PROBE_TYPE_PULL | GST_PAD_PROBE_TYPE_IDLE,
4653 probe_stopped_unref, ret);
4656 if (G_UNLIKELY (ret != GST_FLOW_OK))
4657 goto pull_range_failed;
4660 PROBE_PULL (pad, GST_PAD_PROBE_TYPE_PULL | GST_PAD_PROBE_TYPE_BUFFER,
4661 res_buf, offset, size, probe_stopped_unref);
4663 GST_OBJECT_UNLOCK (pad);
4669 /* ERROR recovery here */
4672 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4673 "pullrange, but pad was flushing");
4674 pad->ABI.abi.last_flowret = GST_FLOW_FLUSHING;
4675 GST_OBJECT_UNLOCK (pad);
4676 return GST_FLOW_FLUSHING;
4680 g_critical ("pullrange on pad %s:%s but it was not activated in pull mode",
4681 GST_DEBUG_PAD_NAME (pad));
4682 pad->ABI.abi.last_flowret = GST_FLOW_ERROR;
4683 GST_OBJECT_UNLOCK (pad);
4684 return GST_FLOW_ERROR;
4688 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad, "pre probe returned %s",
4689 gst_flow_get_name (ret));
4690 if (ret == GST_FLOW_CUSTOM_SUCCESS) {
4692 /* the probe filled the buffer and asks us to not forward to the peer
4693 * anymore, we continue with the post probes then */
4694 GST_DEBUG_OBJECT (pad, "handled buffer");
4698 /* no buffer, we are EOS then */
4699 GST_DEBUG_OBJECT (pad, "no buffer, return EOS");
4703 pad->ABI.abi.last_flowret = ret;
4704 GST_OBJECT_UNLOCK (pad);
4709 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4710 "pulling range, but it was not linked");
4711 pad->ABI.abi.last_flowret = GST_FLOW_NOT_LINKED;
4712 GST_OBJECT_UNLOCK (pad);
4713 return GST_FLOW_NOT_LINKED;
4717 pad->ABI.abi.last_flowret = ret;
4718 GST_OBJECT_UNLOCK (pad);
4719 GST_CAT_LEVEL_LOG (GST_CAT_SCHEDULING,
4720 (ret >= GST_FLOW_EOS) ? GST_LEVEL_INFO : GST_LEVEL_WARNING,
4721 pad, "pullrange failed, flow: %s", gst_flow_get_name (ret));
4724 probe_stopped_unref:
4726 GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
4727 "post probe returned %s", gst_flow_get_name (ret));
4729 /* if we drop here, it signals EOS */
4730 if (ret == GST_FLOW_CUSTOM_SUCCESS)
4733 pad->ABI.abi.last_flowret = ret;
4734 GST_OBJECT_UNLOCK (pad);
4736 if (*buffer == NULL)
4737 gst_buffer_unref (res_buf);
4742 /* must be called with pad object lock */
4743 static GstFlowReturn
4744 store_sticky_event (GstPad * pad, GstEvent * event)
4749 gboolean res = FALSE;
4750 const gchar *name = NULL;
4751 gboolean insert = TRUE;
4753 type = GST_EVENT_TYPE (event);
4755 /* Store all sticky events except SEGMENT/EOS when we're flushing,
4756 * otherwise they can be dropped and nothing would ever resend them.
4757 * Only do that for activated pads though, everything else is a bug!
4759 if (G_UNLIKELY (GST_PAD_MODE (pad) == GST_PAD_MODE_NONE
4760 || (GST_PAD_IS_FLUSHING (pad) && (type == GST_EVENT_SEGMENT
4761 || type == GST_EVENT_EOS))))
4764 if (G_UNLIKELY (GST_PAD_IS_EOS (pad)))
4767 if (type & GST_EVENT_TYPE_STICKY_MULTI)
4768 name = gst_structure_get_name (gst_event_get_structure (event));
4770 events = pad->priv->events;
4773 for (i = 0; i < len; i++) {
4774 PadEvent *ev = &g_array_index (events, PadEvent, i);
4776 if (ev->event == NULL)
4779 if (type == GST_EVENT_TYPE (ev->event)) {
4780 /* matching types, check matching name if needed */
4781 if (name && !gst_event_has_name (ev->event, name))
4785 if ((res = gst_event_replace (&ev->event, event)))
4786 ev->received = FALSE;
4792 if (type < GST_EVENT_TYPE (ev->event) || (type != GST_EVENT_TYPE (ev->event)
4793 && GST_EVENT_TYPE (ev->event) == GST_EVENT_EOS)) {
4794 /* STREAM_START, CAPS and SEGMENT must be delivered in this order. By
4795 * storing the sticky ordered we can check that this is respected. */
4796 if (G_UNLIKELY (GST_EVENT_TYPE (ev->event) <= GST_EVENT_SEGMENT
4797 || GST_EVENT_TYPE (ev->event) == GST_EVENT_EOS))
4799 ":%s:<%s:%s> Sticky event misordering, got '%s' before '%s'",
4800 G_STRFUNC, GST_DEBUG_PAD_NAME (pad),
4801 gst_event_type_get_name (GST_EVENT_TYPE (ev->event)),
4802 gst_event_type_get_name (type));
4808 ev.event = gst_event_ref (event);
4809 ev.received = FALSE;
4810 g_array_insert_val (events, i, ev);
4815 pad->priv->events_cookie++;
4816 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
4818 GST_LOG_OBJECT (pad, "stored sticky event %s", GST_EVENT_TYPE_NAME (event));
4820 switch (GST_EVENT_TYPE (event)) {
4821 case GST_EVENT_CAPS:
4822 GST_OBJECT_UNLOCK (pad);
4824 GST_DEBUG_OBJECT (pad, "notify caps");
4825 g_object_notify_by_pspec ((GObject *) pad, pspec_caps);
4827 GST_OBJECT_LOCK (pad);
4833 if (type == GST_EVENT_EOS) {
4834 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_EOS);
4835 pad->ABI.abi.last_flowret = GST_FLOW_EOS;
4838 return GST_PAD_IS_FLUSHING (pad) ? GST_FLOW_FLUSHING : GST_FLOW_OK;
4843 GST_DEBUG_OBJECT (pad, "pad is flushing");
4844 return GST_FLOW_FLUSHING;
4848 GST_DEBUG_OBJECT (pad, "pad is EOS");
4849 return GST_FLOW_EOS;
4854 * gst_pad_store_sticky_event:
4856 * @event: a #GstEvent
4858 * Store the sticky @event on @pad
4860 * Returns: #GST_FLOW_OK on success, #GST_FLOW_FLUSHING when the pad
4861 * was flushing or #GST_FLOW_EOS when the pad was EOS.
4866 gst_pad_store_sticky_event (GstPad * pad, GstEvent * event)
4870 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
4871 g_return_val_if_fail (GST_IS_EVENT (event), FALSE);
4873 GST_OBJECT_LOCK (pad);
4874 ret = store_sticky_event (pad, event);
4875 GST_OBJECT_UNLOCK (pad);
4881 sticky_changed (GstPad * pad, PadEvent * ev, gpointer user_data)
4883 PushStickyData *data = user_data;
4885 /* Forward all sticky events before our current one that are pending */
4886 if (ev->event != data->event
4887 && GST_EVENT_TYPE (ev->event) < GST_EVENT_TYPE (data->event))
4888 return push_sticky (pad, ev, data);
4893 /* should be called with pad LOCK */
4894 static GstFlowReturn
4895 gst_pad_push_event_unchecked (GstPad * pad, GstEvent * event,
4896 GstPadProbeType type)
4900 GstEventType event_type;
4902 /* pass the adjusted event on. We need to do this even if
4903 * there is no peer pad because of the probes. */
4904 event = apply_pad_offset (pad, event, GST_PAD_IS_SINK (pad));
4906 /* Two checks to be made:
4907 * . (un)set the FLUSHING flag for flushing events,
4908 * . handle pad blocking */
4909 event_type = GST_EVENT_TYPE (event);
4910 switch (event_type) {
4911 case GST_EVENT_FLUSH_START:
4912 GST_PAD_SET_FLUSHING (pad);
4914 GST_PAD_BLOCK_BROADCAST (pad);
4915 type |= GST_PAD_PROBE_TYPE_EVENT_FLUSH;
4917 case GST_EVENT_FLUSH_STOP:
4918 if (G_UNLIKELY (!GST_PAD_IS_ACTIVE (pad)))
4921 GST_PAD_UNSET_FLUSHING (pad);
4923 /* Remove sticky EOS events */
4924 GST_LOG_OBJECT (pad, "Removing pending EOS events");
4925 remove_event_by_type (pad, GST_EVENT_EOS);
4926 remove_event_by_type (pad, GST_EVENT_SEGMENT);
4927 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_EOS);
4928 pad->ABI.abi.last_flowret = GST_FLOW_OK;
4930 type |= GST_PAD_PROBE_TYPE_EVENT_FLUSH;
4934 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
4937 /* No need to check for EOS here as either the caller (gst_pad_push_event())
4938 * checked already or this is called as part of pushing sticky events,
4939 * in which case we still want to forward the EOS event downstream.
4942 switch (GST_EVENT_TYPE (event)) {
4943 case GST_EVENT_RECONFIGURE:
4944 if (GST_PAD_IS_SINK (pad))
4945 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_NEED_RECONFIGURE);
4950 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH |
4951 GST_PAD_PROBE_TYPE_BLOCK, event, probe_stopped);
4956 /* send probes after modifying the events above */
4957 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH, event, probe_stopped);
4959 /* recheck sticky events because the probe might have cause a relink */
4960 if (GST_PAD_HAS_PENDING_EVENTS (pad) && GST_PAD_IS_SRC (pad)
4961 && (GST_EVENT_IS_SERIALIZED (event)
4962 || GST_EVENT_IS_STICKY (event))) {
4963 PushStickyData data = { GST_FLOW_OK, FALSE, event };
4964 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_PENDING_EVENTS);
4966 /* Push all sticky events before our current one
4967 * that have changed */
4968 events_foreach (pad, sticky_changed, &data);
4971 /* now check the peer pad */
4972 peerpad = GST_PAD_PEER (pad);
4973 if (peerpad == NULL)
4976 gst_object_ref (peerpad);
4978 GST_OBJECT_UNLOCK (pad);
4980 GST_LOG_OBJECT (pad, "sending event %p (%s) to peerpad %" GST_PTR_FORMAT,
4981 event, gst_event_type_get_name (event_type), peerpad);
4983 ret = gst_pad_send_event_unchecked (peerpad, event, type);
4985 /* Note: we gave away ownership of the event at this point but we can still
4986 * print the old pointer */
4987 GST_LOG_OBJECT (pad,
4988 "sent event %p (%s) to peerpad %" GST_PTR_FORMAT ", ret %s", event,
4989 gst_event_type_get_name (event_type), peerpad, gst_flow_get_name (ret));
4991 gst_object_unref (peerpad);
4993 GST_OBJECT_LOCK (pad);
4995 if (pad->priv->using == 0) {
4996 /* pad is not active anymore, trigger idle callbacks */
4997 PROBE_NO_DATA (pad, GST_PAD_PROBE_TYPE_PUSH | GST_PAD_PROBE_TYPE_IDLE,
4998 idle_probe_stopped, ret);
5002 /* ERROR handling */
5005 GST_DEBUG_OBJECT (pad, "We're flushing");
5006 gst_event_unref (event);
5007 return GST_FLOW_FLUSHING;
5011 GST_DEBUG_OBJECT (pad, "flush-stop on inactive pad");
5012 gst_event_unref (event);
5013 return GST_FLOW_FLUSHING;
5017 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
5018 gst_event_unref (event);
5021 case GST_FLOW_CUSTOM_SUCCESS:
5022 GST_DEBUG_OBJECT (pad, "dropped event");
5025 GST_DEBUG_OBJECT (pad, "an error occurred %s", gst_flow_get_name (ret));
5032 GST_DEBUG_OBJECT (pad, "Dropping event %s because pad is not linked",
5033 gst_event_type_get_name (GST_EVENT_TYPE (event)));
5034 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PENDING_EVENTS);
5035 gst_event_unref (event);
5037 /* unlinked pads should not influence latency configuration */
5038 if (event_type == GST_EVENT_LATENCY)
5041 return GST_FLOW_NOT_LINKED;
5045 GST_DEBUG_OBJECT (pad, "Idle probe returned %s", gst_flow_get_name (ret));
5051 * gst_pad_push_event:
5052 * @pad: a #GstPad to push the event to.
5053 * @event: (transfer full): the #GstEvent to send to the pad.
5055 * Sends the event to the peer of the given pad. This function is
5056 * mainly used by elements to send events to their peer
5059 * This function takes ownership of the provided event so you should
5060 * gst_event_ref() it if you want to reuse the event after this call.
5062 * Returns: %TRUE if the event was handled.
5067 gst_pad_push_event (GstPad * pad, GstEvent * event)
5069 gboolean res = FALSE;
5070 GstPadProbeType type;
5071 gboolean sticky, serialized;
5073 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
5074 g_return_val_if_fail (GST_IS_EVENT (event), FALSE);
5076 if (GST_PAD_IS_SRC (pad)) {
5077 if (G_UNLIKELY (!GST_EVENT_IS_DOWNSTREAM (event)))
5078 goto wrong_direction;
5079 type = GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM;
5080 } else if (GST_PAD_IS_SINK (pad)) {
5081 if (G_UNLIKELY (!GST_EVENT_IS_UPSTREAM (event)))
5082 goto wrong_direction;
5083 /* events pushed on sinkpad never are sticky */
5084 type = GST_PAD_PROBE_TYPE_EVENT_UPSTREAM;
5086 goto unknown_direction;
5088 GST_OBJECT_LOCK (pad);
5089 sticky = GST_EVENT_IS_STICKY (event);
5090 serialized = GST_EVENT_IS_SERIALIZED (event);
5093 /* srcpad sticky events are stored immediately, the received flag is set
5094 * to FALSE and will be set to TRUE when we can successfully push the
5095 * event to the peer pad */
5096 switch (store_sticky_event (pad, event)) {
5097 case GST_FLOW_FLUSHING:
5105 if (GST_PAD_IS_SRC (pad) && (serialized || sticky)) {
5106 /* all serialized or sticky events on the srcpad trigger push of
5108 res = (check_sticky (pad, event) == GST_FLOW_OK);
5113 /* other events are pushed right away */
5114 ret = gst_pad_push_event_unchecked (pad, event, type);
5115 /* dropped events by a probe are not an error */
5116 res = (ret == GST_FLOW_OK || ret == GST_FLOW_CUSTOM_SUCCESS);
5118 /* Errors in sticky event pushing are no problem and ignored here
5119 * as they will cause more meaningful errors during data flow.
5120 * For EOS events, that are not followed by data flow, we still
5121 * return FALSE here though.
5123 if (GST_EVENT_TYPE (event) != GST_EVENT_EOS)
5125 gst_event_unref (event);
5127 GST_OBJECT_UNLOCK (pad);
5131 /* ERROR handling */
5134 g_warning ("pad %s:%s pushing %s event in wrong direction",
5135 GST_DEBUG_PAD_NAME (pad), GST_EVENT_TYPE_NAME (event));
5136 gst_event_unref (event);
5141 g_warning ("pad %s:%s has invalid direction", GST_DEBUG_PAD_NAME (pad));
5142 gst_event_unref (event);
5147 GST_DEBUG_OBJECT (pad, "We're flushing");
5148 GST_OBJECT_UNLOCK (pad);
5149 gst_event_unref (event);
5154 GST_DEBUG_OBJECT (pad, "We're EOS");
5155 GST_OBJECT_UNLOCK (pad);
5156 gst_event_unref (event);
5161 /* Check if we can call the event function with the given event */
5162 static GstFlowReturn
5163 pre_eventfunc_check (GstPad * pad, GstEvent * event)
5167 switch (GST_EVENT_TYPE (event)) {
5168 case GST_EVENT_CAPS:
5170 /* backwards compatibility mode for caps */
5171 gst_event_parse_caps (event, &caps);
5173 if (!gst_pad_query_accept_caps (pad, caps))
5185 GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
5186 "caps %" GST_PTR_FORMAT " not accepted", caps);
5187 return GST_FLOW_NOT_NEGOTIATED;
5191 static GstFlowReturn
5192 gst_pad_send_event_unchecked (GstPad * pad, GstEvent * event,
5193 GstPadProbeType type)
5196 GstEventType event_type;
5197 gboolean serialized, need_unlock = FALSE, sticky;
5198 GstPadEventFunction eventfunc;
5201 GST_OBJECT_LOCK (pad);
5203 event = apply_pad_offset (pad, event, GST_PAD_IS_SRC (pad));
5205 if (GST_PAD_IS_SINK (pad))
5206 serialized = GST_EVENT_IS_SERIALIZED (event);
5209 sticky = GST_EVENT_IS_STICKY (event);
5210 event_type = GST_EVENT_TYPE (event);
5211 switch (event_type) {
5212 case GST_EVENT_FLUSH_START:
5213 GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad,
5214 "have event type %d (FLUSH_START)", GST_EVENT_TYPE (event));
5216 /* can't even accept a flush begin event when flushing */
5217 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
5220 GST_PAD_SET_FLUSHING (pad);
5221 GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad, "set flush flag");
5223 case GST_EVENT_FLUSH_STOP:
5224 /* we can't accept flush-stop on inactive pads else the flushing flag
5225 * would be cleared and it would look like the pad can accept data.
5226 * Also, some elements restart a streaming thread in flush-stop which we
5227 * can't allow on inactive pads */
5228 if (G_UNLIKELY (!GST_PAD_IS_ACTIVE (pad)))
5231 GST_PAD_UNSET_FLUSHING (pad);
5232 GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad, "cleared flush flag");
5233 /* Remove pending EOS events */
5234 GST_LOG_OBJECT (pad, "Removing pending EOS and SEGMENT events");
5235 remove_event_by_type (pad, GST_EVENT_EOS);
5236 remove_event_by_type (pad, GST_EVENT_SEGMENT);
5237 GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_EOS);
5238 pad->ABI.abi.last_flowret = GST_FLOW_OK;
5240 GST_OBJECT_UNLOCK (pad);
5241 /* grab stream lock */
5242 GST_PAD_STREAM_LOCK (pad);
5244 GST_OBJECT_LOCK (pad);
5245 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
5248 case GST_EVENT_RECONFIGURE:
5249 if (GST_PAD_IS_SRC (pad))
5250 GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_NEED_RECONFIGURE);
5252 GST_CAT_DEBUG_OBJECT (GST_CAT_EVENT, pad,
5253 "have event type %" GST_PTR_FORMAT, event);
5255 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
5259 if (G_UNLIKELY (GST_PAD_IS_EOS (pad)))
5262 /* lock order: STREAM_LOCK, LOCK, recheck flushing. */
5263 GST_OBJECT_UNLOCK (pad);
5264 GST_PAD_STREAM_LOCK (pad);
5266 GST_OBJECT_LOCK (pad);
5267 if (G_UNLIKELY (GST_PAD_IS_FLUSHING (pad)))
5270 if (G_UNLIKELY (GST_PAD_IS_EOS (pad)))
5276 /* now do the probe */
5278 type | GST_PAD_PROBE_TYPE_PUSH |
5279 GST_PAD_PROBE_TYPE_BLOCK, event, probe_stopped);
5281 PROBE_PUSH (pad, type | GST_PAD_PROBE_TYPE_PUSH, event, probe_stopped);
5283 if (G_UNLIKELY ((eventfunc = GST_PAD_EVENTFUNC (pad)) == NULL))
5286 ACQUIRE_PARENT (pad, parent, no_parent);
5287 GST_OBJECT_UNLOCK (pad);
5289 ret = pre_eventfunc_check (pad, event);
5290 if (G_UNLIKELY (ret != GST_FLOW_OK))
5291 goto precheck_failed;
5294 gst_event_ref (event);
5296 if (eventfunc (pad, parent, event)) {
5299 /* something went wrong */
5300 switch (event_type) {
5301 case GST_EVENT_CAPS:
5302 ret = GST_FLOW_NOT_NEGOTIATED;
5305 ret = GST_FLOW_ERROR;
5309 RELEASE_PARENT (parent);
5311 GST_DEBUG_OBJECT (pad, "sent event, ret %s", gst_flow_get_name (ret));
5314 if (ret == GST_FLOW_OK) {
5315 GST_OBJECT_LOCK (pad);
5316 /* after the event function accepted the event, we can store the sticky
5317 * event on the pad */
5318 switch (store_sticky_event (pad, event)) {
5319 case GST_FLOW_FLUSHING:
5326 GST_OBJECT_UNLOCK (pad);
5328 gst_event_unref (event);
5332 GST_PAD_STREAM_UNLOCK (pad);
5336 /* ERROR handling */
5339 GST_OBJECT_UNLOCK (pad);
5341 GST_PAD_STREAM_UNLOCK (pad);
5342 GST_CAT_INFO_OBJECT (GST_CAT_EVENT, pad,
5343 "Received event on flushing pad. Discarding");
5344 gst_event_unref (event);
5345 return GST_FLOW_FLUSHING;
5349 GST_OBJECT_UNLOCK (pad);
5351 GST_PAD_STREAM_UNLOCK (pad);
5352 GST_CAT_INFO_OBJECT (GST_CAT_EVENT, pad,
5353 "Received flush-stop on inactive pad. Discarding");
5354 gst_event_unref (event);
5355 return GST_FLOW_FLUSHING;
5359 GST_OBJECT_UNLOCK (pad);
5361 GST_PAD_STREAM_UNLOCK (pad);
5362 GST_CAT_INFO_OBJECT (GST_CAT_EVENT, pad,
5363 "Received event on EOS pad. Discarding");
5364 gst_event_unref (event);
5365 return GST_FLOW_EOS;
5369 GST_OBJECT_UNLOCK (pad);
5371 GST_PAD_STREAM_UNLOCK (pad);
5372 gst_event_unref (event);
5375 case GST_FLOW_CUSTOM_SUCCESS:
5376 GST_DEBUG_OBJECT (pad, "dropped event");
5380 GST_DEBUG_OBJECT (pad, "an error occurred %s", gst_flow_get_name (ret));
5387 g_warning ("pad %s:%s has no event handler, file a bug.",
5388 GST_DEBUG_PAD_NAME (pad));
5389 GST_OBJECT_UNLOCK (pad);
5391 GST_PAD_STREAM_UNLOCK (pad);
5392 gst_event_unref (event);
5393 return GST_FLOW_NOT_SUPPORTED;
5397 GST_DEBUG_OBJECT (pad, "no parent");
5398 GST_OBJECT_UNLOCK (pad);
5400 GST_PAD_STREAM_UNLOCK (pad);
5401 gst_event_unref (event);
5402 return GST_FLOW_FLUSHING;
5406 GST_DEBUG_OBJECT (pad, "pre event check failed");
5407 RELEASE_PARENT (parent);
5409 GST_PAD_STREAM_UNLOCK (pad);
5410 gst_event_unref (event);
5416 * gst_pad_send_event:
5417 * @pad: a #GstPad to send the event to.
5418 * @event: (transfer full): the #GstEvent to send to the pad.
5420 * Sends the event to the pad. This function can be used
5421 * by applications to send events in the pipeline.
5423 * If @pad is a source pad, @event should be an upstream event. If @pad is a
5424 * sink pad, @event should be a downstream event. For example, you would not
5425 * send a #GST_EVENT_EOS on a src pad; EOS events only propagate downstream.
5426 * Furthermore, some downstream events have to be serialized with data flow,
5427 * like EOS, while some can travel out-of-band, like #GST_EVENT_FLUSH_START. If
5428 * the event needs to be serialized with data flow, this function will take the
5429 * pad's stream lock while calling its event function.
5431 * To find out whether an event type is upstream, downstream, or downstream and
5432 * serialized, see #GstEventTypeFlags, gst_event_type_get_flags(),
5433 * #GST_EVENT_IS_UPSTREAM, #GST_EVENT_IS_DOWNSTREAM, and
5434 * #GST_EVENT_IS_SERIALIZED. Note that in practice that an application or
5435 * plugin doesn't need to bother itself with this information; the core handles
5436 * all necessary locks and checks.
5438 * This function takes ownership of the provided event so you should
5439 * gst_event_ref() it if you want to reuse the event after this call.
5441 * Returns: %TRUE if the event was handled.
5444 gst_pad_send_event (GstPad * pad, GstEvent * event)
5447 GstPadProbeType type;
5449 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
5450 g_return_val_if_fail (event != NULL, FALSE);
5452 if (GST_PAD_IS_SINK (pad)) {
5453 if (G_UNLIKELY (!GST_EVENT_IS_DOWNSTREAM (event)))
5454 goto wrong_direction;
5455 type = GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM;
5456 } else if (GST_PAD_IS_SRC (pad)) {
5457 if (G_UNLIKELY (!GST_EVENT_IS_UPSTREAM (event)))
5458 goto wrong_direction;
5459 type = GST_PAD_PROBE_TYPE_EVENT_UPSTREAM;
5461 goto unknown_direction;
5463 if (gst_pad_send_event_unchecked (pad, event, type) != GST_FLOW_OK)
5470 /* ERROR handling */
5473 g_warning ("pad %s:%s sending %s event in wrong direction",
5474 GST_DEBUG_PAD_NAME (pad), GST_EVENT_TYPE_NAME (event));
5475 gst_event_unref (event);
5480 g_warning ("pad %s:%s has invalid direction", GST_DEBUG_PAD_NAME (pad));
5481 gst_event_unref (event);
5487 * gst_pad_set_element_private:
5488 * @pad: the #GstPad to set the private data of.
5489 * @priv: The private data to attach to the pad.
5491 * Set the given private data gpointer on the pad.
5492 * This function can only be used by the element that owns the pad.
5493 * No locking is performed in this function.
5496 gst_pad_set_element_private (GstPad * pad, gpointer priv)
5498 pad->element_private = priv;
5502 * gst_pad_get_element_private:
5503 * @pad: the #GstPad to get the private data of.
5505 * Gets the private data of a pad.
5506 * No locking is performed in this function.
5508 * Returns: (transfer none): a #gpointer to the private data.
5511 gst_pad_get_element_private (GstPad * pad)
5513 return pad->element_private;
5517 * gst_pad_get_sticky_event:
5518 * @pad: the #GstPad to get the event from.
5519 * @event_type: the #GstEventType that should be retrieved.
5520 * @idx: the index of the event
5522 * Returns a new reference of the sticky event of type @event_type
5525 * Returns: (transfer full) (nullable): a #GstEvent of type
5526 * @event_type or %NULL when no event of @event_type was on
5527 * @pad. Unref after usage.
5530 gst_pad_get_sticky_event (GstPad * pad, GstEventType event_type, guint idx)
5532 GstEvent *event = NULL;
5535 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
5536 g_return_val_if_fail ((event_type & GST_EVENT_TYPE_STICKY) != 0, NULL);
5538 GST_OBJECT_LOCK (pad);
5539 ev = find_event_by_type (pad, event_type, idx);
5540 if (ev && (event = ev->event))
5541 gst_event_ref (event);
5542 GST_OBJECT_UNLOCK (pad);
5549 GstPadStickyEventsForeachFunction func;
5554 foreach_dispatch_function (GstPad * pad, PadEvent * ev, gpointer user_data)
5556 ForeachDispatch *data = user_data;
5557 gboolean ret = TRUE;
5560 GST_OBJECT_UNLOCK (pad);
5562 ret = data->func (pad, &ev->event, data->user_data);
5564 GST_OBJECT_LOCK (pad);
5571 * gst_pad_sticky_events_foreach:
5572 * @pad: the #GstPad that should be used for iteration.
5573 * @foreach_func: (scope call): the #GstPadStickyEventsForeachFunction that
5574 * should be called for every event.
5575 * @user_data: (closure): the optional user data.
5577 * Iterates all sticky events on @pad and calls @foreach_func for every
5578 * event. If @foreach_func returns %FALSE the iteration is immediately stopped.
5581 gst_pad_sticky_events_foreach (GstPad * pad,
5582 GstPadStickyEventsForeachFunction foreach_func, gpointer user_data)
5584 ForeachDispatch data;
5586 g_return_if_fail (GST_IS_PAD (pad));
5587 g_return_if_fail (foreach_func != NULL);
5589 data.func = foreach_func;
5590 data.user_data = user_data;
5592 GST_OBJECT_LOCK (pad);
5593 events_foreach (pad, foreach_dispatch_function, &data);
5594 GST_OBJECT_UNLOCK (pad);
5598 do_stream_status (GstPad * pad, GstStreamStatusType type,
5599 GThread * thread, GstTask * task)
5603 GST_DEBUG_OBJECT (pad, "doing stream-status %d", type);
5605 if ((parent = GST_ELEMENT_CAST (gst_pad_get_parent (pad)))) {
5606 if (GST_IS_ELEMENT (parent)) {
5607 GstMessage *message;
5608 GValue value = { 0 };
5610 if (type == GST_STREAM_STATUS_TYPE_ENTER) {
5611 gchar *tname, *ename, *pname;
5613 /* create a good task name */
5614 ename = gst_element_get_name (parent);
5615 pname = gst_pad_get_name (pad);
5616 tname = g_strdup_printf ("%s:%s", ename, pname);
5620 gst_object_set_name (GST_OBJECT_CAST (task), tname);
5624 message = gst_message_new_stream_status (GST_OBJECT_CAST (pad),
5627 g_value_init (&value, GST_TYPE_TASK);
5628 g_value_set_object (&value, task);
5629 gst_message_set_stream_status_object (message, &value);
5630 g_value_unset (&value);
5632 GST_DEBUG_OBJECT (pad, "posting stream-status %d", type);
5633 gst_element_post_message (parent, message);
5635 gst_object_unref (parent);
5640 pad_enter_thread (GstTask * task, GThread * thread, gpointer user_data)
5642 do_stream_status (GST_PAD_CAST (user_data), GST_STREAM_STATUS_TYPE_ENTER,
5647 pad_leave_thread (GstTask * task, GThread * thread, gpointer user_data)
5649 do_stream_status (GST_PAD_CAST (user_data), GST_STREAM_STATUS_TYPE_LEAVE,
5654 * gst_pad_start_task:
5655 * @pad: the #GstPad to start the task of
5656 * @func: the task function to call
5657 * @user_data: user data passed to the task function
5658 * @notify: called when @user_data is no longer referenced
5660 * Starts a task that repeatedly calls @func with @user_data. This function
5661 * is mostly used in pad activation functions to start the dataflow.
5662 * The #GST_PAD_STREAM_LOCK of @pad will automatically be acquired
5663 * before @func is called.
5665 * Returns: a %TRUE if the task could be started.
5668 gst_pad_start_task (GstPad * pad, GstTaskFunction func, gpointer user_data,
5669 GDestroyNotify notify)
5674 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
5675 g_return_val_if_fail (func != NULL, FALSE);
5677 GST_DEBUG_OBJECT (pad, "start task");
5679 GST_OBJECT_LOCK (pad);
5680 task = GST_PAD_TASK (pad);
5682 task = gst_task_new (func, user_data, notify);
5683 gst_task_set_lock (task, GST_PAD_GET_STREAM_LOCK (pad));
5684 gst_task_set_enter_callback (task, pad_enter_thread, pad, NULL);
5685 gst_task_set_leave_callback (task, pad_leave_thread, pad, NULL);
5686 GST_INFO_OBJECT (pad, "created task %p", task);
5687 GST_PAD_TASK (pad) = task;
5688 gst_object_ref (task);
5689 /* release lock to post the message */
5690 GST_OBJECT_UNLOCK (pad);
5692 do_stream_status (pad, GST_STREAM_STATUS_TYPE_CREATE, NULL, task);
5694 gst_object_unref (task);
5696 GST_OBJECT_LOCK (pad);
5697 /* nobody else is supposed to have changed the pad now */
5698 if (GST_PAD_TASK (pad) != task)
5699 goto concurrent_stop;
5701 res = gst_task_set_state (task, GST_TASK_STARTED);
5702 GST_OBJECT_UNLOCK (pad);
5709 GST_OBJECT_UNLOCK (pad);
5715 * gst_pad_pause_task:
5716 * @pad: the #GstPad to pause the task of
5718 * Pause the task of @pad. This function will also wait until the
5719 * function executed by the task is finished if this function is not
5720 * called from the task function.
5722 * Returns: a %TRUE if the task could be paused or %FALSE when the pad
5726 gst_pad_pause_task (GstPad * pad)
5731 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
5733 GST_DEBUG_OBJECT (pad, "pause task");
5735 GST_OBJECT_LOCK (pad);
5736 task = GST_PAD_TASK (pad);
5739 res = gst_task_set_state (task, GST_TASK_PAUSED);
5740 GST_OBJECT_UNLOCK (pad);
5742 /* wait for task function to finish, this lock is recursive so it does nothing
5743 * when the pause is called from the task itself */
5744 GST_PAD_STREAM_LOCK (pad);
5745 GST_PAD_STREAM_UNLOCK (pad);
5751 GST_DEBUG_OBJECT (pad, "pad has no task");
5752 GST_OBJECT_UNLOCK (pad);
5758 * gst_pad_stop_task:
5759 * @pad: the #GstPad to stop the task of
5761 * Stop the task of @pad. This function will also make sure that the
5762 * function executed by the task will effectively stop if not called
5763 * from the GstTaskFunction.
5765 * This function will deadlock if called from the GstTaskFunction of
5766 * the task. Use gst_task_pause() instead.
5768 * Regardless of whether the pad has a task, the stream lock is acquired and
5769 * released so as to ensure that streaming through this pad has finished.
5771 * Returns: a %TRUE if the task could be stopped or %FALSE on error.
5774 gst_pad_stop_task (GstPad * pad)
5779 g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
5781 GST_DEBUG_OBJECT (pad, "stop task");
5783 GST_OBJECT_LOCK (pad);
5784 task = GST_PAD_TASK (pad);
5787 GST_PAD_TASK (pad) = NULL;
5788 res = gst_task_set_state (task, GST_TASK_STOPPED);
5789 GST_OBJECT_UNLOCK (pad);
5791 GST_PAD_STREAM_LOCK (pad);
5792 GST_PAD_STREAM_UNLOCK (pad);
5794 if (!gst_task_join (task))
5797 gst_object_unref (task);
5803 GST_DEBUG_OBJECT (pad, "no task");
5804 GST_OBJECT_UNLOCK (pad);
5806 GST_PAD_STREAM_LOCK (pad);
5807 GST_PAD_STREAM_UNLOCK (pad);
5809 /* this is not an error */
5814 /* this is bad, possibly the application tried to join the task from
5815 * the task's thread. We install the task again so that it will be stopped
5816 * again from the right thread next time hopefully. */
5817 GST_OBJECT_LOCK (pad);
5818 GST_DEBUG_OBJECT (pad, "join failed");
5819 /* we can only install this task if there was no other task */
5820 if (GST_PAD_TASK (pad) == NULL)
5821 GST_PAD_TASK (pad) = task;
5822 GST_OBJECT_UNLOCK (pad);
5829 * gst_pad_probe_info_get_event:
5830 * @info: a #GstPadProbeInfo
5832 * Returns: (transfer none): The #GstEvent from the probe
5836 gst_pad_probe_info_get_event (GstPadProbeInfo * info)
5838 g_return_val_if_fail (info->type & (GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM |
5839 GST_PAD_PROBE_TYPE_EVENT_UPSTREAM), NULL);
5841 return GST_PAD_PROBE_INFO_EVENT (info);
5846 * gst_pad_probe_info_get_query:
5847 * @info: a #GstPadProbeInfo
5849 * Returns: (transfer none): The #GstQuery from the probe
5853 gst_pad_probe_info_get_query (GstPadProbeInfo * info)
5855 g_return_val_if_fail (info->type & (GST_PAD_PROBE_TYPE_QUERY_DOWNSTREAM |
5856 GST_PAD_PROBE_TYPE_QUERY_UPSTREAM), NULL);
5858 return GST_PAD_PROBE_INFO_QUERY (info);
5862 * gst_pad_probe_info_get_buffer:
5863 * @info: a #GstPadProbeInfo
5865 * Returns: (transfer none): The #GstBuffer from the probe
5869 gst_pad_probe_info_get_buffer (GstPadProbeInfo * info)
5871 g_return_val_if_fail (info->type & GST_PAD_PROBE_TYPE_BUFFER, NULL);
5873 return GST_PAD_PROBE_INFO_BUFFER (info);
5877 * gst_pad_probe_info_get_bufferlist:
5878 * @info: a #GstPadProbeInfo
5880 * Returns: (transfer none): The #GstBufferlist from the probe
5884 gst_pad_probe_info_get_buffer_list (GstPadProbeInfo * info)
5886 g_return_val_if_fail (info->type & GST_PAD_PROBE_TYPE_BUFFER_LIST, NULL);
5888 return GST_PAD_PROBE_INFO_BUFFER_LIST (info);
5892 * gst_pad_get_last_flow_return:
5895 * Gets the #GstFlowReturn return from the last data passed by this pad.
5900 gst_pad_get_last_flow_return (GstPad * pad)
5904 GST_OBJECT_LOCK (pad);
5905 ret = GST_PAD_LAST_FLOW_RETURN (pad);
5906 GST_OBJECT_UNLOCK (pad);