2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wim.taymans@chello.be>
5 * gstpad.h: Header for GstPad object
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.
27 #include <gst/gstconfig.h>
29 typedef struct _GstPad GstPad;
30 typedef struct _GstPadPrivate GstPadPrivate;
31 typedef struct _GstPadClass GstPadClass;
32 typedef struct _GstPadProbeInfo GstPadProbeInfo;
36 * @GST_PAD_UNKNOWN: direction is unknown.
37 * @GST_PAD_SRC: the pad is a source pad.
38 * @GST_PAD_SINK: the pad is a sink pad.
40 * The direction of a pad.
50 * @GST_PAD_MODE_NONE: Pad will not handle dataflow
51 * @GST_PAD_MODE_PUSH: Pad handles dataflow in downstream push mode
52 * @GST_PAD_MODE_PULL: Pad handles dataflow in upstream pull mode
54 * The status of a GstPad. After activating a pad, which usually happens when the
55 * parent element goes from READY to PAUSED, the GstPadMode defines if the
56 * pad operates in push or pull mode.
66 const gchar * gst_pad_mode_get_name (GstPadMode mode);
68 #include <gst/gstobject.h>
69 #include <gst/gstbuffer.h>
70 #include <gst/gstbufferlist.h>
71 #include <gst/gstcaps.h>
72 #include <gst/gstpadtemplate.h>
73 #include <gst/gstevent.h>
74 #include <gst/gstquery.h>
75 #include <gst/gsttask.h>
82 #define GST_TYPE_PAD (gst_pad_get_type ())
83 #define GST_IS_PAD(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_PAD))
84 #define GST_IS_PAD_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_PAD))
85 #define GST_PAD(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_PAD, GstPad))
86 #define GST_PAD_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_PAD, GstPadClass))
87 #define GST_PAD_CAST(obj) ((GstPad*)(obj))
93 * @GST_PAD_LINK_OK : link succeeded
94 * @GST_PAD_LINK_WRONG_HIERARCHY: pads have no common grandparent
95 * @GST_PAD_LINK_WAS_LINKED : pad was already linked
96 * @GST_PAD_LINK_WRONG_DIRECTION: pads have wrong direction
97 * @GST_PAD_LINK_NOFORMAT : pads do not have common format
98 * @GST_PAD_LINK_NOSCHED : pads cannot cooperate in scheduling
99 * @GST_PAD_LINK_REFUSED : refused for some reason
101 * Result values from gst_pad_link and friends.
105 GST_PAD_LINK_WRONG_HIERARCHY = -1,
106 GST_PAD_LINK_WAS_LINKED = -2,
107 GST_PAD_LINK_WRONG_DIRECTION = -3,
108 GST_PAD_LINK_NOFORMAT = -4,
109 GST_PAD_LINK_NOSCHED = -5,
110 GST_PAD_LINK_REFUSED = -6
114 * GST_PAD_LINK_FAILED:
115 * @ret: the #GstPadLinkReturn value
117 * Macro to test if the given #GstPadLinkReturn value indicates a failed
120 #define GST_PAD_LINK_FAILED(ret) ((ret) < GST_PAD_LINK_OK)
123 * GST_PAD_LINK_SUCCESSFUL:
124 * @ret: the #GstPadLinkReturn value
126 * Macro to test if the given #GstPadLinkReturn value indicates a successful
129 #define GST_PAD_LINK_SUCCESSFUL(ret) ((ret) >= GST_PAD_LINK_OK)
133 * @GST_FLOW_OK: Data passing was ok.
134 * @GST_FLOW_NOT_LINKED: Pad is not linked.
135 * @GST_FLOW_FLUSHING: Pad is flushing.
136 * @GST_FLOW_EOS: Pad is EOS.
137 * @GST_FLOW_NOT_NEGOTIATED: Pad is not negotiated.
138 * @GST_FLOW_ERROR: Some (fatal) error occurred. Element generating
139 * this error should post an error message with more
141 * @GST_FLOW_NOT_SUPPORTED: This operation is not supported.
142 * @GST_FLOW_CUSTOM_SUCCESS: Elements can use values starting from
143 * this (and higher) to define custom success
145 * @GST_FLOW_CUSTOM_SUCCESS_1: Pre-defined custom success code (define your
146 * custom success code to this to avoid compiler
148 * @GST_FLOW_CUSTOM_SUCCESS_2: Pre-defined custom success code.
149 * @GST_FLOW_CUSTOM_ERROR: Elements can use values starting from
150 * this (and lower) to define custom error codes.
151 * @GST_FLOW_CUSTOM_ERROR_1: Pre-defined custom error code (define your
152 * custom error code to this to avoid compiler
154 * @GST_FLOW_CUSTOM_ERROR_2: Pre-defined custom error code.
156 * The result of passing data to a pad.
158 * Note that the custom return values should not be exposed outside of the
162 /* custom success starts here */
163 GST_FLOW_CUSTOM_SUCCESS_2 = 102,
164 GST_FLOW_CUSTOM_SUCCESS_1 = 101,
165 GST_FLOW_CUSTOM_SUCCESS = 100,
167 /* core predefined */
169 /* expected failures */
170 GST_FLOW_NOT_LINKED = -1,
171 GST_FLOW_FLUSHING = -2,
174 GST_FLOW_NOT_NEGOTIATED = -4,
176 GST_FLOW_NOT_SUPPORTED = -6,
178 /* custom error starts here */
179 GST_FLOW_CUSTOM_ERROR = -100,
180 GST_FLOW_CUSTOM_ERROR_1 = -101,
181 GST_FLOW_CUSTOM_ERROR_2 = -102
184 const gchar* gst_flow_get_name (GstFlowReturn ret);
185 GQuark gst_flow_to_quark (GstFlowReturn ret);
186 const gchar* gst_pad_link_get_name (GstPadLinkReturn ret);
190 * @GST_PAD_LINK_CHECK_NOTHING: Don't check hierarchy or caps compatibility.
191 * @GST_PAD_LINK_CHECK_HIERARCHY: Check the pads have same parents/grandparents.
192 * Could be omitted if it is already known that the two elements that own the
193 * pads are in the same bin.
194 * @GST_PAD_LINK_CHECK_TEMPLATE_CAPS: Check if the pads are compatible by using
195 * their template caps. This is much faster than @GST_PAD_LINK_CHECK_CAPS, but
196 * would be unsafe e.g. if one pad has %GST_CAPS_ANY.
197 * @GST_PAD_LINK_CHECK_CAPS: Check if the pads are compatible by comparing the
198 * caps returned by gst_pad_query_caps().
199 * @GST_PAD_LINK_CHECK_DEFAULT: The default checks done when linking
200 * pads (i.e. the ones used by gst_pad_link()).
202 * The amount of checking to be done when linking pads. @GST_PAD_LINK_CHECK_CAPS
203 * and @GST_PAD_LINK_CHECK_TEMPLATE_CAPS are mutually exclusive. If both are
204 * specified, expensive but safe @GST_PAD_LINK_CHECK_CAPS are performed.
207 * Only disable some of the checks if you are 100% certain you know the link
208 * will not fail because of hierarchy/caps compatibility failures. If uncertain,
209 * use the default checks (%GST_PAD_LINK_CHECK_DEFAULT) or the regular methods
210 * for linking the pads.
215 GST_PAD_LINK_CHECK_NOTHING = 0,
216 GST_PAD_LINK_CHECK_HIERARCHY = 1 << 0,
217 GST_PAD_LINK_CHECK_TEMPLATE_CAPS = 1 << 1,
218 GST_PAD_LINK_CHECK_CAPS = 1 << 2,
220 GST_PAD_LINK_CHECK_DEFAULT = GST_PAD_LINK_CHECK_HIERARCHY | GST_PAD_LINK_CHECK_CAPS
225 * GstPadActivateFunction:
227 * @parent: the parent of @pad
229 * This function is called when the pad is activated during the element
230 * READY to PAUSED state change. By default this function will call the
231 * activate function that puts the pad in push mode but elements can
232 * override this function to activate the pad in pull mode if they wish.
234 * Returns: %TRUE if the pad could be activated.
236 typedef gboolean (*GstPadActivateFunction) (GstPad *pad, GstObject *parent);
238 * GstPadActivateModeFunction:
240 * @parent: the parent of @pad
241 * @mode: the requested activation mode of @pad
242 * @active: activate or deactivate the pad.
244 * The prototype of the push and pull activate functions.
246 * Returns: %TRUE if the pad could be activated or deactivated.
248 typedef gboolean (*GstPadActivateModeFunction) (GstPad *pad, GstObject *parent,
249 GstPadMode mode, gboolean active);
254 * GstPadChainFunction:
255 * @pad: the sink #GstPad that performed the chain.
256 * @parent: (allow-none): the parent of @pad. If the #GST_PAD_FLAG_NEED_PARENT
257 * flag is set, @parent is guaranteed to be not-%NULL and remain valid
258 * during the execution of this function.
259 * @buffer: (transfer full): the #GstBuffer that is chained, not %NULL.
261 * A function that will be called on sinkpads when chaining buffers.
262 * The function typically processes the data contained in the buffer and
263 * either consumes the data or passes it on to the internally linked pad(s).
265 * The implementer of this function receives a refcount to @buffer and should
266 * gst_buffer_unref() when the buffer is no longer needed.
268 * When a chain function detects an error in the data stream, it must post an
269 * error on the bus and return an appropriate #GstFlowReturn value.
271 * Returns: #GST_FLOW_OK for success
273 typedef GstFlowReturn (*GstPadChainFunction) (GstPad *pad, GstObject *parent,
277 * GstPadChainListFunction:
278 * @pad: the sink #GstPad that performed the chain.
279 * @parent: (allow-none): the parent of @pad. If the #GST_PAD_FLAG_NEED_PARENT
280 * flag is set, @parent is guaranteed to be not-%NULL and remain valid
281 * during the execution of this function.
282 * @list: (transfer full): the #GstBufferList that is chained, not %NULL.
284 * A function that will be called on sinkpads when chaining buffer lists.
285 * The function typically processes the data contained in the buffer list and
286 * either consumes the data or passes it on to the internally linked pad(s).
288 * The implementer of this function receives a refcount to @list and
289 * should gst_buffer_list_unref() when the list is no longer needed.
291 * When a chainlist function detects an error in the data stream, it must
292 * post an error on the bus and return an appropriate #GstFlowReturn value.
294 * Returns: #GST_FLOW_OK for success
296 typedef GstFlowReturn (*GstPadChainListFunction) (GstPad *pad, GstObject *parent,
297 GstBufferList *list);
300 * GstPadGetRangeFunction:
301 * @pad: the src #GstPad to perform the getrange on.
302 * @parent: (allow-none): the parent of @pad. If the #GST_PAD_FLAG_NEED_PARENT
303 * flag is set, @parent is guaranteed to be not-%NULL and remain valid
304 * during the execution of this function.
305 * @offset: the offset of the range
306 * @length: the length of the range
307 * @buffer: a memory location to hold the result buffer, cannot be %NULL.
309 * This function will be called on source pads when a peer element
310 * request a buffer at the specified @offset and @length. If this function
311 * returns #GST_FLOW_OK, the result buffer will be stored in @buffer. The
312 * contents of @buffer is invalid for any other return value.
314 * This function is installed on a source pad with
315 * gst_pad_set_getrange_function() and can only be called on source pads after
316 * they are successfully activated with gst_pad_activate_mode() with the
317 * #GST_PAD_MODE_PULL.
319 * @offset and @length are always given in byte units. @offset must normally be a value
320 * between 0 and the length in bytes of the data available on @pad. The
321 * length (duration in bytes) can be retrieved with a #GST_QUERY_DURATION or with a
322 * #GST_QUERY_SEEKING.
324 * Any @offset larger or equal than the length will make the function return
325 * #GST_FLOW_EOS, which corresponds to EOS. In this case @buffer does not
326 * contain a valid buffer.
328 * The buffer size of @buffer will only be smaller than @length when @offset is
329 * near the end of the stream. In all other cases, the size of @buffer must be
330 * exactly the requested size.
332 * It is allowed to call this function with a 0 @length and valid @offset, in
333 * which case @buffer will contain a 0-sized buffer and the function returns
336 * When this function is called with a -1 @offset, the sequentially next buffer
337 * of length @length in the stream is returned.
339 * When this function is called with a -1 @length, a buffer with a default
340 * optimal length is returned in @buffer. The length might depend on the value
343 * Returns: #GST_FLOW_OK for success and a valid buffer in @buffer. Any other
344 * return value leaves @buffer undefined.
346 typedef GstFlowReturn (*GstPadGetRangeFunction) (GstPad *pad, GstObject *parent,
347 guint64 offset, guint length,
351 * GstPadEventFunction:
352 * @pad: the #GstPad to handle the event.
353 * @parent: (allow-none): the parent of @pad. If the #GST_PAD_FLAG_NEED_PARENT
354 * flag is set, @parent is guaranteed to be not-%NULL and remain valid
355 * during the execution of this function.
356 * @event: (transfer full): the #GstEvent to handle.
358 * Function signature to handle an event for the pad.
360 * Returns: %TRUE if the pad could handle the event.
362 typedef gboolean (*GstPadEventFunction) (GstPad *pad, GstObject *parent,
366 * GstPadEventFullFunction:
367 * @pad: the #GstPad to handle the event.
368 * @parent: (allow-none): the parent of @pad. If the #GST_PAD_FLAG_NEED_PARENT
369 * flag is set, @parent is guaranteed to be not-%NULL and remain valid
370 * during the execution of this function.
371 * @event: (transfer full): the #GstEvent to handle.
373 * Function signature to handle an event for the pad.
375 * This variant is for specific elements that will take into account the
376 * last downstream flow return (from a pad push), in which case they can
379 * Returns: %GST_FLOW_OK if the event was handled properly, or any other
380 * #GstFlowReturn dependent on downstream state.
384 typedef GstFlowReturn (*GstPadEventFullFunction) (GstPad *pad, GstObject *parent,
390 * GstPadIterIntLinkFunction:
391 * @pad: The #GstPad to query.
392 * @parent: (allow-none): the parent of @pad. If the #GST_PAD_FLAG_NEED_PARENT
393 * flag is set, @parent is guaranteed to be not-%NULL and remain valid
394 * during the execution of this function.
396 * The signature of the internal pad link iterator function.
398 * Returns: a new #GstIterator that will iterate over all pads that are
399 * linked to the given pad on the inside of the parent element.
401 * the caller must call gst_iterator_free() after usage.
403 typedef GstIterator* (*GstPadIterIntLinkFunction) (GstPad *pad, GstObject *parent);
405 /* generic query function */
407 * GstPadQueryFunction:
408 * @pad: the #GstPad to query.
409 * @parent: (allow-none): the parent of @pad. If the #GST_PAD_FLAG_NEED_PARENT
410 * flag is set, @parent is guaranteed to be not-%NULL and remain valid
411 * during the execution of this function.
412 * @query: the #GstQuery object to execute
414 * The signature of the query function.
416 * Returns: %TRUE if the query could be performed.
418 typedef gboolean (*GstPadQueryFunction) (GstPad *pad, GstObject *parent,
424 * GstPadLinkFunction:
425 * @pad: the #GstPad that is linked.
426 * @parent: (allow-none): the parent of @pad. If the #GST_PAD_FLAG_NEED_PARENT
427 * flag is set, @parent is guaranteed to be not-%NULL and remain valid
428 * during the execution of this function.
429 * @peer: the peer #GstPad of the link
431 * Function signature to handle a new link on the pad.
433 * Returns: the result of the link with the specified peer.
435 typedef GstPadLinkReturn (*GstPadLinkFunction) (GstPad *pad, GstObject *parent, GstPad *peer);
437 * GstPadUnlinkFunction:
438 * @pad: the #GstPad that is linked.
439 * @parent: (allow-none): the parent of @pad. If the #GST_PAD_FLAG_NEED_PARENT
440 * flag is set, @parent is guaranteed to be not-%NULL and remain valid
441 * during the execution of this function.
443 * Function signature to handle a unlinking the pad prom its peer.
445 typedef void (*GstPadUnlinkFunction) (GstPad *pad, GstObject *parent);
450 * GstPadForwardFunction:
451 * @pad: the #GstPad that is forwarded.
452 * @user_data: the gpointer to optional user data.
454 * A forward function is called for all internally linked pads, see
457 * Returns: %TRUE if the dispatching procedure has to be stopped.
459 typedef gboolean (*GstPadForwardFunction) (GstPad *pad, gpointer user_data);
463 * @GST_PAD_PROBE_TYPE_INVALID: invalid probe type
464 * @GST_PAD_PROBE_TYPE_IDLE: probe idle pads and block
465 * @GST_PAD_PROBE_TYPE_BLOCK: probe and block pads
466 * @GST_PAD_PROBE_TYPE_BUFFER: probe buffers
467 * @GST_PAD_PROBE_TYPE_BUFFER_LIST: probe buffer lists
468 * @GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM: probe downstream events
469 * @GST_PAD_PROBE_TYPE_EVENT_UPSTREAM: probe upstream events
470 * @GST_PAD_PROBE_TYPE_EVENT_FLUSH: probe flush events. This probe has to be
471 * explicitly enabled and is not included in the
472 * @@GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM or
473 * @@GST_PAD_PROBE_TYPE_EVENT_UPSTREAM probe types.
474 * @GST_PAD_PROBE_TYPE_QUERY_DOWNSTREAM: probe downstream queries
475 * @GST_PAD_PROBE_TYPE_QUERY_UPSTREAM: probe upstream queries
476 * @GST_PAD_PROBE_TYPE_PUSH: probe push
477 * @GST_PAD_PROBE_TYPE_PULL: probe pull
478 * @GST_PAD_PROBE_TYPE_BLOCKING: probe and block at the next opportunity, at data flow or when idle
479 * @GST_PAD_PROBE_TYPE_DATA_DOWNSTREAM: probe downstream data (buffers, buffer lists, and events)
480 * @GST_PAD_PROBE_TYPE_DATA_UPSTREAM: probe upstream data (events)
481 * @GST_PAD_PROBE_TYPE_DATA_BOTH: probe upstream and downstream data (buffers, buffer lists, and events)
482 * @GST_PAD_PROBE_TYPE_BLOCK_DOWNSTREAM: probe and block downstream data (buffers, buffer lists, and events)
483 * @GST_PAD_PROBE_TYPE_BLOCK_UPSTREAM: probe and block upstream data (events)
484 * @GST_PAD_PROBE_TYPE_EVENT_BOTH: probe upstream and downstream events
485 * @GST_PAD_PROBE_TYPE_QUERY_BOTH: probe upstream and downstream queries
486 * @GST_PAD_PROBE_TYPE_ALL_BOTH: probe upstream events and queries and downstream buffers, buffer lists, events and queries
487 * @GST_PAD_PROBE_TYPE_SCHEDULING: probe push and pull
489 * The different probing types that can occur. When either one of
490 * @GST_PAD_PROBE_TYPE_IDLE or @GST_PAD_PROBE_TYPE_BLOCK is used, the probe will be a
495 GST_PAD_PROBE_TYPE_INVALID = 0,
496 /* flags to control blocking */
497 GST_PAD_PROBE_TYPE_IDLE = (1 << 0),
498 GST_PAD_PROBE_TYPE_BLOCK = (1 << 1),
499 /* flags to select datatypes */
500 GST_PAD_PROBE_TYPE_BUFFER = (1 << 4),
501 GST_PAD_PROBE_TYPE_BUFFER_LIST = (1 << 5),
502 GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM = (1 << 6),
503 GST_PAD_PROBE_TYPE_EVENT_UPSTREAM = (1 << 7),
504 GST_PAD_PROBE_TYPE_EVENT_FLUSH = (1 << 8),
505 GST_PAD_PROBE_TYPE_QUERY_DOWNSTREAM = (1 << 9),
506 GST_PAD_PROBE_TYPE_QUERY_UPSTREAM = (1 << 10),
507 /* flags to select scheduling mode */
508 GST_PAD_PROBE_TYPE_PUSH = (1 << 12),
509 GST_PAD_PROBE_TYPE_PULL = (1 << 13),
511 /* flag combinations */
512 GST_PAD_PROBE_TYPE_BLOCKING = GST_PAD_PROBE_TYPE_IDLE | GST_PAD_PROBE_TYPE_BLOCK,
513 GST_PAD_PROBE_TYPE_DATA_DOWNSTREAM = GST_PAD_PROBE_TYPE_BUFFER | GST_PAD_PROBE_TYPE_BUFFER_LIST | GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM,
514 GST_PAD_PROBE_TYPE_DATA_UPSTREAM = GST_PAD_PROBE_TYPE_EVENT_UPSTREAM,
515 GST_PAD_PROBE_TYPE_DATA_BOTH = GST_PAD_PROBE_TYPE_DATA_DOWNSTREAM | GST_PAD_PROBE_TYPE_DATA_UPSTREAM,
516 GST_PAD_PROBE_TYPE_BLOCK_DOWNSTREAM = GST_PAD_PROBE_TYPE_BLOCK | GST_PAD_PROBE_TYPE_DATA_DOWNSTREAM,
517 GST_PAD_PROBE_TYPE_BLOCK_UPSTREAM = GST_PAD_PROBE_TYPE_BLOCK | GST_PAD_PROBE_TYPE_DATA_UPSTREAM,
518 GST_PAD_PROBE_TYPE_EVENT_BOTH = GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM | GST_PAD_PROBE_TYPE_EVENT_UPSTREAM,
519 GST_PAD_PROBE_TYPE_QUERY_BOTH = GST_PAD_PROBE_TYPE_QUERY_DOWNSTREAM | GST_PAD_PROBE_TYPE_QUERY_UPSTREAM,
520 GST_PAD_PROBE_TYPE_ALL_BOTH = GST_PAD_PROBE_TYPE_DATA_BOTH | GST_PAD_PROBE_TYPE_QUERY_BOTH,
521 GST_PAD_PROBE_TYPE_SCHEDULING = GST_PAD_PROBE_TYPE_PUSH | GST_PAD_PROBE_TYPE_PULL
527 * @GST_PAD_PROBE_OK: normal probe return value. This leaves the probe in
528 * place, and defers decisions about dropping or passing data to other
529 * probes, if any. If there are no other probes, the default behaviour
530 * for the probe type applies (block for blocking probes, and pass for
531 * non-blocking probes).
532 * @GST_PAD_PROBE_DROP: drop data in data probes. For push mode this means that
533 * the data item is not sent downstream. For pull mode, it means that
534 * the data item is not passed upstream. In both cases, no more probes
535 * are called and #GST_FLOW_OK or %TRUE is returned to the caller.
536 * @GST_PAD_PROBE_REMOVE: remove this probe.
537 * @GST_PAD_PROBE_PASS: pass the data item in the block probe and block on the
539 * @GST_PAD_PROBE_HANDLED: Data has been handled in the probe and will not be
540 * forwarded further. For events and buffers this is the same behaviour as
541 * @GST_PAD_PROBE_DROP (except that in this case you need to unref the buffer
542 * or event yourself). For queries it will also return %TRUE to the caller.
543 * The probe can also modify the #GstFlowReturn value by using the
544 * #GST_PAD_PROBE_INFO_FLOW_RETURN() accessor.
545 * Note that the resulting query must contain valid entries.
548 * Different return values for the #GstPadProbeCallback.
554 GST_PAD_PROBE_REMOVE,
556 GST_PAD_PROBE_HANDLED
562 * @type: the current probe type
563 * @id: the id of the probe
564 * @data: (allow-none): type specific data, check the @type field to know the
565 * datatype. This field can be %NULL.
566 * @offset: offset of pull probe, this field is valid when @type contains
567 * #GST_PAD_PROBE_TYPE_PULL
568 * @size: size of pull probe, this field is valid when @type contains
569 * #GST_PAD_PROBE_TYPE_PULL
571 * Info passed in the #GstPadProbeCallback.
573 struct _GstPadProbeInfo
575 GstPadProbeType type;
583 gpointer _gst_reserved[GST_PADDING];
585 GstFlowReturn flow_ret;
590 #define GST_PAD_PROBE_INFO_TYPE(d) ((d)->type)
591 #define GST_PAD_PROBE_INFO_ID(d) ((d)->id)
592 #define GST_PAD_PROBE_INFO_DATA(d) ((d)->data)
593 #define GST_PAD_PROBE_INFO_FLOW_RETURN(d) ((d)->ABI.abi.flow_ret)
595 #define GST_PAD_PROBE_INFO_BUFFER(d) GST_BUFFER_CAST(GST_PAD_PROBE_INFO_DATA(d))
596 #define GST_PAD_PROBE_INFO_BUFFER_LIST(d) GST_BUFFER_LIST_CAST(GST_PAD_PROBE_INFO_DATA(d))
597 #define GST_PAD_PROBE_INFO_EVENT(d) GST_EVENT_CAST(GST_PAD_PROBE_INFO_DATA(d))
598 #define GST_PAD_PROBE_INFO_QUERY(d) GST_QUERY_CAST(GST_PAD_PROBE_INFO_DATA(d))
600 #define GST_PAD_PROBE_INFO_OFFSET(d) ((d)->offset)
601 #define GST_PAD_PROBE_INFO_SIZE(d) ((d)->size)
603 GstEvent* gst_pad_probe_info_get_event (GstPadProbeInfo * info);
604 GstQuery* gst_pad_probe_info_get_query (GstPadProbeInfo * info);
605 GstBuffer* gst_pad_probe_info_get_buffer (GstPadProbeInfo * info);
606 GstBufferList* gst_pad_probe_info_get_buffer_list (GstPadProbeInfo * info);
609 * GstPadProbeCallback:
610 * @pad: the #GstPad that is blocked
611 * @info: #GstPadProbeInfo
612 * @user_data: the gpointer to optional user data.
614 * Callback used by gst_pad_add_probe(). Gets called to notify about the current
617 * The callback is allowed to modify the data pointer in @info.
619 * Returns: a #GstPadProbeReturn
621 typedef GstPadProbeReturn (*GstPadProbeCallback) (GstPad *pad, GstPadProbeInfo *info,
625 * GstPadStickyEventsForeachFunction:
627 * @event: (allow-none): a sticky #GstEvent.
628 * @user_data: the #gpointer to optional user data.
630 * Callback used by gst_pad_sticky_events_foreach().
632 * When this function returns %TRUE, the next event will be
633 * returned. When %FALSE is returned, gst_pad_sticky_events_foreach() will return.
635 * When @event is set to %NULL, the item will be removed from the list of sticky events.
636 * @event can be replaced by assigning a new reference to it.
637 * This function is responsible for unreffing the old event when
638 * removing or modifying.
640 * Returns: %TRUE if the iteration should continue
642 typedef gboolean (*GstPadStickyEventsForeachFunction) (GstPad *pad, GstEvent **event,
647 * @GST_PAD_FLAG_BLOCKED: is dataflow on a pad blocked
648 * @GST_PAD_FLAG_FLUSHING: is pad flushing
649 * @GST_PAD_FLAG_EOS: is pad in EOS state
650 * @GST_PAD_FLAG_BLOCKING: is pad currently blocking on a buffer or event
651 * @GST_PAD_FLAG_NEED_PARENT: ensure that there is a parent object before calling
652 * into the pad callbacks.
653 * @GST_PAD_FLAG_NEED_RECONFIGURE: the pad should be reconfigured/renegotiated.
654 * The flag has to be unset manually after
655 * reconfiguration happened.
656 * @GST_PAD_FLAG_PENDING_EVENTS: the pad has pending events
657 * @GST_PAD_FLAG_FIXED_CAPS: the pad is using fixed caps. This means that
658 * once the caps are set on the pad, the default caps query function
659 * will only return those caps.
660 * @GST_PAD_FLAG_PROXY_CAPS: the default event and query handler will forward
661 * all events and queries to the internally linked pads
662 * instead of discarding them.
663 * @GST_PAD_FLAG_PROXY_ALLOCATION: the default query handler will forward
664 * allocation queries to the internally linked pads
665 * instead of discarding them.
666 * @GST_PAD_FLAG_PROXY_SCHEDULING: the default query handler will forward
667 * scheduling queries to the internally linked pads
668 * instead of discarding them.
669 * @GST_PAD_FLAG_ACCEPT_INTERSECT: the default accept-caps handler will check
670 * it the caps intersect the query-caps result instead
671 * of checking for a subset. This is interesting for
672 * parsers that can accept incompletely specified caps.
673 * @GST_PAD_FLAG_ACCEPT_TEMPLATE: the default accept-caps handler will use
674 * the template pad caps instead of query caps to
675 * compare with the accept caps. Use this in combination
676 * with %GST_PAD_FLAG_ACCEPT_INTERSECT. (Since 1.6)
677 * @GST_PAD_FLAG_LAST: offset to define more flags
682 GST_PAD_FLAG_BLOCKED = (GST_OBJECT_FLAG_LAST << 0),
683 GST_PAD_FLAG_FLUSHING = (GST_OBJECT_FLAG_LAST << 1),
684 GST_PAD_FLAG_EOS = (GST_OBJECT_FLAG_LAST << 2),
685 GST_PAD_FLAG_BLOCKING = (GST_OBJECT_FLAG_LAST << 3),
686 GST_PAD_FLAG_NEED_PARENT = (GST_OBJECT_FLAG_LAST << 4),
687 GST_PAD_FLAG_NEED_RECONFIGURE = (GST_OBJECT_FLAG_LAST << 5),
688 GST_PAD_FLAG_PENDING_EVENTS = (GST_OBJECT_FLAG_LAST << 6),
689 GST_PAD_FLAG_FIXED_CAPS = (GST_OBJECT_FLAG_LAST << 7),
690 GST_PAD_FLAG_PROXY_CAPS = (GST_OBJECT_FLAG_LAST << 8),
691 GST_PAD_FLAG_PROXY_ALLOCATION = (GST_OBJECT_FLAG_LAST << 9),
692 GST_PAD_FLAG_PROXY_SCHEDULING = (GST_OBJECT_FLAG_LAST << 10),
693 GST_PAD_FLAG_ACCEPT_INTERSECT = (GST_OBJECT_FLAG_LAST << 11),
694 GST_PAD_FLAG_ACCEPT_TEMPLATE = (GST_OBJECT_FLAG_LAST << 12),
696 GST_PAD_FLAG_LAST = (GST_OBJECT_FLAG_LAST << 16)
701 * @element_private: private data owned by the parent element
702 * @padtemplate: padtemplate for this pad
703 * @direction: the direction of the pad, cannot change after creating
706 * The #GstPad structure. Use the functions to update the variables.
712 gpointer element_private;
714 GstPadTemplate *padtemplate;
716 GstPadDirection direction;
719 /* streaming rec_lock */
720 GRecMutex stream_rec_lock;
723 /* block cond, mutex is from the object */
728 GstPadActivateFunction activatefunc;
729 gpointer activatedata;
730 GDestroyNotify activatenotify;
731 GstPadActivateModeFunction activatemodefunc;
732 gpointer activatemodedata;
733 GDestroyNotify activatemodenotify;
737 GstPadLinkFunction linkfunc;
739 GDestroyNotify linknotify;
740 GstPadUnlinkFunction unlinkfunc;
742 GDestroyNotify unlinknotify;
744 /* data transport functions */
745 GstPadChainFunction chainfunc;
747 GDestroyNotify chainnotify;
748 GstPadChainListFunction chainlistfunc;
749 gpointer chainlistdata;
750 GDestroyNotify chainlistnotify;
751 GstPadGetRangeFunction getrangefunc;
752 gpointer getrangedata;
753 GDestroyNotify getrangenotify;
754 GstPadEventFunction eventfunc;
756 GDestroyNotify eventnotify;
761 /* generic query method */
762 GstPadQueryFunction queryfunc;
764 GDestroyNotify querynotify;
767 GstPadIterIntLinkFunction iterintlinkfunc;
768 gpointer iterintlinkdata;
769 GDestroyNotify iterintlinknotify;
771 /* counts number of probes attached. */
778 gpointer _gst_reserved[GST_PADDING];
780 GstFlowReturn last_flowret;
781 GstPadEventFullFunction eventfullfunc;
786 struct _GstPadClass {
787 GstObjectClass parent_class;
789 /* signal callbacks */
790 void (*linked) (GstPad *pad, GstPad *peer);
791 void (*unlinked) (GstPad *pad, GstPad *peer);
794 gpointer _gst_reserved[GST_PADDING];
798 /***** helper macros *****/
805 * Get name of the given pad.
806 * No locking is performed in this function, use gst_pad_get_name() instead.
808 #define GST_PAD_NAME(pad) (GST_OBJECT_NAME(pad))
813 * Get the @pad parent.
814 * No locking is performed in this function, use gst_pad_get_parent() instead.
816 #define GST_PAD_PARENT(pad) (GST_ELEMENT_CAST(GST_OBJECT_PARENT(pad)))
818 * GST_PAD_ELEMENT_PRIVATE:
821 * Get the private data of @pad, which is usually some pad- or stream-specific
822 * structure created by the element and set on the pad when creating it.
823 * No locking is performed in this function.
825 #define GST_PAD_ELEMENT_PRIVATE(pad) (GST_PAD_CAST(pad)->element_private)
827 * GST_PAD_PAD_TEMPLATE:
830 * Get the @pad #GstPadTemplate. It describes the possible media types
831 * a @pad or an element factory can handle.
833 #define GST_PAD_PAD_TEMPLATE(pad) (GST_PAD_CAST(pad)->padtemplate)
838 * Get the #GstPadDirection of the given @pad. Accessor macro, use
839 * gst_pad_get_direction() instead.
841 #define GST_PAD_DIRECTION(pad) (GST_PAD_CAST(pad)->direction)
846 * Get the #GstTask of @pad. Accessor macro used by GStreamer. Use the
847 * gst_pad_start_task(), gst_pad_stop_task() and gst_pad_pause_task()
850 #define GST_PAD_TASK(pad) (GST_PAD_CAST(pad)->task)
855 * Get the #GstPadMode of pad, which will be GST_PAD_MODE_NONE if the pad
856 * has not been activated yet, and otherwise either GST_PAD_MODE_PUSH or
857 * GST_PAD_MODE_PULL depending on which mode the pad was activated in.
859 #define GST_PAD_MODE(pad) (GST_PAD_CAST(pad)->mode)
861 * GST_PAD_ACTIVATEFUNC:
864 * Get the #GstPadActivateFunction from @pad.
866 #define GST_PAD_ACTIVATEFUNC(pad) (GST_PAD_CAST(pad)->activatefunc)
868 * GST_PAD_ACTIVATEMODEFUNC:
871 * Get the #GstPadActivateModeFunction from the given @pad.
873 #define GST_PAD_ACTIVATEMODEFUNC(pad) (GST_PAD_CAST(pad)->activatemodefunc)
878 * Get the #GstPadChainFunction from the given @pad.
880 #define GST_PAD_CHAINFUNC(pad) (GST_PAD_CAST(pad)->chainfunc)
882 * GST_PAD_CHAINLISTFUNC:
885 * Get the #GstPadChainListFunction from the given @pad.
887 #define GST_PAD_CHAINLISTFUNC(pad) (GST_PAD_CAST(pad)->chainlistfunc)
889 * GST_PAD_GETRANGEFUNC:
892 * Get the #GstPadGetRangeFunction from the given @pad.
894 #define GST_PAD_GETRANGEFUNC(pad) (GST_PAD_CAST(pad)->getrangefunc)
899 * Get the #GstPadEventFunction from the given @pad, which
900 * is the function that handles events on the pad. You can
901 * use this to set your own event handling function on a pad
902 * after you create it. If your element derives from a base
903 * class, use the base class's virtual functions instead.
905 #define GST_PAD_EVENTFUNC(pad) (GST_PAD_CAST(pad)->eventfunc)
907 * GST_PAD_EVENTFULLFUNC:
910 * Get the #GstPadEventFullFunction from the given @pad, which
911 * is the function that handles events on the pad. You can
912 * use this to set your own event handling function on a pad
913 * after you create it. If your element derives from a base
914 * class, use the base class's virtual functions instead.
918 #define GST_PAD_EVENTFULLFUNC(pad) (GST_PAD_CAST(pad)->ABI.abi.eventfullfunc)
923 * Get the #GstPadQueryFunction from @pad, which is the function
924 * that handles queries on the pad. You can use this to set your
925 * own query handling function on a pad after you create it. If your
926 * element derives from a base class, use the base class's virtual
929 #define GST_PAD_QUERYFUNC(pad) (GST_PAD_CAST(pad)->queryfunc)
931 * GST_PAD_ITERINTLINKFUNC:
934 * Get the #GstPadIterIntLinkFunction from the given @pad.
936 #define GST_PAD_ITERINTLINKFUNC(pad) (GST_PAD_CAST(pad)->iterintlinkfunc)
941 * Return the pad's peer member. This member is a pointer to the linked @pad.
942 * No locking is performed in this function, use gst_pad_get_peer() instead.
944 #define GST_PAD_PEER(pad) (GST_PAD_CAST(pad)->peer)
949 * Get the #GstPadLinkFunction for the given @pad.
951 #define GST_PAD_LINKFUNC(pad) (GST_PAD_CAST(pad)->linkfunc)
953 * GST_PAD_UNLINKFUNC:
956 * Get the #GstPadUnlinkFunction from the given @pad.
958 #define GST_PAD_UNLINKFUNC(pad) (GST_PAD_CAST(pad)->unlinkfunc)
963 * Returns: %TRUE if the pad is a source pad (i.e. produces data).
965 #define GST_PAD_IS_SRC(pad) (GST_PAD_DIRECTION(pad) == GST_PAD_SRC)
970 * Returns: %TRUE if the pad is a sink pad (i.e. consumes data).
972 #define GST_PAD_IS_SINK(pad) (GST_PAD_DIRECTION(pad) == GST_PAD_SINK)
977 * Returns: %TRUE if the pad is linked to another pad. Use gst_pad_is_linked()
980 #define GST_PAD_IS_LINKED(pad) (GST_PAD_PEER(pad) != NULL)
985 * Returns: %TRUE if the pad has been activated.
987 #define GST_PAD_IS_ACTIVE(pad) (GST_PAD_MODE(pad) != GST_PAD_MODE_NONE)
989 * GST_PAD_IS_BLOCKED:
992 * Check if the dataflow on a @pad is blocked. Use gst_pad_is_blocked() instead.
994 #define GST_PAD_IS_BLOCKED(pad) (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_BLOCKED))
996 * GST_PAD_IS_BLOCKING:
999 * Check if the @pad is currently blocking on a buffer or event. Use
1000 * gst_pad_is_blocking() instead.
1002 #define GST_PAD_IS_BLOCKING(pad) (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_BLOCKING))
1004 * GST_PAD_IS_FLUSHING:
1007 * Check if the given @pad is flushing.
1009 #define GST_PAD_IS_FLUSHING(pad) (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_FLUSHING))
1011 * GST_PAD_SET_FLUSHING:
1014 * Set the given @pad to flushing state, which means it will not accept any
1015 * more events, queries or buffers, and return GST_FLOW_FLUSHING if any buffers
1016 * are pushed on it. This usually happens when the pad is shut down or when
1017 * a flushing seek happens. This is used inside GStreamer when flush start/stop
1018 * events pass through pads, or when an element state is changed and pads are
1019 * activated or deactivated.
1021 #define GST_PAD_SET_FLUSHING(pad) (GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_FLUSHING))
1023 * GST_PAD_UNSET_FLUSHING:
1026 * Unset the flushing flag.
1028 #define GST_PAD_UNSET_FLUSHING(pad) (GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_FLUSHING))
1033 * Check if the @pad is in EOS state.
1035 #define GST_PAD_IS_EOS(pad) (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_EOS))
1037 * GST_PAD_NEEDS_RECONFIGURE:
1040 * Check if the @pad should be reconfigured/renegotiated.
1041 * The flag has to be unset manually after reconfiguration happened.
1042 * Use gst_pad_needs_reconfigure() or gst_pad_check_reconfigure() instead.
1044 #define GST_PAD_NEEDS_RECONFIGURE(pad) (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_NEED_RECONFIGURE))
1046 * GST_PAD_HAS_PENDING_EVENTS:
1049 * Check if the given @pad has pending events. This is used internally by
1052 #define GST_PAD_HAS_PENDING_EVENTS(pad) (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_PENDING_EVENTS))
1054 * GST_PAD_IS_FIXED_CAPS:
1057 * Check if the given @pad is using fixed caps, which means that
1058 * once the caps are set on the @pad, the caps query function will
1059 * only return those caps. See gst_pad_use_fixed_caps().
1061 #define GST_PAD_IS_FIXED_CAPS(pad) (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_FIXED_CAPS))
1063 * GST_PAD_NEEDS_PARENT:
1066 * Check if there is a parent object before calling into the @pad callbacks.
1067 * This is used internally by GStreamer.
1069 #define GST_PAD_NEEDS_PARENT(pad) (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_NEED_PARENT))
1071 * GST_PAD_IS_PROXY_CAPS:
1074 * Check if the given @pad is set to proxy caps. This means that the default
1075 * event and query handler will forward all events and queries to the
1076 * internally linked @pads instead of discarding them.
1078 #define GST_PAD_IS_PROXY_CAPS(pad) (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_PROXY_CAPS))
1080 * GST_PAD_SET_PROXY_CAPS:
1083 * Set @pad to proxy caps, so that all caps-related events and queries are
1084 * proxied down- or upstream to the other side of the element automatically.
1085 * Set this if the element always outputs data in the exact same format as it
1086 * receives as input. This is just for convenience to avoid implementing some
1087 * standard event and query handling code in an element.
1089 #define GST_PAD_SET_PROXY_CAPS(pad) (GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PROXY_CAPS))
1091 * GST_PAD_UNSET_PROXY_CAPS:
1094 * Unset proxy caps flag.
1096 #define GST_PAD_UNSET_PROXY_CAPS(pad) (GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_PROXY_CAPS))
1098 * GST_PAD_IS_PROXY_ALLOCATION:
1101 * Check if the given @pad is set as proxy allocation which means
1102 * that the default query handler will forward allocation queries to the
1103 * internally linked @pads instead of discarding them.
1105 #define GST_PAD_IS_PROXY_ALLOCATION(pad) (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_PROXY_ALLOCATION))
1107 * GST_PAD_SET_PROXY_ALLOCATION:
1110 * Set @pad to proxy allocation queries, which means that the default query
1111 * handler will forward allocation queries to the internally linked @pads
1112 * instead of discarding them.
1113 * Set this if the element always outputs data in the exact same format as it
1114 * receives as input. This is just for convenience to avoid implementing some
1115 * standard query handling code in an element.
1117 #define GST_PAD_SET_PROXY_ALLOCATION(pad) (GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PROXY_ALLOCATION))
1119 * GST_PAD_UNSET_PROXY_ALLOCATION:
1122 * Unset proxy allocation flag.
1124 #define GST_PAD_UNSET_PROXY_ALLOCATION(pad) (GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_PROXY_ALLOCATION))
1126 * GST_PAD_IS_PROXY_SCHEDULING:
1129 * Check if the given @pad is set to proxy scheduling queries, which means that
1130 * the default query handler will forward scheduling queries to the internally
1131 * linked @pads instead of discarding them.
1133 #define GST_PAD_IS_PROXY_SCHEDULING(pad) (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_PROXY_SCHEDULING))
1135 * GST_PAD_SET_PROXY_SCHEDULING:
1138 * Set @pad to proxy scheduling queries, which means that the default query
1139 * handler will forward scheduling queries to the internally linked @pads
1140 * instead of discarding them. You will usually want to handle scheduling
1141 * queries explicitly if your element supports multiple scheduling modes.
1143 #define GST_PAD_SET_PROXY_SCHEDULING(pad) (GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PROXY_SCHEDULING))
1145 * GST_PAD_UNSET_PROXY_SCHEDULING:
1148 * Unset proxy scheduling flag.
1150 #define GST_PAD_UNSET_PROXY_SCHEDULING(pad) (GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_PROXY_SCHEDULING))
1152 * GST_PAD_IS_ACCEPT_INTERSECT:
1155 * Check if the pad's accept intersect flag is set. The default accept-caps
1156 * handler will check if the caps intersect the query-caps result instead of
1157 * checking for a subset. This is interesting for parser elements that can
1158 * accept incompletely specified caps.
1160 #define GST_PAD_IS_ACCEPT_INTERSECT(pad) (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_ACCEPT_INTERSECT))
1162 * GST_PAD_SET_ACCEPT_INTERSECT:
1165 * Set @pad to by default accept caps by intersecting the result instead of
1166 * checking for a subset. This is interesting for parser elements that can
1167 * accept incompletely specified caps.
1169 #define GST_PAD_SET_ACCEPT_INTERSECT(pad) (GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_ACCEPT_INTERSECT))
1171 * GST_PAD_UNSET_ACCEPT_INTERSECT:
1174 * Unset accept intersect flag.
1176 #define GST_PAD_UNSET_ACCEPT_INTERSECT(pad) (GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_ACCEPT_INTERSECT))
1178 * GST_PAD_IS_ACCEPT_TEMPLATE:
1181 * Check if the pad's accept caps operation will use the pad template caps.
1182 * The default accept-caps will do a query caps to get the caps, which might
1183 * be querying downstream causing unnecessary overhead. It is recommended to
1184 * implement a proper accept-caps query handler or to use this flag to prevent
1185 * recursive accept-caps handling.
1189 #define GST_PAD_IS_ACCEPT_TEMPLATE(pad) (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_ACCEPT_TEMPLATE))
1191 * GST_PAD_SET_ACCEPT_TEMPLATE:
1194 * Set @pad to by default use the pad template caps to compare with
1195 * the accept caps instead of using a caps query result.
1199 #define GST_PAD_SET_ACCEPT_TEMPLATE(pad) (GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_ACCEPT_TEMPLATE))
1201 * GST_PAD_UNSET_ACCEPT_TEMPLATE:
1204 * Unset accept template flag.
1208 #define GST_PAD_UNSET_ACCEPT_TEMPLATE(pad) (GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_ACCEPT_TEMPLATE))
1210 * GST_PAD_GET_STREAM_LOCK:
1213 * Get the stream lock of @pad. The stream lock is protecting the
1214 * resources used in the data processing functions of @pad. Accessor
1215 * macro, use GST_PAD_STREAM_LOCK() and GST_PAD_STREAM_UNLOCK() instead
1216 * to take/release the pad's stream lock.
1218 #define GST_PAD_GET_STREAM_LOCK(pad) (&(GST_PAD_CAST(pad)->stream_rec_lock))
1220 * GST_PAD_STREAM_LOCK:
1223 * Take the pad's stream lock. The stream lock is recursive and will be taken
1224 * when buffers or serialized downstream events are pushed on a pad.
1226 #define GST_PAD_STREAM_LOCK(pad) g_rec_mutex_lock(GST_PAD_GET_STREAM_LOCK(pad))
1228 * GST_PAD_STREAM_TRYLOCK:
1231 * Try to take the pad's stream lock, and return %TRUE if the lock could be
1232 * taken, and otherwise %FALSE.
1234 #define GST_PAD_STREAM_TRYLOCK(pad) g_rec_mutex_trylock(GST_PAD_GET_STREAM_LOCK(pad))
1236 * GST_PAD_STREAM_UNLOCK:
1239 * Release the pad's stream lock.
1241 #define GST_PAD_STREAM_UNLOCK(pad) g_rec_mutex_unlock(GST_PAD_GET_STREAM_LOCK(pad))
1243 * GST_PAD_LAST_FLOW_RETURN:
1246 * Gets the last flow return on this pad
1250 #define GST_PAD_LAST_FLOW_RETURN(pad) (GST_PAD_CAST(pad)->ABI.abi.last_flowret)
1252 #define GST_PAD_BLOCK_GET_COND(pad) (&GST_PAD_CAST(pad)->block_cond)
1253 #define GST_PAD_BLOCK_WAIT(pad) (g_cond_wait(GST_PAD_BLOCK_GET_COND (pad), GST_OBJECT_GET_LOCK (pad)))
1254 #define GST_PAD_BLOCK_SIGNAL(pad) (g_cond_signal(GST_PAD_BLOCK_GET_COND (pad)))
1255 #define GST_PAD_BLOCK_BROADCAST(pad) (g_cond_broadcast(GST_PAD_BLOCK_GET_COND (pad)))
1257 GType gst_pad_get_type (void);
1260 GstPad* gst_pad_new (const gchar *name, GstPadDirection direction);
1261 GstPad* gst_pad_new_from_template (GstPadTemplate *templ, const gchar *name);
1262 GstPad* gst_pad_new_from_static_template (GstStaticPadTemplate *templ, const gchar *name);
1267 * @pad: the pad to get the name from
1269 * Get a copy of the name of the pad. g_free() after usage.
1273 #define gst_pad_get_name(pad) gst_object_get_name (GST_OBJECT_CAST (pad))
1275 * gst_pad_get_parent:
1276 * @pad: the pad to get the parent of
1278 * Get the parent of @pad. This function increases the refcount
1279 * of the parent object so you should gst_object_unref() it after usage.
1280 * Can return %NULL if the pad did not have a parent.
1284 * Returns: (nullable): the parent
1286 #define gst_pad_get_parent(pad) gst_object_get_parent (GST_OBJECT_CAST (pad))
1288 GstPadDirection gst_pad_get_direction (GstPad *pad);
1290 gboolean gst_pad_set_active (GstPad *pad, gboolean active);
1291 gboolean gst_pad_is_active (GstPad *pad);
1292 gboolean gst_pad_activate_mode (GstPad *pad, GstPadMode mode,
1295 gulong gst_pad_add_probe (GstPad *pad,
1296 GstPadProbeType mask,
1297 GstPadProbeCallback callback,
1299 GDestroyNotify destroy_data);
1300 void gst_pad_remove_probe (GstPad *pad, gulong id);
1302 gboolean gst_pad_is_blocked (GstPad *pad);
1303 gboolean gst_pad_is_blocking (GstPad *pad);
1305 void gst_pad_mark_reconfigure (GstPad *pad);
1306 gboolean gst_pad_needs_reconfigure (GstPad *pad);
1307 gboolean gst_pad_check_reconfigure (GstPad *pad);
1309 void gst_pad_set_element_private (GstPad *pad, gpointer priv);
1310 gpointer gst_pad_get_element_private (GstPad *pad);
1312 GstPadTemplate* gst_pad_get_pad_template (GstPad *pad);
1314 GstFlowReturn gst_pad_store_sticky_event (GstPad *pad, GstEvent *event);
1315 GstEvent* gst_pad_get_sticky_event (GstPad *pad, GstEventType event_type,
1317 void gst_pad_sticky_events_foreach (GstPad *pad, GstPadStickyEventsForeachFunction foreach_func, gpointer user_data);
1319 /* data passing setup functions */
1320 void gst_pad_set_activate_function_full (GstPad *pad,
1321 GstPadActivateFunction activate,
1323 GDestroyNotify notify);
1324 void gst_pad_set_activatemode_function_full (GstPad *pad,
1325 GstPadActivateModeFunction activatemode,
1327 GDestroyNotify notify);
1328 /* data passing functions */
1329 void gst_pad_set_chain_function_full (GstPad *pad,
1330 GstPadChainFunction chain,
1332 GDestroyNotify notify);
1333 void gst_pad_set_chain_list_function_full (GstPad *pad,
1334 GstPadChainListFunction chainlist,
1336 GDestroyNotify notify);
1337 void gst_pad_set_getrange_function_full (GstPad *pad,
1338 GstPadGetRangeFunction get,
1340 GDestroyNotify notify);
1341 void gst_pad_set_event_function_full (GstPad *pad,
1342 GstPadEventFunction event,
1344 GDestroyNotify notify);
1345 void gst_pad_set_event_full_function_full (GstPad *pad,
1346 GstPadEventFullFunction event,
1348 GDestroyNotify notify);
1350 #define gst_pad_set_activate_function(p,f) gst_pad_set_activate_function_full((p),(f),NULL,NULL)
1351 #define gst_pad_set_activatemode_function(p,f) gst_pad_set_activatemode_function_full((p),(f),NULL,NULL)
1352 #define gst_pad_set_chain_function(p,f) gst_pad_set_chain_function_full((p),(f),NULL,NULL)
1353 #define gst_pad_set_chain_list_function(p,f) gst_pad_set_chain_list_function_full((p),(f),NULL,NULL)
1354 #define gst_pad_set_getrange_function(p,f) gst_pad_set_getrange_function_full((p),(f),NULL,NULL)
1355 #define gst_pad_set_event_function(p,f) gst_pad_set_event_function_full((p),(f),NULL,NULL)
1356 #define gst_pad_set_event_full_function(p,f) gst_pad_set_event_full_function_full((p),(f),NULL,NULL)
1359 void gst_pad_set_link_function_full (GstPad *pad,
1360 GstPadLinkFunction link,
1362 GDestroyNotify notify);
1363 void gst_pad_set_unlink_function_full (GstPad *pad,
1364 GstPadUnlinkFunction unlink,
1366 GDestroyNotify notify);
1368 #define gst_pad_set_link_function(p,f) gst_pad_set_link_function_full((p),(f),NULL,NULL)
1369 #define gst_pad_set_unlink_function(p,f) gst_pad_set_unlink_function_full((p),(f),NULL,NULL)
1371 gboolean gst_pad_can_link (GstPad *srcpad, GstPad *sinkpad);
1372 GstPadLinkReturn gst_pad_link (GstPad *srcpad, GstPad *sinkpad);
1373 GstPadLinkReturn gst_pad_link_full (GstPad *srcpad, GstPad *sinkpad, GstPadLinkCheck flags);
1374 gboolean gst_pad_unlink (GstPad *srcpad, GstPad *sinkpad);
1375 gboolean gst_pad_is_linked (GstPad *pad);
1377 GstPad* gst_pad_get_peer (GstPad *pad);
1379 GstCaps* gst_pad_get_pad_template_caps (GstPad *pad);
1381 /* capsnego function for linked/unlinked pads */
1382 GstCaps * gst_pad_get_current_caps (GstPad * pad);
1383 gboolean gst_pad_has_current_caps (GstPad * pad);
1385 /* capsnego for linked pads */
1386 GstCaps * gst_pad_get_allowed_caps (GstPad * pad);
1389 gint64 gst_pad_get_offset (GstPad *pad);
1390 void gst_pad_set_offset (GstPad *pad, gint64 offset);
1392 /* data passing functions to peer */
1393 GstFlowReturn gst_pad_push (GstPad *pad, GstBuffer *buffer);
1394 GstFlowReturn gst_pad_push_list (GstPad *pad, GstBufferList *list);
1395 GstFlowReturn gst_pad_pull_range (GstPad *pad, guint64 offset, guint size,
1396 GstBuffer **buffer);
1397 gboolean gst_pad_push_event (GstPad *pad, GstEvent *event);
1398 gboolean gst_pad_event_default (GstPad *pad, GstObject *parent,
1400 GstFlowReturn gst_pad_get_last_flow_return (GstPad *pad);
1402 /* data passing functions on pad */
1403 GstFlowReturn gst_pad_chain (GstPad *pad, GstBuffer *buffer);
1404 GstFlowReturn gst_pad_chain_list (GstPad *pad, GstBufferList *list);
1405 GstFlowReturn gst_pad_get_range (GstPad *pad, guint64 offset, guint size,
1406 GstBuffer **buffer);
1407 gboolean gst_pad_send_event (GstPad *pad, GstEvent *event);
1410 gboolean gst_pad_start_task (GstPad *pad, GstTaskFunction func,
1411 gpointer user_data, GDestroyNotify notify);
1412 gboolean gst_pad_pause_task (GstPad *pad);
1413 gboolean gst_pad_stop_task (GstPad *pad);
1415 /* internal links */
1416 void gst_pad_set_iterate_internal_links_function_full (GstPad * pad,
1417 GstPadIterIntLinkFunction iterintlink,
1419 GDestroyNotify notify);
1420 GstIterator * gst_pad_iterate_internal_links (GstPad * pad);
1421 GstIterator * gst_pad_iterate_internal_links_default (GstPad * pad, GstObject *parent);
1423 #define gst_pad_set_iterate_internal_links_function(p,f) gst_pad_set_iterate_internal_links_function_full((p),(f),NULL,NULL)
1425 /* generic query function */
1426 gboolean gst_pad_query (GstPad *pad, GstQuery *query);
1427 gboolean gst_pad_peer_query (GstPad *pad, GstQuery *query);
1428 void gst_pad_set_query_function_full (GstPad *pad, GstPadQueryFunction query,
1430 GDestroyNotify notify);
1431 gboolean gst_pad_query_default (GstPad *pad, GstObject *parent,
1434 #define gst_pad_set_query_function(p,f) gst_pad_set_query_function_full((p),(f),NULL,NULL)
1436 /* misc helper functions */
1437 gboolean gst_pad_forward (GstPad *pad, GstPadForwardFunction forward,
1438 gpointer user_data);
1440 #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
1441 G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstPad, gst_object_unref)
1446 #endif /* __GST_PAD_H__ */