bin: Use the new group-id field of the stream-start message for stream-start message...
[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 <gst/gstobject.h>
65 #include <gst/gstbuffer.h>
66 #include <gst/gstbufferlist.h>
67 #include <gst/gstcaps.h>
68 #include <gst/gstpadtemplate.h>
69 #include <gst/gstevent.h>
70 #include <gst/gstquery.h>
71 #include <gst/gsttask.h>
72
73 G_BEGIN_DECLS
74
75 /*
76  * Pad base class
77  */
78 #define GST_TYPE_PAD                    (gst_pad_get_type ())
79 #define GST_IS_PAD(obj)                 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_PAD))
80 #define GST_IS_PAD_CLASS(klass)         (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_PAD))
81 #define GST_PAD(obj)                    (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_PAD, GstPad))
82 #define GST_PAD_CLASS(klass)            (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_PAD, GstPadClass))
83 #define GST_PAD_CAST(obj)               ((GstPad*)(obj))
84
85
86
87 /**
88  * GstPadLinkReturn:
89  * @GST_PAD_LINK_OK             : link succeeded
90  * @GST_PAD_LINK_WRONG_HIERARCHY: pads have no common grandparent
91  * @GST_PAD_LINK_WAS_LINKED     : pad was already linked
92  * @GST_PAD_LINK_WRONG_DIRECTION: pads have wrong direction
93  * @GST_PAD_LINK_NOFORMAT       : pads do not have common format
94  * @GST_PAD_LINK_NOSCHED        : pads cannot cooperate in scheduling
95  * @GST_PAD_LINK_REFUSED        : refused for some reason
96  *
97  * Result values from gst_pad_link and friends.
98  */
99 typedef enum {
100   GST_PAD_LINK_OK               =  0,
101   GST_PAD_LINK_WRONG_HIERARCHY  = -1,
102   GST_PAD_LINK_WAS_LINKED       = -2,
103   GST_PAD_LINK_WRONG_DIRECTION  = -3,
104   GST_PAD_LINK_NOFORMAT         = -4,
105   GST_PAD_LINK_NOSCHED          = -5,
106   GST_PAD_LINK_REFUSED          = -6
107 } GstPadLinkReturn;
108
109 /**
110  * GST_PAD_LINK_FAILED:
111  * @ret: the #GstPadLinkReturn value
112  *
113  * Macro to test if the given #GstPadLinkReturn value indicates a failed
114  * link step.
115  */
116 #define GST_PAD_LINK_FAILED(ret) ((ret) < GST_PAD_LINK_OK)
117
118 /**
119  * GST_PAD_LINK_SUCCESSFUL:
120  * @ret: the #GstPadLinkReturn value
121  *
122  * Macro to test if the given #GstPadLinkReturn value indicates a successful
123  * link step.
124  */
125 #define GST_PAD_LINK_SUCCESSFUL(ret) ((ret) >= GST_PAD_LINK_OK)
126
127 /**
128  * GstFlowReturn:
129  * @GST_FLOW_OK:                 Data passing was ok.
130  * @GST_FLOW_NOT_LINKED:         Pad is not linked.
131  * @GST_FLOW_FLUSHING:           Pad is flushing.
132  * @GST_FLOW_EOS:                Pad is EOS.
133  * @GST_FLOW_NOT_NEGOTIATED:     Pad is not negotiated.
134  * @GST_FLOW_ERROR:              Some (fatal) error occured. Element generating
135  *                               this error should post an error message with more
136  *                               details.
137  * @GST_FLOW_NOT_SUPPORTED:      This operation is not supported.
138  * @GST_FLOW_CUSTOM_SUCCESS:     Elements can use values starting from
139  *                               this (and higher) to define custom success
140  *                               codes.
141  * @GST_FLOW_CUSTOM_SUCCESS_1:   Pre-defined custom success code (define your
142  *                               custom success code to this to avoid compiler
143  *                               warnings).
144  * @GST_FLOW_CUSTOM_SUCCESS_2:   Pre-defined custom success code.
145  * @GST_FLOW_CUSTOM_ERROR:       Elements can use values starting from
146  *                               this (and lower) to define custom error codes.
147  * @GST_FLOW_CUSTOM_ERROR_1:     Pre-defined custom error code (define your
148  *                               custom error code to this to avoid compiler
149  *                               warnings).
150  * @GST_FLOW_CUSTOM_ERROR_2:     Pre-defined custom error code.
151  *
152  * The result of passing data to a pad.
153  *
154  * Note that the custom return values should not be exposed outside of the
155  * element scope.
156  */
157 typedef enum {
158   /* custom success starts here */
159   GST_FLOW_CUSTOM_SUCCESS_2 = 102,
160   GST_FLOW_CUSTOM_SUCCESS_1 = 101,
161   GST_FLOW_CUSTOM_SUCCESS = 100,
162
163   /* core predefined */
164   GST_FLOW_OK             =  0,
165   /* expected failures */
166   GST_FLOW_NOT_LINKED     = -1,
167   GST_FLOW_FLUSHING       = -2,
168   /* error cases */
169   GST_FLOW_EOS            = -3,
170   GST_FLOW_NOT_NEGOTIATED = -4,
171   GST_FLOW_ERROR          = -5,
172   GST_FLOW_NOT_SUPPORTED  = -6,
173
174   /* custom error starts here */
175   GST_FLOW_CUSTOM_ERROR   = -100,
176   GST_FLOW_CUSTOM_ERROR_1 = -101,
177   GST_FLOW_CUSTOM_ERROR_2 = -102
178 } GstFlowReturn;
179
180 const gchar*            gst_flow_get_name       (GstFlowReturn ret);
181 GQuark                  gst_flow_to_quark       (GstFlowReturn ret);
182
183 /**
184  * GstPadLinkCheck:
185  * @GST_PAD_LINK_CHECK_NOTHING: Don't check hierarchy or caps compatibility.
186  * @GST_PAD_LINK_CHECK_HIERARCHY: Check the pads have same parents/grandparents.
187  *   Could be omitted if it is already known that the two elements that own the
188  *   pads are in the same bin.
189  * @GST_PAD_LINK_CHECK_TEMPLATE_CAPS: Check if the pads are compatible by using
190  *   their template caps. This is much faster than @GST_PAD_LINK_CHECK_CAPS, but
191  *   would be unsafe e.g. if one pad has %GST_CAPS_ANY.
192  * @GST_PAD_LINK_CHECK_CAPS: Check if the pads are compatible by comparing the
193  *   caps returned by gst_pad_query_caps().
194  * @GST_PAD_LINK_CHECK_DEFAULT: The default checks done when linking
195  *   pads (i.e. the ones used by gst_pad_link()).
196  *
197  * The amount of checking to be done when linking pads. @GST_PAD_LINK_CHECK_CAPS
198  * and @GST_PAD_LINK_CHECK_TEMPLATE_CAPS are mutually exclusive. If both are
199  * specified, expensive but safe @GST_PAD_LINK_CHECK_CAPS are performed.
200  *
201  * <warning><para>
202  * Only disable some of the checks if you are 100% certain you know the link
203  * will not fail because of hierarchy/caps compatibility failures. If uncertain,
204  * use the default checks (%GST_PAD_LINK_CHECK_DEFAULT) or the regular methods
205  * for linking the pads.
206  * </para></warning>
207  */
208
209 typedef enum {
210   GST_PAD_LINK_CHECK_NOTHING       = 0,
211   GST_PAD_LINK_CHECK_HIERARCHY     = 1 << 0,
212   GST_PAD_LINK_CHECK_TEMPLATE_CAPS = 1 << 1,
213   GST_PAD_LINK_CHECK_CAPS          = 1 << 2,
214
215   GST_PAD_LINK_CHECK_DEFAULT       = GST_PAD_LINK_CHECK_HIERARCHY | GST_PAD_LINK_CHECK_CAPS
216 } GstPadLinkCheck;
217
218 /* pad states */
219 /**
220  * GstPadActivateFunction:
221  * @pad: a #GstPad
222  * @parent: the parent of @pad
223  *
224  * This function is called when the pad is activated during the element
225  * READY to PAUSED state change. By default this function will call the
226  * activate function that puts the pad in push mode but elements can
227  * override this function to activate the pad in pull mode if they wish.
228  *
229  * Returns: TRUE if the pad could be activated.
230  */
231 typedef gboolean                (*GstPadActivateFunction)       (GstPad *pad, GstObject *parent);
232 /**
233  * GstPadActivateModeFunction:
234  * @pad: a #GstPad
235  * @parent: the parent of @pad
236  * @mode: the requested activation mode of @pad
237  * @active: activate or deactivate the pad.
238  *
239  * The prototype of the push and pull activate functions.
240  *
241  * Returns: TRUE if the pad could be activated or deactivated.
242  */
243 typedef gboolean                (*GstPadActivateModeFunction)   (GstPad *pad, GstObject *parent,
244                                                                  GstPadMode mode, gboolean active);
245
246
247 /* data passing */
248 /**
249  * GstPadChainFunction:
250  * @pad: the sink #GstPad that performed the chain.
251  * @parent: the parent of @pad. If the #GST_PAD_FLAG_NEED_PARENT flag is set,
252  *          @parent is guaranteed to be not-NULL and remain valid during the
253  *          execution of this function.
254  * @buffer: the #GstBuffer that is chained, not %NULL.
255  *
256  * A function that will be called on sinkpads when chaining buffers.
257  * The function typically processes the data contained in the buffer and
258  * either consumes the data or passes it on to the internally linked pad(s).
259  *
260  * The implementer of this function receives a refcount to @buffer and should
261  * gst_buffer_unref() when the buffer is no longer needed.
262  *
263  * When a chain function detects an error in the data stream, it must post an
264  * error on the bus and return an appropriate #GstFlowReturn value.
265  *
266  * Returns: #GST_FLOW_OK for success
267  */
268 typedef GstFlowReturn           (*GstPadChainFunction)          (GstPad *pad, GstObject *parent,
269                                                                  GstBuffer *buffer);
270
271 /**
272  * GstPadChainListFunction:
273  * @pad: the sink #GstPad that performed the chain.
274  * @parent: the parent of @pad. If the #GST_PAD_FLAG_NEED_PARENT flag is set,
275  *          @parent is guaranteed to be not-NULL and remain valid during the
276  *          execution of this function.
277  * @list: the #GstBufferList that is chained, not %NULL.
278  *
279  * A function that will be called on sinkpads when chaining buffer lists.
280  * The function typically processes the data contained in the buffer list and
281  * either consumes the data or passes it on to the internally linked pad(s).
282  *
283  * The implementer of this function receives a refcount to @list and
284  * should gst_buffer_list_unref() when the list is no longer needed.
285  *
286  * When a chainlist function detects an error in the data stream, it must
287  * post an error on the bus and return an appropriate #GstFlowReturn value.
288  *
289  * Returns: #GST_FLOW_OK for success
290  */
291 typedef GstFlowReturn           (*GstPadChainListFunction)      (GstPad *pad, GstObject *parent,
292                                                                  GstBufferList *list);
293
294 /**
295  * GstPadGetRangeFunction:
296  * @pad: the src #GstPad to perform the getrange on.
297  * @parent: the parent of @pad. If the #GST_PAD_FLAG_NEED_PARENT flag is set,
298  *          @parent is guaranteed to be not-NULL and remain valid during the
299  *          execution of this function.
300  * @offset: the offset of the range
301  * @length: the length of the range
302  * @buffer: a memory location to hold the result buffer, cannot be NULL.
303  *
304  * This function will be called on source pads when a peer element
305  * request a buffer at the specified @offset and @length. If this function
306  * returns #GST_FLOW_OK, the result buffer will be stored in @buffer. The
307  * contents of @buffer is invalid for any other return value.
308  *
309  * This function is installed on a source pad with
310  * gst_pad_set_getrange_function() and can only be called on source pads after
311  * they are successfully activated with gst_pad_activate_mode() with the
312  * #GST_PAD_MODE_PULL.
313  *
314  * @offset and @length are always given in byte units. @offset must normally be a value
315  * between 0 and the length in bytes of the data available on @pad. The
316  * length (duration in bytes) can be retrieved with a #GST_QUERY_DURATION or with a
317  * #GST_QUERY_SEEKING.
318  *
319  * Any @offset larger or equal than the length will make the function return
320  * #GST_FLOW_EOS, which corresponds to EOS. In this case @buffer does not
321  * contain a valid buffer.
322  *
323  * The buffer size of @buffer will only be smaller than @length when @offset is
324  * near the end of the stream. In all other cases, the size of @buffer must be
325  * exactly the requested size.
326  *
327  * It is allowed to call this function with a 0 @length and valid @offset, in
328  * which case @buffer will contain a 0-sized buffer and the function returns
329  * #GST_FLOW_OK.
330  *
331  * When this function is called with a -1 @offset, the sequentially next buffer
332  * of length @length in the stream is returned.
333  *
334  * When this function is called with a -1 @length, a buffer with a default
335  * optimal length is returned in @buffer. The length might depend on the value
336  * of @offset.
337  *
338  * Returns: #GST_FLOW_OK for success and a valid buffer in @buffer. Any other
339  * return value leaves @buffer undefined.
340  */
341 typedef GstFlowReturn           (*GstPadGetRangeFunction)       (GstPad *pad, GstObject *parent,
342                                                                  guint64 offset, guint length,
343                                                                  GstBuffer **buffer);
344
345 /**
346  * GstPadEventFunction:
347  * @pad: the #GstPad to handle the event.
348  * @parent: the parent of @pad. If the #GST_PAD_FLAG_NEED_PARENT flag is set,
349  *          @parent is guaranteed to be not-NULL and remain valid during the
350  *          execution of this function.
351  * @event: the #GstEvent to handle.
352  *
353  * Function signature to handle an event for the pad.
354  *
355  * Returns: TRUE if the pad could handle the event.
356  */
357 typedef gboolean                (*GstPadEventFunction)          (GstPad *pad, GstObject *parent,
358                                                                  GstEvent *event);
359
360
361 /* internal links */
362 /**
363  * GstPadIterIntLinkFunction:
364  * @pad: The #GstPad to query.
365  * @parent: the parent of @pad. If the #GST_PAD_FLAG_NEED_PARENT flag is set,
366  *          @parent is guaranteed to be not-NULL and remain valid during the
367  *          execution of this function.
368  *
369  * The signature of the internal pad link iterator function.
370  *
371  * Returns: a new #GstIterator that will iterate over all pads that are
372  * linked to the given pad on the inside of the parent element.
373  *
374  * the caller must call gst_iterator_free() after usage.
375  */
376 typedef GstIterator*           (*GstPadIterIntLinkFunction)    (GstPad *pad, GstObject *parent);
377
378 /* generic query function */
379 /**
380  * GstPadQueryFunction:
381  * @pad: the #GstPad to query.
382  * @parent: the parent of @pad. If the #GST_PAD_FLAG_NEED_PARENT flag is set,
383  *          @parent is guaranteed to be not-NULL and remain valid during the
384  *          execution of this function.
385  * @query: the #GstQuery object to execute
386  *
387  * The signature of the query function.
388  *
389  * Returns: TRUE if the query could be performed.
390  */
391 typedef gboolean                (*GstPadQueryFunction)          (GstPad *pad, GstObject *parent,
392                                                                  GstQuery *query);
393
394
395 /* linking */
396 /**
397  * GstPadLinkFunction:
398  * @pad: the #GstPad that is linked.
399  * @parent: the parent of @pad. If the #GST_PAD_FLAG_NEED_PARENT flag is set,
400  *          @parent is guaranteed to be not-NULL and remain valid during the
401  *          execution of this function.
402  * @peer: the peer #GstPad of the link
403  *
404  * Function signature to handle a new link on the pad.
405  *
406  * Returns: the result of the link with the specified peer.
407  */
408 typedef GstPadLinkReturn        (*GstPadLinkFunction)           (GstPad *pad, GstObject *parent, GstPad *peer);
409 /**
410  * GstPadUnlinkFunction:
411  * @pad: the #GstPad that is linked.
412  * @parent: the parent of @pad. If the #GST_PAD_FLAG_NEED_PARENT flag is set,
413  *          @parent is guaranteed to be not-NULL and remain valid during the
414  *          execution of this function.
415  *
416  * Function signature to handle a unlinking the pad prom its peer.
417  */
418 typedef void                    (*GstPadUnlinkFunction)         (GstPad *pad, GstObject *parent);
419
420
421 /* misc */
422 /**
423  * GstPadForwardFunction:
424  * @pad: the #GstPad that is forwarded.
425  * @user_data: the gpointer to optional user data.
426  *
427  * A forward function is called for all internally linked pads, see
428  * gst_pad_forward().
429  *
430  * Returns: TRUE if the dispatching procedure has to be stopped.
431  */
432 typedef gboolean                (*GstPadForwardFunction)        (GstPad *pad, gpointer user_data);
433
434 /**
435  * GstPadProbeType:
436  * @GST_PAD_PROBE_TYPE_INVALID: invalid probe type
437  * @GST_PAD_PROBE_TYPE_IDLE: probe idle pads and block
438  * @GST_PAD_PROBE_TYPE_BLOCK: probe and block pads
439  * @GST_PAD_PROBE_TYPE_BUFFER: probe buffers
440  * @GST_PAD_PROBE_TYPE_BUFFER_LIST: probe buffer lists
441  * @GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM: probe downstream events
442  * @GST_PAD_PROBE_TYPE_EVENT_UPSTREAM: probe upstream events
443  * @GST_PAD_PROBE_TYPE_EVENT_FLUSH: probe flush events. This probe has to be
444  *     explicitly enabled and is not included in the
445  *     @@GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM or
446  *     @@GST_PAD_PROBE_TYPE_EVENT_UPSTREAM probe types.
447  * @GST_PAD_PROBE_TYPE_QUERY_DOWNSTREAM: probe downstream queries
448  * @GST_PAD_PROBE_TYPE_QUERY_UPSTREAM: probe upstream queries
449  * @GST_PAD_PROBE_TYPE_PUSH: probe push
450  * @GST_PAD_PROBE_TYPE_PULL: probe pull
451  * @GST_PAD_PROBE_TYPE_BLOCKING: probe and block at the next opportunity, at data flow or when idle
452  * @GST_PAD_PROBE_TYPE_DATA_DOWNSTREAM: probe downstream data (buffers, buffer lists, and events)
453  * @GST_PAD_PROBE_TYPE_DATA_UPSTREAM: probe upstream data (events)
454  * @GST_PAD_PROBE_TYPE_DATA_BOTH: probe upstream and downstream data (buffers, buffer lists, and events)
455  * @GST_PAD_PROBE_TYPE_BLOCK_DOWNSTREAM: probe and block downstream data (buffers, buffer lists, and events)
456  * @GST_PAD_PROBE_TYPE_BLOCK_UPSTREAM: probe and block upstream data (events)
457  * @GST_PAD_PROBE_TYPE_EVENT_BOTH: probe upstream and downstream events
458  * @GST_PAD_PROBE_TYPE_QUERY_BOTH: probe upstream and downstream queries
459  * @GST_PAD_PROBE_TYPE_ALL_BOTH: probe upstream events and queries and downstream buffers, buffer lists, events and queries
460  * @GST_PAD_PROBE_TYPE_SCHEDULING: probe push and pull
461  *
462  * The different probing types that can occur. When either one of
463  * @GST_PAD_PROBE_TYPE_IDLE or @GST_PAD_PROBE_TYPE_BLOCK is used, the probe will be a
464  * blocking probe.
465  */
466 typedef enum
467 {
468   GST_PAD_PROBE_TYPE_INVALID          = 0,
469   /* flags to control blocking */
470   GST_PAD_PROBE_TYPE_IDLE             = (1 << 0),
471   GST_PAD_PROBE_TYPE_BLOCK            = (1 << 1),
472   /* flags to select datatypes */
473   GST_PAD_PROBE_TYPE_BUFFER           = (1 << 4),
474   GST_PAD_PROBE_TYPE_BUFFER_LIST      = (1 << 5),
475   GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM = (1 << 6),
476   GST_PAD_PROBE_TYPE_EVENT_UPSTREAM   = (1 << 7),
477   GST_PAD_PROBE_TYPE_EVENT_FLUSH      = (1 << 8),
478   GST_PAD_PROBE_TYPE_QUERY_DOWNSTREAM = (1 << 9),
479   GST_PAD_PROBE_TYPE_QUERY_UPSTREAM   = (1 << 10),
480   /* flags to select scheduling mode */
481   GST_PAD_PROBE_TYPE_PUSH             = (1 << 12),
482   GST_PAD_PROBE_TYPE_PULL             = (1 << 13),
483
484   /* flag combinations */
485   GST_PAD_PROBE_TYPE_BLOCKING         = GST_PAD_PROBE_TYPE_IDLE | GST_PAD_PROBE_TYPE_BLOCK,
486   GST_PAD_PROBE_TYPE_DATA_DOWNSTREAM  = GST_PAD_PROBE_TYPE_BUFFER | GST_PAD_PROBE_TYPE_BUFFER_LIST | GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM,
487   GST_PAD_PROBE_TYPE_DATA_UPSTREAM    = GST_PAD_PROBE_TYPE_EVENT_UPSTREAM,
488   GST_PAD_PROBE_TYPE_DATA_BOTH        = GST_PAD_PROBE_TYPE_DATA_DOWNSTREAM | GST_PAD_PROBE_TYPE_DATA_UPSTREAM,
489   GST_PAD_PROBE_TYPE_BLOCK_DOWNSTREAM = GST_PAD_PROBE_TYPE_BLOCK | GST_PAD_PROBE_TYPE_DATA_DOWNSTREAM,
490   GST_PAD_PROBE_TYPE_BLOCK_UPSTREAM   = GST_PAD_PROBE_TYPE_BLOCK | GST_PAD_PROBE_TYPE_DATA_UPSTREAM,
491   GST_PAD_PROBE_TYPE_EVENT_BOTH       = GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM | GST_PAD_PROBE_TYPE_EVENT_UPSTREAM,
492   GST_PAD_PROBE_TYPE_QUERY_BOTH       = GST_PAD_PROBE_TYPE_QUERY_DOWNSTREAM | GST_PAD_PROBE_TYPE_QUERY_UPSTREAM,
493   GST_PAD_PROBE_TYPE_ALL_BOTH         = GST_PAD_PROBE_TYPE_DATA_BOTH | GST_PAD_PROBE_TYPE_QUERY_BOTH,
494   GST_PAD_PROBE_TYPE_SCHEDULING       = GST_PAD_PROBE_TYPE_PUSH | GST_PAD_PROBE_TYPE_PULL
495 } GstPadProbeType;
496
497
498 /**
499  * GstPadProbeReturn:
500  * @GST_PAD_PROBE_OK: normal probe return value
501  * @GST_PAD_PROBE_DROP: drop data in data probes. For push mode this means that
502  *        the data item is not sent downstream. For pull mode, it means that the
503  *        data item is not passed upstream. In both cases, this result code
504  *        returns #GST_FLOW_OK or %TRUE to the caller.
505  * @GST_PAD_PROBE_REMOVE: remove probe
506  * @GST_PAD_PROBE_PASS: pass the data item in the block probe and block on
507  *                         the next item
508  *
509  * Different return values for the #GstPadProbeCallback.
510  */
511 typedef enum
512 {
513   GST_PAD_PROBE_DROP,
514   GST_PAD_PROBE_OK,
515   GST_PAD_PROBE_REMOVE,
516   GST_PAD_PROBE_PASS,
517 } GstPadProbeReturn;
518
519
520 /**
521  * GstPadProbeInfo:
522  * @type: the current probe type
523  * @id: the id of the probe
524  * @data: type specific data, check the @type field to know the datatype.
525  *    This field can be NULL.
526  * @offset: offset of pull probe, this field is valid when @type contains
527  *    #GST_PAD_PROBE_TYPE_PULL
528  * @size: size of pull probe, this field is valid when @type contains
529  *    #GST_PAD_PROBE_TYPE_PULL
530  *
531  * Info passed in the #GstPadProbeCallback.
532  */
533 struct _GstPadProbeInfo
534 {
535   GstPadProbeType type;
536   gulong id;
537   gpointer data;
538   guint64 offset;
539   guint size;
540
541   /*< private >*/
542   gpointer _gst_reserved[GST_PADDING];
543 };
544
545 #define GST_PAD_PROBE_INFO_TYPE(d)         ((d)->type)
546 #define GST_PAD_PROBE_INFO_ID(d)           ((d)->id)
547 #define GST_PAD_PROBE_INFO_DATA(d)         ((d)->data)
548
549 #define GST_PAD_PROBE_INFO_BUFFER(d)       GST_BUFFER_CAST(GST_PAD_PROBE_INFO_DATA(d))
550 #define GST_PAD_PROBE_INFO_BUFFER_LIST(d)  GST_BUFFER_LIST_CAST(GST_PAD_PROBE_INFO_DATA(d))
551 #define GST_PAD_PROBE_INFO_EVENT(d)        GST_EVENT_CAST(GST_PAD_PROBE_INFO_DATA(d))
552 #define GST_PAD_PROBE_INFO_QUERY(d)        GST_QUERY_CAST(GST_PAD_PROBE_INFO_DATA(d))
553
554 #define GST_PAD_PROBE_INFO_OFFSET(d)       ((d)->offset)
555 #define GST_PAD_PROBE_INFO_SIZE(d)         ((d)->size)
556
557 GstEvent*      gst_pad_probe_info_get_event       (GstPadProbeInfo * info);
558 GstQuery*      gst_pad_probe_info_get_query       (GstPadProbeInfo * info);
559 GstBuffer*     gst_pad_probe_info_get_buffer      (GstPadProbeInfo * info);
560 GstBufferList* gst_pad_probe_info_get_buffer_list (GstPadProbeInfo * info);
561
562 /**
563  * GstPadProbeCallback:
564  * @pad: the #GstPad that is blocked
565  * @info: #GstPadProbeInfo
566  * @user_data: the gpointer to optional user data.
567  *
568  * Callback used by gst_pad_add_probe(). Gets called to notify about the current
569  * blocking type.
570  *
571  * The callback is allowed to modify the data pointer in @info.
572  *
573  * Returns: a #GstPadProbeReturn
574  */
575 typedef GstPadProbeReturn   (*GstPadProbeCallback)   (GstPad *pad, GstPadProbeInfo *info,
576                                                       gpointer user_data);
577
578 /**
579  * GstPadStickyEventsForeachFunction:
580  * @pad: the #GstPad.
581  * @event: a sticky #GstEvent.
582  * @user_data: the #gpointer to optional user data.
583  *
584  * Callback used by gst_pad_sticky_events_foreach().
585  *
586  * When this function returns %TRUE, the next event will be
587  * returned. When %FALSE is returned, gst_pad_sticky_events_foreach() will return.
588  *
589  * When @event is set to NULL, the item will be removed from the list of sticky events.
590  * @event can be replaced by assigning a new reference to it.
591  * This function is responsible for unreffing the old event when
592  * removing or modifying.
593  *
594  * Returns: %TRUE if the iteration should continue
595  */
596 typedef gboolean  (*GstPadStickyEventsForeachFunction) (GstPad *pad, GstEvent **event,
597                                                         gpointer user_data);
598
599 /**
600  * GstPadFlags:
601  * @GST_PAD_FLAG_BLOCKED: is dataflow on a pad blocked
602  * @GST_PAD_FLAG_FLUSHING: is pad flushing
603  * @GST_PAD_FLAG_EOS: is pad in EOS state
604  * @GST_PAD_FLAG_BLOCKING: is pad currently blocking on a buffer or event
605  * @GST_PAD_FLAG_NEED_PARENT: ensure that there is a parent object before calling
606  *                       into the pad callbacks.
607  * @GST_PAD_FLAG_NEED_RECONFIGURE: the pad should be reconfigured/renegotiated.
608  *                            The flag has to be unset manually after
609  *                            reconfiguration happened.
610  * @GST_PAD_FLAG_PENDING_EVENTS: the pad has pending events
611  * @GST_PAD_FLAG_FIXED_CAPS: the pad is using fixed caps this means that once the
612  *                      caps are set on the pad, the caps query function only
613  *                      returns those caps.
614  * @GST_PAD_FLAG_PROXY_CAPS: the default event and query handler will forward
615  *                      all events and queries to the internally linked pads
616  *                      instead of discarding them.
617  * @GST_PAD_FLAG_PROXY_ALLOCATION: the default query handler will forward
618  *                      allocation queries to the internally linked pads
619  *                      instead of discarding them.
620  * @GST_PAD_FLAG_PROXY_SCHEDULING: the default query handler will forward
621  *                      scheduling queries to the internally linked pads
622  *                      instead of discarding them.
623  * @GST_PAD_FLAG_LAST: offset to define more flags
624  *
625  * Pad state flags
626  */
627 typedef enum {
628   GST_PAD_FLAG_BLOCKED          = (GST_OBJECT_FLAG_LAST << 0),
629   GST_PAD_FLAG_FLUSHING         = (GST_OBJECT_FLAG_LAST << 1),
630   GST_PAD_FLAG_EOS              = (GST_OBJECT_FLAG_LAST << 2),
631   GST_PAD_FLAG_BLOCKING         = (GST_OBJECT_FLAG_LAST << 3),
632   GST_PAD_FLAG_NEED_PARENT      = (GST_OBJECT_FLAG_LAST << 4),
633   GST_PAD_FLAG_NEED_RECONFIGURE = (GST_OBJECT_FLAG_LAST << 5),
634   GST_PAD_FLAG_PENDING_EVENTS   = (GST_OBJECT_FLAG_LAST << 6),
635   GST_PAD_FLAG_FIXED_CAPS       = (GST_OBJECT_FLAG_LAST << 7),
636   GST_PAD_FLAG_PROXY_CAPS       = (GST_OBJECT_FLAG_LAST << 8),
637   GST_PAD_FLAG_PROXY_ALLOCATION = (GST_OBJECT_FLAG_LAST << 9),
638   GST_PAD_FLAG_PROXY_SCHEDULING = (GST_OBJECT_FLAG_LAST << 10),
639   /* padding */
640   GST_PAD_FLAG_LAST        = (GST_OBJECT_FLAG_LAST << 16)
641 } GstPadFlags;
642
643 /**
644  * GstPad:
645  * @element_private: private data owned by the parent element
646  * @padtemplate: padtemplate for this pad
647  * @direction: the direction of the pad, cannot change after creating
648  *             the pad.
649  *
650  * The #GstPad structure. Use the functions to update the variables.
651  */
652 struct _GstPad {
653   GstObject                      object;
654
655   /*< public >*/
656   gpointer                       element_private;
657
658   GstPadTemplate                *padtemplate;
659
660   GstPadDirection                direction;
661
662   /*< private >*/
663   /* streaming rec_lock */
664   GRecMutex                      stream_rec_lock;
665   GstTask                       *task;
666
667   /* block cond, mutex is from the object */
668   GCond                          block_cond;
669   GHookList                      probes;
670
671   GstPadMode                     mode;
672   GstPadActivateFunction         activatefunc;
673   gpointer                       activatedata;
674   GDestroyNotify                 activatenotify;
675   GstPadActivateModeFunction     activatemodefunc;
676   gpointer                       activatemodedata;
677   GDestroyNotify                 activatemodenotify;
678
679   /* pad link */
680   GstPad                        *peer;
681   GstPadLinkFunction             linkfunc;
682   gpointer                       linkdata;
683   GDestroyNotify                 linknotify;
684   GstPadUnlinkFunction           unlinkfunc;
685   gpointer                       unlinkdata;
686   GDestroyNotify                 unlinknotify;
687
688   /* data transport functions */
689   GstPadChainFunction            chainfunc;
690   gpointer                       chaindata;
691   GDestroyNotify                 chainnotify;
692   GstPadChainListFunction        chainlistfunc;
693   gpointer                       chainlistdata;
694   GDestroyNotify                 chainlistnotify;
695   GstPadGetRangeFunction         getrangefunc;
696   gpointer                       getrangedata;
697   GDestroyNotify                 getrangenotify;
698   GstPadEventFunction            eventfunc;
699   gpointer                       eventdata;
700   GDestroyNotify                 eventnotify;
701
702   /* pad offset */
703   gint64                         offset;
704
705   /* generic query method */
706   GstPadQueryFunction            queryfunc;
707   gpointer                       querydata;
708   GDestroyNotify                 querynotify;
709
710   /* internal links */
711   GstPadIterIntLinkFunction      iterintlinkfunc;
712   gpointer                       iterintlinkdata;
713   GDestroyNotify                 iterintlinknotify;
714
715   /* counts number of probes attached. */
716   gint                           num_probes;
717   gint                           num_blocked;
718
719   GstPadPrivate                 *priv;
720
721   gpointer _gst_reserved[GST_PADDING];
722 };
723
724 struct _GstPadClass {
725   GstObjectClass        parent_class;
726
727   /* signal callbacks */
728   void          (*linked)               (GstPad *pad, GstPad *peer);
729   void          (*unlinked)             (GstPad *pad, GstPad *peer);
730
731   /*< private >*/
732   gpointer _gst_reserved[GST_PADDING];
733 };
734
735
736 /***** helper macros *****/
737 /* GstPad */
738 #define GST_PAD_NAME(pad)               (GST_OBJECT_NAME(pad))
739 #define GST_PAD_PARENT(pad)             (GST_ELEMENT_CAST(GST_OBJECT_PARENT(pad)))
740 #define GST_PAD_ELEMENT_PRIVATE(pad)    (GST_PAD_CAST(pad)->element_private)
741 #define GST_PAD_PAD_TEMPLATE(pad)       (GST_PAD_CAST(pad)->padtemplate)
742 #define GST_PAD_DIRECTION(pad)          (GST_PAD_CAST(pad)->direction)
743 #define GST_PAD_TASK(pad)               (GST_PAD_CAST(pad)->task)
744 #define GST_PAD_MODE(pad)               (GST_PAD_CAST(pad)->mode)
745
746 #define GST_PAD_ACTIVATEFUNC(pad)       (GST_PAD_CAST(pad)->activatefunc)
747 #define GST_PAD_ACTIVATEMODEFUNC(pad)   (GST_PAD_CAST(pad)->activatemodefunc)
748 #define GST_PAD_CHAINFUNC(pad)          (GST_PAD_CAST(pad)->chainfunc)
749 #define GST_PAD_CHAINLISTFUNC(pad)      (GST_PAD_CAST(pad)->chainlistfunc)
750 #define GST_PAD_GETRANGEFUNC(pad)       (GST_PAD_CAST(pad)->getrangefunc)
751 #define GST_PAD_EVENTFUNC(pad)          (GST_PAD_CAST(pad)->eventfunc)
752 #define GST_PAD_QUERYFUNC(pad)          (GST_PAD_CAST(pad)->queryfunc)
753 #define GST_PAD_ITERINTLINKFUNC(pad)    (GST_PAD_CAST(pad)->iterintlinkfunc)
754
755 #define GST_PAD_PEER(pad)               (GST_PAD_CAST(pad)->peer)
756 #define GST_PAD_LINKFUNC(pad)           (GST_PAD_CAST(pad)->linkfunc)
757 #define GST_PAD_UNLINKFUNC(pad)         (GST_PAD_CAST(pad)->unlinkfunc)
758
759 #define GST_PAD_IS_SRC(pad)             (GST_PAD_DIRECTION(pad) == GST_PAD_SRC)
760 #define GST_PAD_IS_SINK(pad)            (GST_PAD_DIRECTION(pad) == GST_PAD_SINK)
761
762 #define GST_PAD_IS_LINKED(pad)          (GST_PAD_PEER(pad) != NULL)
763
764 #define GST_PAD_IS_ACTIVE(pad)          (GST_PAD_MODE(pad) != GST_PAD_MODE_NONE)
765
766 #define GST_PAD_IS_BLOCKED(pad)         (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_BLOCKED))
767 #define GST_PAD_IS_BLOCKING(pad)        (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_BLOCKING))
768
769 #define GST_PAD_IS_FLUSHING(pad)        (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_FLUSHING))
770 #define GST_PAD_SET_FLUSHING(pad)       (GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_FLUSHING))
771 #define GST_PAD_UNSET_FLUSHING(pad)     (GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_FLUSHING))
772
773 #define GST_PAD_IS_EOS(pad)             (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_EOS))
774
775 #define GST_PAD_NEEDS_RECONFIGURE(pad)  (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_NEED_RECONFIGURE))
776 #define GST_PAD_HAS_PENDING_EVENTS(pad) (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_PENDING_EVENTS))
777 #define GST_PAD_IS_FIXED_CAPS(pad)      (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_FIXED_CAPS))
778 #define GST_PAD_NEEDS_PARENT(pad)       (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_NEED_PARENT))
779
780 #define GST_PAD_IS_PROXY_CAPS(pad)      (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_PROXY_CAPS))
781 #define GST_PAD_SET_PROXY_CAPS(pad)     (GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PROXY_CAPS))
782 #define GST_PAD_UNSET_PROXY_CAPS(pad)   (GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_PROXY_CAPS))
783
784 #define GST_PAD_IS_PROXY_ALLOCATION(pad)    (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_PROXY_ALLOCATION))
785 #define GST_PAD_SET_PROXY_ALLOCATION(pad)   (GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PROXY_ALLOCATION))
786 #define GST_PAD_UNSET_PROXY_ALLOCATION(pad) (GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_PROXY_ALLOCATION))
787
788 #define GST_PAD_IS_PROXY_SCHEDULING(pad)    (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLAG_PROXY_SCHEDULING))
789 #define GST_PAD_SET_PROXY_SCHEDULING(pad)   (GST_OBJECT_FLAG_SET (pad, GST_PAD_FLAG_PROXY_SCHEDULING))
790 #define GST_PAD_UNSET_PROXY_SCHEDULING(pad) (GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLAG_PROXY_SCHEDULING))
791
792 /**
793  * GST_PAD_GET_STREAM_LOCK:
794  * @pad: a #GstPad
795  *
796  * Get the stream lock of @pad. The stream lock is protecting the
797  * resources used in the data processing functions of @pad.
798  */
799 #define GST_PAD_GET_STREAM_LOCK(pad)    (&(GST_PAD_CAST(pad)->stream_rec_lock))
800 /**
801  * GST_PAD_STREAM_LOCK:
802  * @pad: a #GstPad
803  *
804  * Lock the stream lock of @pad.
805  */
806 #define GST_PAD_STREAM_LOCK(pad)        g_rec_mutex_lock(GST_PAD_GET_STREAM_LOCK(pad))
807 /**
808  * GST_PAD_STREAM_TRYLOCK:
809  * @pad: a #GstPad
810  *
811  * Try to Lock the stream lock of the pad, return TRUE if the lock could be
812  * taken.
813  */
814 #define GST_PAD_STREAM_TRYLOCK(pad)     g_rec_mutex_trylock(GST_PAD_GET_STREAM_LOCK(pad))
815 /**
816  * GST_PAD_STREAM_UNLOCK:
817  * @pad: a #GstPad
818  *
819  * Unlock the stream lock of @pad.
820  */
821 #define GST_PAD_STREAM_UNLOCK(pad)      g_rec_mutex_unlock(GST_PAD_GET_STREAM_LOCK(pad))
822
823 #define GST_PAD_BLOCK_GET_COND(pad)     (&GST_PAD_CAST(pad)->block_cond)
824 #define GST_PAD_BLOCK_WAIT(pad)         (g_cond_wait(GST_PAD_BLOCK_GET_COND (pad), GST_OBJECT_GET_LOCK (pad)))
825 #define GST_PAD_BLOCK_SIGNAL(pad)       (g_cond_signal(GST_PAD_BLOCK_GET_COND (pad)))
826 #define GST_PAD_BLOCK_BROADCAST(pad)    (g_cond_broadcast(GST_PAD_BLOCK_GET_COND (pad)))
827
828 GType                   gst_pad_get_type                        (void);
829
830 /* creating pads */
831 GstPad*                 gst_pad_new                             (const gchar *name, GstPadDirection direction);
832 GstPad*                 gst_pad_new_from_template               (GstPadTemplate *templ, const gchar *name);
833 GstPad*                 gst_pad_new_from_static_template        (GstStaticPadTemplate *templ, const gchar *name);
834
835
836 /**
837  * gst_pad_get_name:
838  * @pad: the pad to get the name from
839  *
840  * Get a copy of the name of the pad. g_free() after usage.
841  *
842  * MT safe.
843  */
844 #define gst_pad_get_name(pad) gst_object_get_name (GST_OBJECT_CAST (pad))
845 /**
846  * gst_pad_get_parent:
847  * @pad: the pad to get the parent of
848  *
849  * Get the parent of @pad. This function increases the refcount
850  * of the parent object so you should gst_object_unref() it after usage.
851  * Can return NULL if the pad did not have a parent.
852  *
853  * MT safe.
854  */
855 #define gst_pad_get_parent(pad) gst_object_get_parent (GST_OBJECT_CAST (pad))
856
857 GstPadDirection         gst_pad_get_direction                   (GstPad *pad);
858
859 gboolean                gst_pad_set_active                      (GstPad *pad, gboolean active);
860 gboolean                gst_pad_is_active                       (GstPad *pad);
861 gboolean                gst_pad_activate_mode                   (GstPad *pad, GstPadMode mode,
862                                                                  gboolean active);
863
864 gulong                  gst_pad_add_probe                       (GstPad *pad,
865                                                                  GstPadProbeType mask,
866                                                                  GstPadProbeCallback callback,
867                                                                  gpointer user_data,
868                                                                  GDestroyNotify destroy_data);
869 void                    gst_pad_remove_probe                    (GstPad *pad, gulong id);
870
871 gboolean                gst_pad_is_blocked                      (GstPad *pad);
872 gboolean                gst_pad_is_blocking                     (GstPad *pad);
873
874 void                    gst_pad_mark_reconfigure                (GstPad *pad);
875 gboolean                gst_pad_needs_reconfigure               (GstPad *pad);
876 gboolean                gst_pad_check_reconfigure               (GstPad *pad);
877
878 void                    gst_pad_set_element_private             (GstPad *pad, gpointer priv);
879 gpointer                gst_pad_get_element_private             (GstPad *pad);
880
881 GstPadTemplate*         gst_pad_get_pad_template                (GstPad *pad);
882
883 GstFlowReturn           gst_pad_store_sticky_event              (GstPad *pad, GstEvent *event);
884 GstEvent*               gst_pad_get_sticky_event                (GstPad *pad, GstEventType event_type,
885                                                                  guint idx);
886 void                    gst_pad_sticky_events_foreach           (GstPad *pad, GstPadStickyEventsForeachFunction foreach_func, gpointer user_data);
887
888 /* data passing setup functions */
889 void                    gst_pad_set_activate_function_full      (GstPad *pad,
890                                                                  GstPadActivateFunction activate,
891                                                                  gpointer user_data,
892                                                                  GDestroyNotify notify);
893 void                    gst_pad_set_activatemode_function_full  (GstPad *pad,
894                                                                  GstPadActivateModeFunction activatemode,
895                                                                  gpointer user_data,
896                                                                  GDestroyNotify notify);
897 /* data passing functions */
898 void                    gst_pad_set_chain_function_full         (GstPad *pad,
899                                                                  GstPadChainFunction chain,
900                                                                  gpointer user_data,
901                                                                  GDestroyNotify notify);
902 void                    gst_pad_set_chain_list_function_full    (GstPad *pad,
903                                                                  GstPadChainListFunction chainlist,
904                                                                  gpointer user_data,
905                                                                  GDestroyNotify notify);
906 void                    gst_pad_set_getrange_function_full      (GstPad *pad,
907                                                                  GstPadGetRangeFunction get,
908                                                                  gpointer user_data,
909                                                                  GDestroyNotify notify);
910 void                    gst_pad_set_event_function_full         (GstPad *pad,
911                                                                  GstPadEventFunction event,
912                                                                  gpointer user_data,
913                                                                  GDestroyNotify notify);
914
915 #define gst_pad_set_activate_function(p,f)      gst_pad_set_activate_function_full((p),(f),NULL,NULL)
916 #define gst_pad_set_activatemode_function(p,f)  gst_pad_set_activatemode_function_full((p),(f),NULL,NULL)
917 #define gst_pad_set_chain_function(p,f)         gst_pad_set_chain_function_full((p),(f),NULL,NULL)
918 #define gst_pad_set_chain_list_function(p,f)    gst_pad_set_chain_list_function_full((p),(f),NULL,NULL)
919 #define gst_pad_set_getrange_function(p,f)      gst_pad_set_getrange_function_full((p),(f),NULL,NULL)
920 #define gst_pad_set_event_function(p,f)         gst_pad_set_event_function_full((p),(f),NULL,NULL)
921
922 /* pad links */
923 void                    gst_pad_set_link_function_full          (GstPad *pad,
924                                                                  GstPadLinkFunction link,
925                                                                  gpointer user_data,
926                                                                  GDestroyNotify notify);
927 void                    gst_pad_set_unlink_function_full        (GstPad *pad,
928                                                                  GstPadUnlinkFunction unlink,
929                                                                  gpointer user_data,
930                                                                  GDestroyNotify notify);
931
932 #define gst_pad_set_link_function(p,f)          gst_pad_set_link_function_full((p),(f),NULL,NULL)
933 #define gst_pad_set_unlink_function(p,f)        gst_pad_set_unlink_function_full((p),(f),NULL,NULL)
934
935 gboolean                gst_pad_can_link                        (GstPad *srcpad, GstPad *sinkpad);
936 GstPadLinkReturn        gst_pad_link                            (GstPad *srcpad, GstPad *sinkpad);
937 GstPadLinkReturn        gst_pad_link_full                       (GstPad *srcpad, GstPad *sinkpad, GstPadLinkCheck flags);
938 gboolean                gst_pad_unlink                          (GstPad *srcpad, GstPad *sinkpad);
939 gboolean                gst_pad_is_linked                       (GstPad *pad);
940
941 GstPad*                 gst_pad_get_peer                        (GstPad *pad);
942
943 GstCaps*                gst_pad_get_pad_template_caps           (GstPad *pad);
944
945 /* capsnego function for linked/unlinked pads */
946 GstCaps *               gst_pad_get_current_caps                (GstPad * pad);
947 gboolean                gst_pad_has_current_caps                (GstPad * pad);
948
949 /* capsnego for linked pads */
950 GstCaps *               gst_pad_get_allowed_caps                (GstPad * pad);
951
952 /* pad offsets */
953 gint64                  gst_pad_get_offset                      (GstPad *pad);
954 void                    gst_pad_set_offset                      (GstPad *pad, gint64 offset);
955
956 /* data passing functions to peer */
957 GstFlowReturn           gst_pad_push                            (GstPad *pad, GstBuffer *buffer);
958 GstFlowReturn           gst_pad_push_list                       (GstPad *pad, GstBufferList *list);
959 GstFlowReturn           gst_pad_pull_range                      (GstPad *pad, guint64 offset, guint size,
960                                                                  GstBuffer **buffer);
961 gboolean                gst_pad_push_event                      (GstPad *pad, GstEvent *event);
962 gboolean                gst_pad_event_default                   (GstPad *pad, GstObject *parent,
963                                                                  GstEvent *event);
964
965 /* data passing functions on pad */
966 GstFlowReturn           gst_pad_chain                           (GstPad *pad, GstBuffer *buffer);
967 GstFlowReturn           gst_pad_chain_list                      (GstPad *pad, GstBufferList *list);
968 GstFlowReturn           gst_pad_get_range                       (GstPad *pad, guint64 offset, guint size,
969                                                                  GstBuffer **buffer);
970 gboolean                gst_pad_send_event                      (GstPad *pad, GstEvent *event);
971
972 /* pad tasks */
973 gboolean                gst_pad_start_task                      (GstPad *pad, GstTaskFunction func,
974                                                                  gpointer user_data, GDestroyNotify notify);
975 gboolean                gst_pad_pause_task                      (GstPad *pad);
976 gboolean                gst_pad_stop_task                       (GstPad *pad);
977
978 /* internal links */
979 void                    gst_pad_set_iterate_internal_links_function_full (GstPad * pad,
980                                                                  GstPadIterIntLinkFunction iterintlink,
981                                                                  gpointer user_data,
982                                                                  GDestroyNotify notify);
983 GstIterator *           gst_pad_iterate_internal_links          (GstPad * pad);
984 GstIterator *           gst_pad_iterate_internal_links_default  (GstPad * pad, GstObject *parent);
985
986 #define gst_pad_set_iterate_internal_links_function(p,f) gst_pad_set_iterate_internal_links_function_full((p),(f),NULL,NULL)
987
988 /* generic query function */
989 gboolean                gst_pad_query                           (GstPad *pad, GstQuery *query);
990 gboolean                gst_pad_peer_query                      (GstPad *pad, GstQuery *query);
991 void                    gst_pad_set_query_function_full         (GstPad *pad, GstPadQueryFunction query,
992                                                                  gpointer user_data,
993                                                                  GDestroyNotify notify);
994 gboolean                gst_pad_query_default                   (GstPad *pad, GstObject *parent,
995                                                                  GstQuery *query);
996
997 #define gst_pad_set_query_function(p,f)   gst_pad_set_query_function_full((p),(f),NULL,NULL)
998
999 /* misc helper functions */
1000 gboolean                gst_pad_forward                         (GstPad *pad, GstPadForwardFunction forward,
1001                                                                  gpointer user_data);
1002
1003 const gchar   * gst_pad_mode_get_name (GstPadMode mode);
1004
1005 G_END_DECLS
1006
1007 #endif /* __GST_PAD_H__ */