pad: Improve IDLE probe docs
[platform/upstream/gstreamer.git] / gst / gstpad.h
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wim.taymans@chello.be>
4  *
5  * gstpad.h: Header for GstPad object
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  */
22
23
24 #ifndef __GST_PAD_H__
25 #define __GST_PAD_H__
26
27 #include <gst/gstconfig.h>
28
29 typedef struct _GstPad GstPad;
30 typedef struct _GstPadPrivate GstPadPrivate;
31 typedef struct _GstPadClass GstPadClass;
32 typedef struct _GstPadProbeInfo GstPadProbeInfo;
33
34 /**
35  * GstPadDirection:
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.
39  *
40  * The direction of a pad.
41  */
42 typedef enum {
43   GST_PAD_UNKNOWN,
44   GST_PAD_SRC,
45   GST_PAD_SINK
46 } GstPadDirection;
47
48 /**
49  * GstPadMode:
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
53  *
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.
57  */
58 typedef enum {
59   GST_PAD_MODE_NONE,
60   GST_PAD_MODE_PUSH,
61   GST_PAD_MODE_PULL
62 } GstPadMode;
63
64 #include <glib.h>
65
66 const gchar   * gst_pad_mode_get_name (GstPadMode mode);
67
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>
76
77 G_BEGIN_DECLS
78
79 /*
80  * Pad base class
81  */
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))
88
89
90
91 /**
92  * GstPadLinkReturn:
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
100  *
101  * Result values from gst_pad_link and friends.
102  */
103 typedef enum {
104   GST_PAD_LINK_OK               =  0,
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
111 } GstPadLinkReturn;
112
113 /**
114  * GST_PAD_LINK_FAILED:
115  * @ret: the #GstPadLinkReturn value
116  *
117  * Macro to test if the given #GstPadLinkReturn value indicates a failed
118  * link step.
119  */
120 #define GST_PAD_LINK_FAILED(ret) ((ret) < GST_PAD_LINK_OK)
121
122 /**
123  * GST_PAD_LINK_SUCCESSFUL:
124  * @ret: the #GstPadLinkReturn value
125  *
126  * Macro to test if the given #GstPadLinkReturn value indicates a successful
127  * link step.
128  */
129 #define GST_PAD_LINK_SUCCESSFUL(ret) ((ret) >= GST_PAD_LINK_OK)
130
131 /**
132  * GstFlowReturn:
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
140  *                               details.
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
144  *                               codes.
145  * @GST_FLOW_CUSTOM_SUCCESS_1:   Pre-defined custom success code (define your
146  *                               custom success code to this to avoid compiler
147  *                               warnings).
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
153  *                               warnings).
154  * @GST_FLOW_CUSTOM_ERROR_2:     Pre-defined custom error code.
155  *
156  * The result of passing data to a pad.
157  *
158  * Note that the custom return values should not be exposed outside of the
159  * element scope.
160  */
161 typedef enum {
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,
166
167   /* core predefined */
168   GST_FLOW_OK             =  0,
169   /* expected failures */
170   GST_FLOW_NOT_LINKED     = -1,
171   GST_FLOW_FLUSHING       = -2,
172   /* error cases */
173   GST_FLOW_EOS            = -3,
174   GST_FLOW_NOT_NEGOTIATED = -4,
175   GST_FLOW_ERROR          = -5,
176   GST_FLOW_NOT_SUPPORTED  = -6,
177
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
182 } GstFlowReturn;
183
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);
187
188 /**
189  * GstPadLinkCheck:
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()).
201  *
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.
205  *
206  * <warning><para>
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.
211  * </para></warning>
212  */
213
214 typedef enum {
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,
219
220   GST_PAD_LINK_CHECK_DEFAULT       = GST_PAD_LINK_CHECK_HIERARCHY | GST_PAD_LINK_CHECK_CAPS
221 } GstPadLinkCheck;
222
223 /* pad states */
224 /**
225  * GstPadActivateFunction:
226  * @pad: a #GstPad
227  * @parent: the parent of @pad
228  *
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.
233  *
234  * Returns: %TRUE if the pad could be activated.
235  */
236 typedef gboolean                (*GstPadActivateFunction)       (GstPad *pad, GstObject *parent);
237 /**
238  * GstPadActivateModeFunction:
239  * @pad: a #GstPad
240  * @parent: the parent of @pad
241  * @mode: the requested activation mode of @pad
242  * @active: activate or deactivate the pad.
243  *
244  * The prototype of the push and pull activate functions.
245  *
246  * Returns: %TRUE if the pad could be activated or deactivated.
247  */
248 typedef gboolean                (*GstPadActivateModeFunction)   (GstPad *pad, GstObject *parent,
249                                                                  GstPadMode mode, gboolean active);
250
251
252 /* data passing */
253 /**
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.
260  *
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).
264  *
265  * The implementer of this function receives a refcount to @buffer and should
266  * gst_buffer_unref() when the buffer is no longer needed.
267  *
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.
270  *
271  * Returns: #GST_FLOW_OK for success
272  */
273 typedef GstFlowReturn           (*GstPadChainFunction)          (GstPad *pad, GstObject *parent,
274                                                                  GstBuffer *buffer);
275
276 /**
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.
283  *
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).
287  *
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.
290  *
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.
293  *
294  * Returns: #GST_FLOW_OK for success
295  */
296 typedef GstFlowReturn           (*GstPadChainListFunction)      (GstPad *pad, GstObject *parent,
297                                                                  GstBufferList *list);
298
299 /**
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.
308  *
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.
313  *
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.
318  *
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.
323  *
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.
327  *
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.
331  *
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
334  * #GST_FLOW_OK.
335  *
336  * When this function is called with a -1 @offset, the sequentially next buffer
337  * of length @length in the stream is returned.
338  *
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
341  * of @offset.
342  *
343  * Returns: #GST_FLOW_OK for success and a valid buffer in @buffer. Any other
344  * return value leaves @buffer undefined.
345  */
346 typedef GstFlowReturn           (*GstPadGetRangeFunction)       (GstPad *pad, GstObject *parent,
347                                                                  guint64 offset, guint length,
348                                                                  GstBuffer **buffer);
349
350 /**
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.
357  *
358  * Function signature to handle an event for the pad.
359  *
360  * Returns: %TRUE if the pad could handle the event.
361  */
362 typedef gboolean                (*GstPadEventFunction)          (GstPad *pad, GstObject *parent,
363                                                                  GstEvent *event);
364
365 /**
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.
372  *
373  * Function signature to handle an event for the pad.
374  *
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
377  * return it.
378  *
379  * Returns: %GST_FLOW_OK if the event was handled properly, or any other
380  * #GstFlowReturn dependent on downstream state.
381  *
382  * Since: 1.8
383  */
384 typedef GstFlowReturn           (*GstPadEventFullFunction)      (GstPad *pad, GstObject *parent,
385                                                                  GstEvent *event);
386
387
388 /* internal links */
389 /**
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.
395  *
396  * The signature of the internal pad link iterator function.
397  *
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.
400  *
401  * the caller must call gst_iterator_free() after usage.
402  */
403 typedef GstIterator*           (*GstPadIterIntLinkFunction)    (GstPad *pad, GstObject *parent);
404
405 /* generic query function */
406 /**
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
413  *
414  * The signature of the query function.
415  *
416  * Returns: %TRUE if the query could be performed.
417  */
418 typedef gboolean                (*GstPadQueryFunction)          (GstPad *pad, GstObject *parent,
419                                                                  GstQuery *query);
420
421
422 /* linking */
423 /**
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
430  *
431  * Function signature to handle a new link on the pad.
432  *
433  * Returns: the result of the link with the specified peer.
434  */
435 typedef GstPadLinkReturn        (*GstPadLinkFunction)           (GstPad *pad, GstObject *parent, GstPad *peer);
436 /**
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.
442  *
443  * Function signature to handle a unlinking the pad prom its peer.
444  */
445 typedef void                    (*GstPadUnlinkFunction)         (GstPad *pad, GstObject *parent);
446
447
448 /* misc */
449 /**
450  * GstPadForwardFunction:
451  * @pad: the #GstPad that is forwarded.
452  * @user_data: the gpointer to optional user data.
453  *
454  * A forward function is called for all internally linked pads, see
455  * gst_pad_forward().
456  *
457  * Returns: %TRUE if the dispatching procedure has to be stopped.
458  */
459 typedef gboolean                (*GstPadForwardFunction)        (GstPad *pad, gpointer user_data);
460
461 /**
462  * GstPadProbeType:
463  * @GST_PAD_PROBE_TYPE_INVALID: invalid probe type
464  * @GST_PAD_PROBE_TYPE_IDLE: probe idle pads and block while the callback is called
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
488  *
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
491  * blocking probe.
492  */
493 typedef enum
494 {
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),
510
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
522 } GstPadProbeType;
523
524
525 /**
526  * GstPadProbeReturn:
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
538  *        next item.
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.
546  *        Since: 1.6
547  *
548  * Different return values for the #GstPadProbeCallback.
549  */
550 typedef enum
551 {
552   GST_PAD_PROBE_DROP,
553   GST_PAD_PROBE_OK,
554   GST_PAD_PROBE_REMOVE,
555   GST_PAD_PROBE_PASS,
556   GST_PAD_PROBE_HANDLED
557 } GstPadProbeReturn;
558
559
560 /**
561  * GstPadProbeInfo:
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
570  *
571  * Info passed in the #GstPadProbeCallback.
572  */
573 struct _GstPadProbeInfo
574 {
575   GstPadProbeType type;
576   gulong id;
577   gpointer data;
578   guint64 offset;
579   guint size;
580
581   /*< private >*/
582   union {
583     gpointer _gst_reserved[GST_PADDING];
584     struct {
585       GstFlowReturn flow_ret;
586     } abi;
587   } ABI;
588 };
589
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)
594
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))
599
600 #define GST_PAD_PROBE_INFO_OFFSET(d)       ((d)->offset)
601 #define GST_PAD_PROBE_INFO_SIZE(d)         ((d)->size)
602
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);
607
608 /**
609  * GstPadProbeCallback:
610  * @pad: the #GstPad that is blocked
611  * @info: #GstPadProbeInfo
612  * @user_data: the gpointer to optional user data.
613  *
614  * Callback used by gst_pad_add_probe(). Gets called to notify about the current
615  * blocking type.
616  *
617  * The callback is allowed to modify the data pointer in @info.
618  *
619  * Returns: a #GstPadProbeReturn
620  */
621 typedef GstPadProbeReturn   (*GstPadProbeCallback)   (GstPad *pad, GstPadProbeInfo *info,
622                                                       gpointer user_data);
623
624 /**
625  * GstPadStickyEventsForeachFunction:
626  * @pad: the #GstPad.
627  * @event: (allow-none): a sticky #GstEvent.
628  * @user_data: the #gpointer to optional user data.
629  *
630  * Callback used by gst_pad_sticky_events_foreach().
631  *
632  * When this function returns %TRUE, the next event will be
633  * returned. When %FALSE is returned, gst_pad_sticky_events_foreach() will return.
634  *
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.
639  *
640  * Returns: %TRUE if the iteration should continue
641  */
642 typedef gboolean  (*GstPadStickyEventsForeachFunction) (GstPad *pad, GstEvent **event,
643                                                         gpointer user_data);
644
645 /**
646  * GstPadFlags:
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
678  *
679  * Pad state flags
680  */
681 typedef enum {
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),
695   /* padding */
696   GST_PAD_FLAG_LAST        = (GST_OBJECT_FLAG_LAST << 16)
697 } GstPadFlags;
698
699 /**
700  * GstPad:
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
704  *             the pad.
705  *
706  * The #GstPad structure. Use the functions to update the variables.
707  */
708 struct _GstPad {
709   GstObject                      object;
710
711   /*< public >*/
712   gpointer                       element_private;
713
714   GstPadTemplate                *padtemplate;
715
716   GstPadDirection                direction;
717
718   /*< private >*/
719   /* streaming rec_lock */
720   GRecMutex                      stream_rec_lock;
721   GstTask                       *task;
722
723   /* block cond, mutex is from the object */
724   GCond                          block_cond;
725   GHookList                      probes;
726
727   GstPadMode                     mode;
728   GstPadActivateFunction         activatefunc;
729   gpointer                       activatedata;
730   GDestroyNotify                 activatenotify;
731   GstPadActivateModeFunction     activatemodefunc;
732   gpointer                       activatemodedata;
733   GDestroyNotify                 activatemodenotify;
734
735   /* pad link */
736   GstPad                        *peer;
737   GstPadLinkFunction             linkfunc;
738   gpointer                       linkdata;
739   GDestroyNotify                 linknotify;
740   GstPadUnlinkFunction           unlinkfunc;
741   gpointer                       unlinkdata;
742   GDestroyNotify                 unlinknotify;
743
744   /* data transport functions */
745   GstPadChainFunction            chainfunc;
746   gpointer                       chaindata;
747   GDestroyNotify                 chainnotify;
748   GstPadChainListFunction        chainlistfunc;
749   gpointer                       chainlistdata;
750   GDestroyNotify                 chainlistnotify;
751   GstPadGetRangeFunction         getrangefunc;
752   gpointer                       getrangedata;
753   GDestroyNotify                 getrangenotify;
754   GstPadEventFunction            eventfunc;
755   gpointer                       eventdata;
756   GDestroyNotify                 eventnotify;
757
758   /* pad offset */
759   gint64                         offset;
760
761   /* generic query method */
762   GstPadQueryFunction            queryfunc;
763   gpointer                       querydata;
764   GDestroyNotify                 querynotify;
765
766   /* internal links */
767   GstPadIterIntLinkFunction      iterintlinkfunc;
768   gpointer                       iterintlinkdata;
769   GDestroyNotify                 iterintlinknotify;
770
771   /* counts number of probes attached. */
772   gint                           num_probes;
773   gint                           num_blocked;
774
775   GstPadPrivate                 *priv;
776
777   union {
778     gpointer _gst_reserved[GST_PADDING];
779     struct {
780       GstFlowReturn last_flowret;
781       GstPadEventFullFunction eventfullfunc;
782     } abi;
783   } ABI;
784 };
785
786 struct _GstPadClass {
787   GstObjectClass        parent_class;
788
789   /* signal callbacks */
790   void          (*linked)               (GstPad *pad, GstPad *peer);
791   void          (*unlinked)             (GstPad *pad, GstPad *peer);
792
793   /*< private >*/
794   gpointer _gst_reserved[GST_PADDING];
795 };
796
797
798 /***** helper macros *****/
799 /* GstPad */
800
801 /**
802  * GST_PAD_NAME:
803  * @pad: a #GstPad
804  *
805  * Get name of the given pad.
806  * No locking is performed in this function, use gst_pad_get_name() instead.
807  */
808 #define GST_PAD_NAME(pad)               (GST_OBJECT_NAME(pad))
809 /**
810  * GST_PAD_PARENT:
811  * @pad: a #GstPad
812  *
813  * Get the @pad parent.
814  * No locking is performed in this function, use gst_pad_get_parent() instead.
815  */
816 #define GST_PAD_PARENT(pad)             (GST_ELEMENT_CAST(GST_OBJECT_PARENT(pad)))
817 /**
818  * GST_PAD_ELEMENT_PRIVATE:
819  * @pad: a #GstPad
820  *
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.
824  */
825 #define GST_PAD_ELEMENT_PRIVATE(pad)    (GST_PAD_CAST(pad)->element_private)
826 /**
827  * GST_PAD_PAD_TEMPLATE:
828  * @pad: a #GstPad
829  *
830  * Get the @pad #GstPadTemplate. It describes the possible media types
831  * a @pad or an element factory can handle.
832  */
833 #define GST_PAD_PAD_TEMPLATE(pad)       (GST_PAD_CAST(pad)->padtemplate)
834 /**
835  * GST_PAD_DIRECTION:
836  * @pad: a #GstPad
837  *
838  * Get the #GstPadDirection of the given @pad. Accessor macro, use
839  * gst_pad_get_direction() instead.
840  */
841 #define GST_PAD_DIRECTION(pad)          (GST_PAD_CAST(pad)->direction)
842 /**
843  * GST_PAD_TASK:
844  * @pad: a #GstPad
845  *
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()
848  * functions instead.
849  */
850 #define GST_PAD_TASK(pad)               (GST_PAD_CAST(pad)->task)
851 /**
852  * GST_PAD_MODE:
853  * @pad: a #GstPad
854  *
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.
858  */
859 #define GST_PAD_MODE(pad)               (GST_PAD_CAST(pad)->mode)
860 /**
861  * GST_PAD_ACTIVATEFUNC:
862  * @pad: a #GstPad
863  *
864  * Get the #GstPadActivateFunction from @pad.
865  */
866 #define GST_PAD_ACTIVATEFUNC(pad)       (GST_PAD_CAST(pad)->activatefunc)
867 /**
868  * GST_PAD_ACTIVATEMODEFUNC:
869  * @pad: a #GstPad
870  *
871  * Get the #GstPadActivateModeFunction from the given @pad.
872  */
873 #define GST_PAD_ACTIVATEMODEFUNC(pad)   (GST_PAD_CAST(pad)->activatemodefunc)
874 /**
875  * GST_PAD_CHAINFUNC:
876  * @pad: a #GstPad
877  *
878  * Get the #GstPadChainFunction from the given @pad.
879  */
880 #define GST_PAD_CHAINFUNC(pad)          (GST_PAD_CAST(pad)->chainfunc)
881 /**
882  * GST_PAD_CHAINLISTFUNC:
883  * @pad: a #GstPad
884  *
885  * Get the #GstPadChainListFunction from the given @pad.
886  */
887 #define GST_PAD_CHAINLISTFUNC(pad)      (GST_PAD_CAST(pad)->chainlistfunc)
888 /**
889  * GST_PAD_GETRANGEFUNC:
890  * @pad: a #GstPad
891  *
892  * Get the #GstPadGetRangeFunction from the given @pad.
893  */
894 #define GST_PAD_GETRANGEFUNC(pad)       (GST_PAD_CAST(pad)->getrangefunc)
895 /**
896  * GST_PAD_EVENTFUNC:
897  * @pad: a #GstPad
898  *
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.
904  */
905 #define GST_PAD_EVENTFUNC(pad)          (GST_PAD_CAST(pad)->eventfunc)
906 /**
907  * GST_PAD_EVENTFULLFUNC:
908  * @pad: a #GstPad
909  *
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.
915  *
916  * Since: 1.8
917  */
918 #define GST_PAD_EVENTFULLFUNC(pad)      (GST_PAD_CAST(pad)->ABI.abi.eventfullfunc)
919 /**
920  * GST_PAD_QUERYFUNC:
921  * @pad: a #GstPad
922  *
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
927  * functions instead.
928  */
929 #define GST_PAD_QUERYFUNC(pad)          (GST_PAD_CAST(pad)->queryfunc)
930 /**
931  * GST_PAD_ITERINTLINKFUNC:
932  * @pad: a #GstPad
933  *
934  * Get the #GstPadIterIntLinkFunction from the given @pad.
935  */
936 #define GST_PAD_ITERINTLINKFUNC(pad)    (GST_PAD_CAST(pad)->iterintlinkfunc)
937 /**
938  * GST_PAD_PEER:
939  * @pad: a #GstPad
940  *
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.
943  */
944 #define GST_PAD_PEER(pad)               (GST_PAD_CAST(pad)->peer)
945 /**
946  * GST_PAD_LINKFUNC:
947  * @pad: a #GstPad
948  *
949  * Get the #GstPadLinkFunction for the given @pad.
950  */
951 #define GST_PAD_LINKFUNC(pad)           (GST_PAD_CAST(pad)->linkfunc)
952 /**
953  * GST_PAD_UNLINKFUNC:
954  * @pad: a #GstPad
955  *
956  * Get the #GstPadUnlinkFunction from the given @pad.
957  */
958 #define GST_PAD_UNLINKFUNC(pad)         (GST_PAD_CAST(pad)->unlinkfunc)
959 /**
960  * GST_PAD_IS_SRC:
961  * @pad: a #GstPad
962  *
963  * Returns: %TRUE if the pad is a source pad (i.e. produces data).
964  */
965 #define GST_PAD_IS_SRC(pad)             (GST_PAD_DIRECTION(pad) == GST_PAD_SRC)
966 /**
967  * GST_PAD_IS_SINK:
968  * @pad: a #GstPad
969  *
970  * Returns: %TRUE if the pad is a sink pad (i.e. consumes data).
971  */
972 #define GST_PAD_IS_SINK(pad)            (GST_PAD_DIRECTION(pad) == GST_PAD_SINK)
973 /**
974  * GST_PAD_IS_LINKED:
975  * @pad: a #GstPad
976  *
977  * Returns: %TRUE if the pad is linked to another pad. Use gst_pad_is_linked()
978  * instead.
979  */
980 #define GST_PAD_IS_LINKED(pad)          (GST_PAD_PEER(pad) != NULL)
981 /**
982  * GST_PAD_IS_ACTIVE:
983  * @pad: a #GstPad
984  *
985  * Returns: %TRUE if the pad has been activated.
986  */
987 #define GST_PAD_IS_ACTIVE(pad)          (GST_PAD_MODE(pad) != GST_PAD_MODE_NONE)
988 /**
989  * GST_PAD_IS_BLOCKED:
990  * @pad: a #GstPad
991  *
992  * Check if the dataflow on a @pad is blocked. Use gst_pad_is_blocked() instead.
993  */
994 #define GST_PAD_IS_BLOCKED(pad)         (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_BLOCKED))
995 /**
996  * GST_PAD_IS_BLOCKING:
997  * @pad: a #GstPad
998  *
999  * Check if the @pad is currently blocking on a buffer or event. Use
1000  * gst_pad_is_blocking() instead.
1001  */
1002 #define GST_PAD_IS_BLOCKING(pad)        (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_BLOCKING))
1003 /**
1004  * GST_PAD_IS_FLUSHING:
1005  * @pad: a #GstPad
1006  *
1007  * Check if the given @pad is flushing.
1008  */
1009 #define GST_PAD_IS_FLUSHING(pad)        (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_FLUSHING))
1010 /**
1011  * GST_PAD_SET_FLUSHING:
1012  * @pad: a #GstPad
1013  *
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.
1020  */
1021 #define GST_PAD_SET_FLUSHING(pad)       (GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_FLUSHING))
1022 /**
1023  * GST_PAD_UNSET_FLUSHING:
1024  * @pad: a #GstPad
1025  *
1026  * Unset the flushing flag.
1027  */
1028 #define GST_PAD_UNSET_FLUSHING(pad)     (GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_FLUSHING))
1029 /**
1030  * GST_PAD_IS_EOS:
1031  * @pad: a #GstPad
1032  *
1033  * Check if the @pad is in EOS state.
1034  */
1035 #define GST_PAD_IS_EOS(pad)             (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_EOS))
1036 /**
1037  * GST_PAD_NEEDS_RECONFIGURE:
1038  * @pad: a #GstPad
1039  *
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.
1043  */
1044 #define GST_PAD_NEEDS_RECONFIGURE(pad)  (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_NEED_RECONFIGURE))
1045 /**
1046  * GST_PAD_HAS_PENDING_EVENTS:
1047  * @pad: a #GstPad
1048  *
1049  * Check if the given @pad has pending events. This is used internally by
1050  * GStreamer.
1051  */
1052 #define GST_PAD_HAS_PENDING_EVENTS(pad) (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_PENDING_EVENTS))
1053 /**
1054  * GST_PAD_IS_FIXED_CAPS:
1055  * @pad: a #GstPad
1056  *
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().
1060  */
1061 #define GST_PAD_IS_FIXED_CAPS(pad)      (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_FIXED_CAPS))
1062 /**
1063  * GST_PAD_NEEDS_PARENT:
1064  * @pad: a #GstPad
1065  *
1066  * Check if there is a parent object before calling into the @pad callbacks.
1067  * This is used internally by GStreamer.
1068  */
1069 #define GST_PAD_NEEDS_PARENT(pad)       (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_NEED_PARENT))
1070 /**
1071  * GST_PAD_IS_PROXY_CAPS:
1072  * @pad: a #GstPad
1073  *
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.
1077  */
1078 #define GST_PAD_IS_PROXY_CAPS(pad)      (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_PROXY_CAPS))
1079 /**
1080  * GST_PAD_SET_PROXY_CAPS:
1081  * @pad: a #GstPad
1082  *
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.
1088  */
1089 #define GST_PAD_SET_PROXY_CAPS(pad)     (GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PROXY_CAPS))
1090 /**
1091  * GST_PAD_UNSET_PROXY_CAPS:
1092  * @pad: a #GstPad
1093  *
1094  * Unset proxy caps flag.
1095  */
1096 #define GST_PAD_UNSET_PROXY_CAPS(pad)   (GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_PROXY_CAPS))
1097 /**
1098  * GST_PAD_IS_PROXY_ALLOCATION:
1099  * @pad: a #GstPad
1100  *
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.
1104  */
1105 #define GST_PAD_IS_PROXY_ALLOCATION(pad)    (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_PROXY_ALLOCATION))
1106 /**
1107  * GST_PAD_SET_PROXY_ALLOCATION:
1108  * @pad: a #GstPad
1109  *
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.
1116  */
1117 #define GST_PAD_SET_PROXY_ALLOCATION(pad)   (GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PROXY_ALLOCATION))
1118 /**
1119  * GST_PAD_UNSET_PROXY_ALLOCATION:
1120  * @pad: a #GstPad
1121  *
1122  * Unset proxy allocation flag.
1123  */
1124 #define GST_PAD_UNSET_PROXY_ALLOCATION(pad) (GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_PROXY_ALLOCATION))
1125 /**
1126  * GST_PAD_IS_PROXY_SCHEDULING:
1127  * @pad: a #GstPad
1128  *
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.
1132  */
1133 #define GST_PAD_IS_PROXY_SCHEDULING(pad)    (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_PROXY_SCHEDULING))
1134 /**
1135  * GST_PAD_SET_PROXY_SCHEDULING:
1136  * @pad: a #GstPad
1137  *
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.
1142  */
1143 #define GST_PAD_SET_PROXY_SCHEDULING(pad)   (GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PROXY_SCHEDULING))
1144 /**
1145  * GST_PAD_UNSET_PROXY_SCHEDULING:
1146  * @pad: a #GstPad
1147  *
1148  * Unset proxy scheduling flag.
1149  */
1150 #define GST_PAD_UNSET_PROXY_SCHEDULING(pad) (GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_PROXY_SCHEDULING))
1151 /**
1152  * GST_PAD_IS_ACCEPT_INTERSECT:
1153  * @pad: a #GstPad
1154  *
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.
1159  */
1160 #define GST_PAD_IS_ACCEPT_INTERSECT(pad)    (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_ACCEPT_INTERSECT))
1161 /**
1162  * GST_PAD_SET_ACCEPT_INTERSECT:
1163  * @pad: a #GstPad
1164  *
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.
1168  */
1169 #define GST_PAD_SET_ACCEPT_INTERSECT(pad)   (GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_ACCEPT_INTERSECT))
1170 /**
1171  * GST_PAD_UNSET_ACCEPT_INTERSECT:
1172  * @pad: a #GstPad
1173  *
1174  * Unset accept intersect flag.
1175  */
1176 #define GST_PAD_UNSET_ACCEPT_INTERSECT(pad) (GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_ACCEPT_INTERSECT))
1177 /**
1178  * GST_PAD_IS_ACCEPT_TEMPLATE:
1179  * @pad: a #GstPad
1180  *
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.
1186  *
1187  * Since: 1.6
1188  */
1189 #define GST_PAD_IS_ACCEPT_TEMPLATE(pad)    (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_ACCEPT_TEMPLATE))
1190 /**
1191  * GST_PAD_SET_ACCEPT_TEMPLATE:
1192  * @pad: a #GstPad
1193  *
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.
1196  *
1197  * Since: 1.6
1198  */
1199 #define GST_PAD_SET_ACCEPT_TEMPLATE(pad)   (GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_ACCEPT_TEMPLATE))
1200 /**
1201  * GST_PAD_UNSET_ACCEPT_TEMPLATE:
1202  * @pad: a #GstPad
1203  *
1204  * Unset accept template flag.
1205  *
1206  * Since: 1.6
1207  */
1208 #define GST_PAD_UNSET_ACCEPT_TEMPLATE(pad) (GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_ACCEPT_TEMPLATE))
1209 /**
1210  * GST_PAD_GET_STREAM_LOCK:
1211  * @pad: a #GstPad
1212  *
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.
1217  */
1218 #define GST_PAD_GET_STREAM_LOCK(pad)    (&(GST_PAD_CAST(pad)->stream_rec_lock))
1219 /**
1220  * GST_PAD_STREAM_LOCK:
1221  * @pad: a #GstPad
1222  *
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.
1225  */
1226 #define GST_PAD_STREAM_LOCK(pad)        g_rec_mutex_lock(GST_PAD_GET_STREAM_LOCK(pad))
1227 /**
1228  * GST_PAD_STREAM_TRYLOCK:
1229  * @pad: a #GstPad
1230  *
1231  * Try to take the pad's stream lock, and return %TRUE if the lock could be
1232  * taken, and otherwise %FALSE.
1233  */
1234 #define GST_PAD_STREAM_TRYLOCK(pad)     g_rec_mutex_trylock(GST_PAD_GET_STREAM_LOCK(pad))
1235 /**
1236  * GST_PAD_STREAM_UNLOCK:
1237  * @pad: a #GstPad
1238  *
1239  * Release the pad's stream lock.
1240  */
1241 #define GST_PAD_STREAM_UNLOCK(pad)      g_rec_mutex_unlock(GST_PAD_GET_STREAM_LOCK(pad))
1242 /**
1243  * GST_PAD_LAST_FLOW_RETURN:
1244  * @pad: a #GstPad
1245  *
1246  * Gets the last flow return on this pad
1247  *
1248  * Since: 1.4
1249  */
1250 #define GST_PAD_LAST_FLOW_RETURN(pad)   (GST_PAD_CAST(pad)->ABI.abi.last_flowret)
1251
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)))
1256
1257 GType                   gst_pad_get_type                        (void);
1258
1259 /* creating pads */
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);
1263
1264
1265 /**
1266  * gst_pad_get_name:
1267  * @pad: the pad to get the name from
1268  *
1269  * Get a copy of the name of the pad. g_free() after usage.
1270  *
1271  * MT safe.
1272  */
1273 #define gst_pad_get_name(pad) gst_object_get_name (GST_OBJECT_CAST (pad))
1274 /**
1275  * gst_pad_get_parent:
1276  * @pad: the pad to get the parent of
1277  *
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.
1281  *
1282  * MT safe.
1283  *
1284  * Returns: (nullable): the parent
1285  */
1286 #define gst_pad_get_parent(pad) gst_object_get_parent (GST_OBJECT_CAST (pad))
1287
1288 GstPadDirection         gst_pad_get_direction                   (GstPad *pad);
1289
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,
1293                                                                  gboolean active);
1294
1295 gulong                  gst_pad_add_probe                       (GstPad *pad,
1296                                                                  GstPadProbeType mask,
1297                                                                  GstPadProbeCallback callback,
1298                                                                  gpointer user_data,
1299                                                                  GDestroyNotify destroy_data);
1300 void                    gst_pad_remove_probe                    (GstPad *pad, gulong id);
1301
1302 gboolean                gst_pad_is_blocked                      (GstPad *pad);
1303 gboolean                gst_pad_is_blocking                     (GstPad *pad);
1304
1305 void                    gst_pad_mark_reconfigure                (GstPad *pad);
1306 gboolean                gst_pad_needs_reconfigure               (GstPad *pad);
1307 gboolean                gst_pad_check_reconfigure               (GstPad *pad);
1308
1309 void                    gst_pad_set_element_private             (GstPad *pad, gpointer priv);
1310 gpointer                gst_pad_get_element_private             (GstPad *pad);
1311
1312 GstPadTemplate*         gst_pad_get_pad_template                (GstPad *pad);
1313
1314 GstFlowReturn           gst_pad_store_sticky_event              (GstPad *pad, GstEvent *event);
1315 GstEvent*               gst_pad_get_sticky_event                (GstPad *pad, GstEventType event_type,
1316                                                                  guint idx);
1317 void                    gst_pad_sticky_events_foreach           (GstPad *pad, GstPadStickyEventsForeachFunction foreach_func, gpointer user_data);
1318
1319 /* data passing setup functions */
1320 void                    gst_pad_set_activate_function_full      (GstPad *pad,
1321                                                                  GstPadActivateFunction activate,
1322                                                                  gpointer user_data,
1323                                                                  GDestroyNotify notify);
1324 void                    gst_pad_set_activatemode_function_full  (GstPad *pad,
1325                                                                  GstPadActivateModeFunction activatemode,
1326                                                                  gpointer user_data,
1327                                                                  GDestroyNotify notify);
1328 /* data passing functions */
1329 void                    gst_pad_set_chain_function_full         (GstPad *pad,
1330                                                                  GstPadChainFunction chain,
1331                                                                  gpointer user_data,
1332                                                                  GDestroyNotify notify);
1333 void                    gst_pad_set_chain_list_function_full    (GstPad *pad,
1334                                                                  GstPadChainListFunction chainlist,
1335                                                                  gpointer user_data,
1336                                                                  GDestroyNotify notify);
1337 void                    gst_pad_set_getrange_function_full      (GstPad *pad,
1338                                                                  GstPadGetRangeFunction get,
1339                                                                  gpointer user_data,
1340                                                                  GDestroyNotify notify);
1341 void                    gst_pad_set_event_function_full         (GstPad *pad,
1342                                                                  GstPadEventFunction event,
1343                                                                  gpointer user_data,
1344                                                                  GDestroyNotify notify);
1345 void                    gst_pad_set_event_full_function_full    (GstPad *pad,
1346                                                                  GstPadEventFullFunction event,
1347                                                                  gpointer user_data,
1348                                                                  GDestroyNotify notify);
1349
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)
1357
1358 /* pad links */
1359 void                    gst_pad_set_link_function_full          (GstPad *pad,
1360                                                                  GstPadLinkFunction link,
1361                                                                  gpointer user_data,
1362                                                                  GDestroyNotify notify);
1363 void                    gst_pad_set_unlink_function_full        (GstPad *pad,
1364                                                                  GstPadUnlinkFunction unlink,
1365                                                                  gpointer user_data,
1366                                                                  GDestroyNotify notify);
1367
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)
1370
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);
1376
1377 GstPad*                 gst_pad_get_peer                        (GstPad *pad);
1378
1379 GstCaps*                gst_pad_get_pad_template_caps           (GstPad *pad);
1380
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);
1384
1385 /* capsnego for linked pads */
1386 GstCaps *               gst_pad_get_allowed_caps                (GstPad * pad);
1387
1388 /* pad offsets */
1389 gint64                  gst_pad_get_offset                      (GstPad *pad);
1390 void                    gst_pad_set_offset                      (GstPad *pad, gint64 offset);
1391
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,
1399                                                                  GstEvent *event);
1400 GstFlowReturn           gst_pad_get_last_flow_return            (GstPad *pad);
1401
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);
1408
1409 /* pad tasks */
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);
1414
1415 /* internal links */
1416 void                    gst_pad_set_iterate_internal_links_function_full (GstPad * pad,
1417                                                                  GstPadIterIntLinkFunction iterintlink,
1418                                                                  gpointer user_data,
1419                                                                  GDestroyNotify notify);
1420 GstIterator *           gst_pad_iterate_internal_links          (GstPad * pad);
1421 GstIterator *           gst_pad_iterate_internal_links_default  (GstPad * pad, GstObject *parent);
1422
1423 #define gst_pad_set_iterate_internal_links_function(p,f) gst_pad_set_iterate_internal_links_function_full((p),(f),NULL,NULL)
1424
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,
1429                                                                  gpointer user_data,
1430                                                                  GDestroyNotify notify);
1431 gboolean                gst_pad_query_default                   (GstPad *pad, GstObject *parent,
1432                                                                  GstQuery *query);
1433
1434 #define gst_pad_set_query_function(p,f)   gst_pad_set_query_function_full((p),(f),NULL,NULL)
1435
1436 /* misc helper functions */
1437 gboolean                gst_pad_forward                         (GstPad *pad, GstPadForwardFunction forward,
1438                                                                  gpointer user_data);
1439
1440 #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
1441 G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstPad, gst_object_unref)
1442 #endif
1443
1444 G_END_DECLS
1445
1446 #endif /* __GST_PAD_H__ */