bufferlist: hook up the pad functions
[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., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23
24 #ifndef __GST_PAD_H__
25 #define __GST_PAD_H__
26
27 #include <gst/gstconfig.h>
28
29 #include <gst/gstobject.h>
30 #include <gst/gstbuffer.h>
31 #include <gst/gstbufferlist.h>
32 #include <gst/gstcaps.h>
33 #include <gst/gstevent.h>
34 #include <gst/gstquery.h>
35 #include <gst/gsttask.h>
36
37 G_BEGIN_DECLS
38
39 /*
40  * Pad base class
41  */
42 #define GST_TYPE_PAD                    (gst_pad_get_type ())
43 #define GST_IS_PAD(obj)                 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_PAD))
44 #define GST_IS_PAD_CLASS(klass)         (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_PAD))
45 #define GST_PAD(obj)                    (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_PAD, GstPad))
46 #define GST_PAD_CLASS(klass)            (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_PAD, GstPadClass))
47 #define GST_PAD_CAST(obj)               ((GstPad*)(obj))
48
49
50 typedef struct _GstPad GstPad;
51 typedef struct _GstPadClass GstPadClass;
52
53 /**
54  * GstPadLinkReturn:
55  * @GST_PAD_LINK_OK             : link succeeded
56  * @GST_PAD_LINK_WRONG_HIERARCHY: pads have no common grandparent
57  * @GST_PAD_LINK_WAS_LINKED     : pad was already linked
58  * @GST_PAD_LINK_WRONG_DIRECTION: pads have wrong direction
59  * @GST_PAD_LINK_NOFORMAT       : pads do not have common format
60  * @GST_PAD_LINK_NOSCHED        : pads cannot cooperate in scheduling
61  * @GST_PAD_LINK_REFUSED        : refused for some reason
62  *
63  * Result values from gst_pad_link and friends.
64  */
65 typedef enum {
66   GST_PAD_LINK_OK               =  0,
67   GST_PAD_LINK_WRONG_HIERARCHY  = -1,
68   GST_PAD_LINK_WAS_LINKED       = -2,
69   GST_PAD_LINK_WRONG_DIRECTION  = -3,
70   GST_PAD_LINK_NOFORMAT         = -4,
71   GST_PAD_LINK_NOSCHED          = -5,
72   GST_PAD_LINK_REFUSED          = -6
73 } GstPadLinkReturn;
74
75 /**
76  * GST_PAD_LINK_FAILED:
77  * @ret: the #GstPadLinkReturn value
78  *
79  * Macro to test if the given #GstPadLinkReturn value indicates a failed
80  * link step.
81  */
82 #define GST_PAD_LINK_FAILED(ret) ((ret) < GST_PAD_LINK_OK)
83
84 /**
85  * GST_PAD_LINK_SUCCESSFUL:
86  * @ret: the #GstPadLinkReturn value
87  *
88  * Macro to test if the given #GstPadLinkReturn value indicates a successful
89  * link step.
90  */
91 #define GST_PAD_LINK_SUCCESSFUL(ret) ((ret) >= GST_PAD_LINK_OK)
92
93 /**
94  * GstFlowReturn:
95  * @GST_FLOW_CUSTOM_SUCCESS:     Elements can use values starting from
96  *                               this to define custom success codes.
97  *                               Since 0.10.7.
98  * @GST_FLOW_RESEND:             Resend buffer, possibly with new caps (not
99  *                                 sent yet) (unused/unimplemented).
100  * @GST_FLOW_OK:                 Data passing was ok.
101  * @GST_FLOW_NOT_LINKED:         Pad is not linked.
102  * @GST_FLOW_WRONG_STATE:        Pad is in wrong state.
103  * @GST_FLOW_UNEXPECTED:         Did not expect anything, like after EOS.
104  * @GST_FLOW_NOT_NEGOTIATED:     Pad is not negotiated.
105  * @GST_FLOW_ERROR:              Some (fatal) error occured. Element generating
106  *                               this error should post an error message with more
107  *                               details.
108  * @GST_FLOW_NOT_SUPPORTED:      This operation is not supported.
109  * @GST_FLOW_CUSTOM_ERROR:       Elements can use values starting from
110  *                               this to define custom error codes. Since 0.10.7.
111  *
112  * The result of passing data to a pad.
113  *
114  * Note that the custom return values should not be exposed outside of the
115  * element scope and are available since 0.10.7.
116  */
117 typedef enum {
118   /* custom success starts here */
119   GST_FLOW_CUSTOM_SUCCESS = 100,
120
121   /* core predefined */
122   GST_FLOW_RESEND         =  1,
123   GST_FLOW_OK             =  0,
124   /* expected failures */
125   GST_FLOW_NOT_LINKED     = -1,
126   GST_FLOW_WRONG_STATE    = -2,
127   /* error cases */
128   GST_FLOW_UNEXPECTED     = -3,
129   GST_FLOW_NOT_NEGOTIATED = -4,
130   GST_FLOW_ERROR          = -5,
131   GST_FLOW_NOT_SUPPORTED  = -6,
132
133   /* custom error starts here */
134   GST_FLOW_CUSTOM_ERROR   = -100
135 } GstFlowReturn;
136
137 /**
138  * GST_FLOW_IS_FATAL:
139  * @ret: a #GstFlowReturn value
140  *
141  * Macro to test if the given #GstFlowReturn value indicates a fatal
142  * error. This macro is mainly used in elements driving the pipeline to decide
143  * whether an error message should be posted on the bus. Note that such
144  * elements may also need to post an error message in the #GST_FLOW_NOT_LINKED
145  * case which is not caught by this macro.
146  */
147 #define GST_FLOW_IS_FATAL(ret) ((ret) <= GST_FLOW_UNEXPECTED)
148
149 /**
150  * GST_FLOW_IS_SUCCESS:
151  * @ret: a #GstFlowReturn value
152  *
153  * Macro to test if the given #GstFlowReturn value indicates a
154  * successfull result
155  * This macro is mainly used in elements to decide if the processing
156  * of a buffer was successfull.
157  *
158  * Since: 0.10.7
159  */
160 #define GST_FLOW_IS_SUCCESS(ret) ((ret) >= GST_FLOW_OK)
161
162 G_CONST_RETURN gchar*   gst_flow_get_name       (GstFlowReturn ret);
163 GQuark                  gst_flow_to_quark       (GstFlowReturn ret);
164
165 /**
166  * GstActivateMode:
167  * @GST_ACTIVATE_NONE:           Pad will not handle dataflow
168  * @GST_ACTIVATE_PUSH:           Pad handles dataflow in downstream push mode
169  * @GST_ACTIVATE_PULL:           Pad handles dataflow in upstream pull mode
170  *
171  * The status of a GstPad. After activating a pad, which usually happens when the
172  * parent element goes from READY to PAUSED, the GstActivateMode defines if the
173  * pad operates in push or pull mode.
174  */
175 typedef enum {
176   GST_ACTIVATE_NONE,
177   GST_ACTIVATE_PUSH,
178   GST_ACTIVATE_PULL
179 } GstActivateMode;
180
181 /**
182  * GST_PAD_MODE_ACTIVATE:
183  * @mode: a #GstActivateMode
184  *
185  * Macro to test if the given #GstActivateMode value indicates that datapassing
186  * is possible or not.
187  */
188 #define GST_PAD_MODE_ACTIVATE(mode) ((mode) != GST_ACTIVATE_NONE)
189
190 /* pad states */
191 /**
192  * GstPadActivateFunction:
193  * @pad: a #GstPad
194  *
195  * This function is called when the pad is activated during the element
196  * READY to PAUSED state change. By default this function will call the
197  * activate function that puts the pad in push mode but elements can
198  * override this function to activate the pad in pull mode if they wish.
199  *
200  * Returns: TRUE if the pad could be activated.
201  */
202 typedef gboolean                (*GstPadActivateFunction)       (GstPad *pad);
203 /**
204  * GstPadActivateModeFunction:
205  * @pad: a #GstPad
206  * @active: activate or deactivate the pad.
207  *
208  * The prototype of the push and pull activate functions.
209  *
210  * Returns: TRUE if the pad could be activated or deactivated.
211  */
212 typedef gboolean                (*GstPadActivateModeFunction)   (GstPad *pad, gboolean active);
213
214
215 /* data passing */
216 /**
217  * GstPadChainFunction:
218  * @pad: the sink #GstPad that performed the chain.
219  * @buffer: the #GstBuffer that is chained, not %NULL.
220  *
221  * A function that will be called on sinkpads when chaining buffers.
222  * The function typically processes the data contained in the buffer and
223  * either consumes the data or passes it on to the internally linked pad(s).
224  *
225  * The implementer of this function receives a refcount to @buffer and should
226  * gst_buffer_unref() when the buffer is no longer needed.
227  *
228  * When a chain function detects an error in the data stream, it must post an
229  * error on the bus and return an appropriate #GstFlowReturn value.
230  *
231  * Returns: #GST_FLOW_OK for success
232  */
233 typedef GstFlowReturn           (*GstPadChainFunction)          (GstPad *pad, GstBuffer *buffer);
234
235 /**
236  * GstPadChainListFunction:
237  * @pad: the sink #GstPad that performed the chain.
238  * @list: the #GstBufferList that is chained, not %NULL.
239  *
240  * A function that will be called on sinkpads when chaining buffer lists.
241  * The function typically processes the data contained in the buffer list and
242  * either consumes the data or passes it on to the internally linked pad(s).
243  *
244  * The implementer of this function receives a refcount to @list and
245  * should gst_buffer_list_unref() when the list is no longer needed.
246  *
247  * When a chainlist function detects an error in the data stream, it must
248  * post an error on the bus and return an appropriate #GstFlowReturn value.
249  *
250  * Returns: #GST_FLOW_OK for success
251  */
252 typedef GstFlowReturn           (*GstPadChainListFunction)      (GstPad *pad, GstBufferList *list);
253
254 /**
255  * GstPadGetRangeFunction:
256  * @pad: the src #GstPad to perform the getrange on.
257  * @offset: the offset of the range
258  * @length: the length of the range
259  * @buffer: a memory location to hold the result buffer, cannot be NULL.
260  *
261  * This function will be called on source pads when a peer element
262  * request a buffer at the specified @offset and @length. If this function
263  * returns #GST_FLOW_OK, the result buffer will be stored in @buffer. The
264  * contents of @buffer is invalid for any other return value.
265  *
266  * This function is installed on a source pad with
267  * gst_pad_set_getrange_function() and can only be called on source pads after
268  * they are successfully activated with gst_pad_activate_pull().
269  *
270  * @offset and @length are always given in byte units. @offset must normally be a value
271  * between 0 and the length in bytes of the data available on @pad. The
272  * length (duration in bytes) can be retrieved with a #GST_QUERY_DURATION or with a
273  * #GST_QUERY_SEEKING.
274  *
275  * Any @offset larger or equal than the length will make the function return
276  * #GST_FLOW_UNEXPECTED, which corresponds to EOS. In this case @buffer does not
277  * contain a valid buffer.
278  *
279  * The buffer size of @buffer might be smaller than @length when @offset is near
280  * the end of the stream.
281  *
282  * It is allowed to call this function with a 0 @length and valid @offset, in
283  * which case @buffer will contain a 0-sized buffer and the function returns
284  * #GST_FLOW_OK.
285  *
286  * When this function is called with a -1 @offset, the sequentially next buffer
287  * of length @length in the stream is returned.
288  *
289  * When this function is called with a -1 @length, a buffer with a default
290  * optimal length is returned in @buffer. The length might depend on the value
291  * of @offset.
292  *
293  * Returns: #GST_FLOW_OK for success
294  */
295 typedef GstFlowReturn           (*GstPadGetRangeFunction)       (GstPad *pad, guint64 offset,
296                                                                  guint length, GstBuffer **buffer);
297
298 /**
299  * GstPadEventFunction:
300  * @pad: the #GstPad to handle the event.
301  * @event: the #GstEvent to handle.
302  *
303  * Function signature to handle an event for the pad.
304  *
305  * Returns: TRUE if the pad could handle the event.
306  */
307 typedef gboolean                (*GstPadEventFunction)          (GstPad *pad, GstEvent *event);
308
309
310 /* FIXME: 0.11: deprecate me, check range should use seeking query */
311 /**
312  * GstPadCheckGetRangeFunction:
313  * @pad: a #GstPad
314  *
315  * Check if @pad can be activated in pull mode.
316  *
317  * This function will be deprecated after 0.10; use the seeking query to check
318  * if a pad can support random access.
319  *
320  * Returns: TRUE if the pad can operate in pull mode.
321  */
322 typedef gboolean                (*GstPadCheckGetRangeFunction)  (GstPad *pad);
323
324 /* internal links */
325 /**
326  * GstPadIntLinkFunction:
327  * @pad: The #GstPad to query.
328  *
329  * The signature of the internal pad link function.
330  *
331  * Returns: a newly allocated #GList of pads that are linked to the given pad on
332  * the inside of the parent element.
333  *
334  * The caller must call g_list_free() on it after use.
335  *
336  * Deprecated: use the threadsafe #GstPadIterIntLinkFunction instead.
337  */
338 typedef GList*                  (*GstPadIntLinkFunction)        (GstPad *pad);
339
340 /**
341  * GstPadIterIntLinkFunction:
342  * @pad: The #GstPad to query.
343  *
344  * The signature of the internal pad link iterator function.
345  *
346  * Returns: a new #GstIterator that will iterate over all pads that are
347  * linked to the given pad on the inside of the parent element.
348  *
349  * the caller must call gst_iterator_free() after usage.
350  *
351  * Since 0.10.21
352  */
353 typedef GstIterator*           (*GstPadIterIntLinkFunction)    (GstPad *pad);
354
355 /* generic query function */
356 /**
357  * GstPadQueryTypeFunction:
358  * @pad: a #GstPad to query
359  *
360  * The signature of the query types function.
361  *
362  * Returns: a constant array of query types
363  */
364 typedef const GstQueryType*     (*GstPadQueryTypeFunction)      (GstPad *pad);
365
366 /**
367  * GstPadQueryFunction:
368  * @pad: the #GstPad to query.
369  * @query: the #GstQuery object to execute
370  *
371  * The signature of the query function.
372  *
373  * Returns: TRUE if the query could be performed.
374  */
375 typedef gboolean                (*GstPadQueryFunction)          (GstPad *pad, GstQuery *query);
376
377
378 /* linking */
379 /**
380  * GstPadLinkFunction
381  * @pad: the #GstPad that is linked.
382  * @peer: the peer #GstPad of the link
383  *
384  * Function signature to handle a new link on the pad.
385  *
386  * Returns: the result of the link with the specified peer.
387  */
388 typedef GstPadLinkReturn        (*GstPadLinkFunction)           (GstPad *pad, GstPad *peer);
389 /**
390  * GstPadUnlinkFunction
391  * @pad: the #GstPad that is linked.
392  *
393  * Function signature to handle a unlinking the pad prom its peer.
394  */
395 typedef void                    (*GstPadUnlinkFunction)         (GstPad *pad);
396
397
398 /* caps nego */
399 /**
400  * GstPadGetCapsFunction:
401  * @pad: the #GstPad to get the capabilities of.
402  *
403  * Returns a copy of the capabilities of the specified pad. By default this
404  * function will return the pad template capabilities, but can optionally
405  * be overridden by elements.
406  *
407  * Returns: a newly allocated copy #GstCaps of the pad.
408  */
409 typedef GstCaps*                (*GstPadGetCapsFunction)        (GstPad *pad);
410
411 /**
412  * GstPadSetCapsFunction:
413  * @pad: the #GstPad to set the capabilities of.
414  * @caps: the #GstCaps to set
415  *
416  * Set @caps on @pad. By default this function updates the caps of the
417  * pad but the function can be overriden by elements to perform extra
418  * actions or verifications.
419  *
420  * Returns: TRUE if the caps could be set on the pad.
421  */
422 typedef gboolean                (*GstPadSetCapsFunction)        (GstPad *pad, GstCaps *caps);
423 /**
424  * GstPadAcceptCapsFunction:
425  * @pad: the #GstPad to check
426  * @caps: the #GstCaps to check
427  *
428  * Check if @pad can accept @caps. By default this function will see if @caps
429  * intersect with the result from gst_pad_get_caps() by can be overridden to
430  * perform extra checks.
431  *
432  * Returns: TRUE if the caps can be accepted by the pad.
433  */
434 typedef gboolean                (*GstPadAcceptCapsFunction)     (GstPad *pad, GstCaps *caps);
435 /**
436  * GstPadFixateCapsFunction:
437  * @pad: a #GstPad
438  * @caps: the #GstCaps to fixate
439  *
440  * Given possibly unfixed caps @caps, let @pad use its default prefered
441  * format to make a fixed caps. @caps should be writable. By default this
442  * function will pick the first value of any ranges or lists in the caps but
443  * elements can override this function to perform other behaviour.
444  */
445 typedef void                    (*GstPadFixateCapsFunction)     (GstPad *pad, GstCaps *caps);
446 /**
447  * GstPadBufferAllocFunction:
448  * @pad: a sink #GstPad
449  * @offset: the desired offset of the buffer
450  * @size: the desired size of the buffer
451  * @caps: the desired caps of the buffer
452  * @buf: pointer to hold the allocated buffer.
453  *
454  * Ask the sinkpad @pad to allocate a buffer with @offset, @size and @caps.
455  * The result will be stored in @buf.
456  *
457  * The purpose of this function is to allocate a buffer that is optimal to
458  * be processed by @pad. The function is mostly overridden by elements that can
459  * provide a hardware buffer in order to avoid additional memcpy operations.
460  *
461  * The function can return a buffer that has caps different from the requested
462  * @caps, in which case the upstream element requests a format change to this
463  * new caps.
464  * If a format change was requested, the returned buffer will be one to hold
465  * the data of said new caps, so its size might be different from the requested
466  * @size.
467  *
468  * When this function returns anything else than #GST_FLOW_OK, the buffer allocation
469  * failed and @buf does not contain valid data. If the function returns #GST_FLOW_OK and
470  * the @buf is NULL, a #GstBuffer will be created with @caps, @offset and @size.
471  *
472  * By default this function returns a new buffer of @size and with @caps containing
473  * purely malloced data. The buffer should be freed with gst_buffer_unref()
474  * after usage.
475  *
476  * Returns: #GST_FLOW_OK if @buf contains a valid buffer, any other return
477  *  value means @buf does not hold a valid buffer.
478  */
479 typedef GstFlowReturn           (*GstPadBufferAllocFunction)    (GstPad *pad, guint64 offset, guint size,
480                                                                  GstCaps *caps, GstBuffer **buf);
481
482 /* misc */
483 /**
484  * GstPadDispatcherFunction:
485  * @pad: the #GstPad that is dispatched.
486  * @data: the gpointer to optional user data.
487  *
488  * A dispatcher function is called for all internally linked pads, see
489  * gst_pad_dispatcher().
490  *
491  * Returns: TRUE if the dispatching procedure has to be stopped.
492  */
493 typedef gboolean                (*GstPadDispatcherFunction)     (GstPad *pad, gpointer data);
494
495 /**
496  * GstPadBlockCallback:
497  * @pad: the #GstPad that is blockend or unblocked.
498  * @blocked: blocking state for the pad
499  * @user_data: the gpointer to optional user data.
500  *
501  * Callback used by gst_pad_set_blocked_async(). Gets called when the blocking
502  * operation succeeds.
503  */
504 typedef void                    (*GstPadBlockCallback)          (GstPad *pad, gboolean blocked, gpointer user_data);
505
506 /**
507  * GstPadDirection:
508  * @GST_PAD_UNKNOWN: direction is unknown.
509  * @GST_PAD_SRC: the pad is a source pad.
510  * @GST_PAD_SINK: the pad is a sink pad.
511  *
512  * The direction of a pad.
513  */
514 typedef enum {
515   GST_PAD_UNKNOWN,
516   GST_PAD_SRC,
517   GST_PAD_SINK
518 } GstPadDirection;
519
520 /**
521  * GstPadFlags:
522  * @GST_PAD_BLOCKED: is dataflow on a pad blocked
523  * @GST_PAD_FLUSHING: is pad refusing buffers
524  * @GST_PAD_IN_GETCAPS: GstPadGetCapsFunction() is running now
525  * @GST_PAD_IN_SETCAPS: GstPadSetCapsFunction() is running now
526  * @GST_PAD_BLOCKING: is pad currently blocking on a buffer or event
527  * @GST_PAD_FLAG_LAST: offset to define more flags
528  *
529  * Pad state flags
530  */
531 typedef enum {
532   GST_PAD_BLOCKED       = (GST_OBJECT_FLAG_LAST << 0),
533   GST_PAD_FLUSHING      = (GST_OBJECT_FLAG_LAST << 1),
534   GST_PAD_IN_GETCAPS    = (GST_OBJECT_FLAG_LAST << 2),
535   GST_PAD_IN_SETCAPS    = (GST_OBJECT_FLAG_LAST << 3),
536   GST_PAD_BLOCKING      = (GST_OBJECT_FLAG_LAST << 4),
537   /* padding */
538   GST_PAD_FLAG_LAST     = (GST_OBJECT_FLAG_LAST << 8)
539 } GstPadFlags;
540
541 /* FIXME: this awful circular dependency need to be resolved properly (see padtemplate.h) */
542 typedef struct _GstPadTemplate GstPadTemplate;
543
544 /**
545  * GstPad:
546  * @element_private: private data owned by the parent element
547  * @padtemplate: padtemplate for this pad
548  * @direction: the direction of the pad, cannot change after creating
549  *             the pad.
550  * @stream_rec_lock: recursive stream lock of the pad, used to protect
551  *                   the data used in streaming.
552  * @task: task for this pad if the pad is actively driving dataflow.
553  * @preroll_lock: lock used when prerolling
554  * @preroll_cond: conf to signal preroll
555  * @block_cond: conditional to signal pad block
556  * @block_callback: callback for the pad block if any
557  * @block_data: user data for @block_callback
558  * @caps: the current caps of the pad
559  * @getcapsfunc: function to get caps of the pad
560  * @setcapsfunc: function to set caps on the pad
561  * @acceptcapsfunc: function to check if pad can accept caps
562  * @fixatecapsfunc: function to fixate caps
563  * @activatefunc: pad activation function
564  * @activatepushfunc: function to activate/deactivate pad in push mode
565  * @activatepullfunc: function to activate/deactivate pad in pull mode
566  * @linkfunc: function called when pad is linked
567  * @unlinkfunc: function called when pad is unlinked
568  * @peer: the pad this pad is linked to
569  * @sched_private: private storage for the scheduler
570  * @chainfunc: function to chain buffer to pad
571  * @chainlistfunc: function to chain buffer list to pad
572  * @checkgetrangefunc: function to check if pad can operate in pull mode
573  * @getrangefunc: function to get a range of data from a pad
574  * @eventfunc: function to send an event to a pad
575  * @mode: current activation mode of the pad
576  * @querytypefunc: get list of supported queries
577  * @queryfunc: perform a query on the pad
578  * @intlinkfunc: get the internal links of this pad
579  * @bufferallocfunc: function to allocate a buffer for this pad
580  * @do_buffer_signals: counter counting installed buffer signals
581  * @do_event_signals: counter counting installed event signals
582  * @iterintlinkfunc: get the internal links iterator of this pad
583  * @block_destroy_data: notify function for gst_pad_set_blocked_async_full()
584  *
585  * The #GstPad structure. Use the functions to update the variables.
586  */
587 struct _GstPad {
588   GstObject                     object;
589
590   /*< public >*/
591   gpointer                      element_private;
592
593   GstPadTemplate                *padtemplate;
594
595   GstPadDirection                direction;
596
597   /*< public >*/ /* with STREAM_LOCK */
598   /* streaming rec_lock */
599   GStaticRecMutex               *stream_rec_lock;
600   GstTask                       *task;
601   /*< public >*/ /* with PREROLL_LOCK */
602   GMutex                        *preroll_lock;
603   GCond                         *preroll_cond;
604
605   /*< public >*/ /* with LOCK */
606   /* block cond, mutex is from the object */
607   GCond                         *block_cond;
608   GstPadBlockCallback            block_callback;
609   gpointer                       block_data;
610
611   /* the pad capabilities */
612   GstCaps                       *caps;
613   GstPadGetCapsFunction         getcapsfunc;
614   GstPadSetCapsFunction         setcapsfunc;
615   GstPadAcceptCapsFunction       acceptcapsfunc;
616   GstPadFixateCapsFunction       fixatecapsfunc;
617
618   GstPadActivateFunction         activatefunc;
619   GstPadActivateModeFunction     activatepushfunc;
620   GstPadActivateModeFunction     activatepullfunc;
621
622   /* pad link */
623   GstPadLinkFunction             linkfunc;
624   GstPadUnlinkFunction           unlinkfunc;
625   GstPad                        *peer;
626
627   gpointer                       sched_private;
628
629   /* data transport functions */
630   GstPadChainFunction            chainfunc;
631   GstPadCheckGetRangeFunction    checkgetrangefunc;
632   GstPadGetRangeFunction         getrangefunc;
633   GstPadEventFunction            eventfunc;
634
635   GstActivateMode                mode;
636
637   /* generic query method */
638   GstPadQueryTypeFunction        querytypefunc;
639   GstPadQueryFunction            queryfunc;
640
641   /* internal links */
642   GstPadIntLinkFunction          intlinkfunc;
643
644   GstPadBufferAllocFunction      bufferallocfunc;
645
646   /* whether to emit signals for have-data. counts number
647    * of handlers attached. */
648   gint                           do_buffer_signals;
649   gint                           do_event_signals;
650
651   /* ABI added */
652   /* iterate internal links */
653   GstPadIterIntLinkFunction     iterintlinkfunc;
654   GstPadChainListFunction       chainlistfunc;
655
656   /* free block_data */
657   GDestroyNotify block_destroy_data;
658
659   /*< private >*/
660   union {
661     struct {
662       gboolean                      block_callback_called;
663     } ABI;
664     gpointer _gst_reserved[GST_PADDING - 3];
665   } abidata;
666 };
667
668 struct _GstPadClass {
669   GstObjectClass        parent_class;
670
671   /* signal callbacks */
672   void          (*linked)               (GstPad *pad, GstPad *peer);
673   void          (*unlinked)             (GstPad *pad, GstPad *peer);
674   void          (*request_link)         (GstPad *pad);
675   gboolean      (*have_data)            (GstPad *pad, GstMiniObject *data);
676
677   /*< private >*/
678   gpointer _gst_reserved[GST_PADDING];
679 };
680
681
682 /***** helper macros *****/
683 /* GstPad */
684 #define GST_PAD_NAME(pad)               (GST_OBJECT_NAME(pad))
685 #define GST_PAD_PARENT(pad)             (GST_ELEMENT_CAST(GST_OBJECT_PARENT(pad)))
686 #define GST_PAD_ELEMENT_PRIVATE(pad)    (GST_PAD_CAST(pad)->element_private)
687 #define GST_PAD_PAD_TEMPLATE(pad)       (GST_PAD_CAST(pad)->padtemplate)
688 #define GST_PAD_DIRECTION(pad)          (GST_PAD_CAST(pad)->direction)
689 #define GST_PAD_TASK(pad)               (GST_PAD_CAST(pad)->task)
690 #define GST_PAD_ACTIVATE_MODE(pad)      (GST_PAD_CAST(pad)->mode)
691
692 #define GST_PAD_ACTIVATEFUNC(pad)       (GST_PAD_CAST(pad)->activatefunc)
693 #define GST_PAD_ACTIVATEPUSHFUNC(pad)   (GST_PAD_CAST(pad)->activatepushfunc)
694 #define GST_PAD_ACTIVATEPULLFUNC(pad)   (GST_PAD_CAST(pad)->activatepullfunc)
695 #define GST_PAD_CHAINFUNC(pad)          (GST_PAD_CAST(pad)->chainfunc)
696 #define GST_PAD_CHAINLISTFUNC(pad)      (GST_PAD_CAST(pad)->chainlistfunc)
697 #define GST_PAD_CHECKGETRANGEFUNC(pad)  (GST_PAD_CAST(pad)->checkgetrangefunc)
698 #define GST_PAD_GETRANGEFUNC(pad)       (GST_PAD_CAST(pad)->getrangefunc)
699 #define GST_PAD_EVENTFUNC(pad)          (GST_PAD_CAST(pad)->eventfunc)
700 #define GST_PAD_QUERYTYPEFUNC(pad)      (GST_PAD_CAST(pad)->querytypefunc)
701 #define GST_PAD_QUERYFUNC(pad)          (GST_PAD_CAST(pad)->queryfunc)
702 #define GST_PAD_INTLINKFUNC(pad)        (GST_PAD_CAST(pad)->intlinkfunc)
703 #define GST_PAD_ITERINTLINKFUNC(pad)    (GST_PAD_CAST(pad)->iterintlinkfunc)
704
705 #define GST_PAD_PEER(pad)               (GST_PAD_CAST(pad)->peer)
706 #define GST_PAD_LINKFUNC(pad)           (GST_PAD_CAST(pad)->linkfunc)
707 #define GST_PAD_UNLINKFUNC(pad)         (GST_PAD_CAST(pad)->unlinkfunc)
708
709 /**
710  * GST_PAD_CAPS:
711  * @pad: a #GstPad.
712  *
713  * The caps for this pad.
714  */
715 #define GST_PAD_CAPS(pad)               (GST_PAD_CAST(pad)->caps)
716 #define GST_PAD_GETCAPSFUNC(pad)        (GST_PAD_CAST(pad)->getcapsfunc)
717 #define GST_PAD_SETCAPSFUNC(pad)        (GST_PAD_CAST(pad)->setcapsfunc)
718 #define GST_PAD_ACCEPTCAPSFUNC(pad)     (GST_PAD_CAST(pad)->acceptcapsfunc)
719 #define GST_PAD_FIXATECAPSFUNC(pad)     (GST_PAD_CAST(pad)->fixatecapsfunc)
720
721 #define GST_PAD_BUFFERALLOCFUNC(pad)    (GST_PAD_CAST(pad)->bufferallocfunc)
722
723 #define GST_PAD_DO_BUFFER_SIGNALS(pad)  (GST_PAD_CAST(pad)->do_buffer_signals)
724 #define GST_PAD_DO_EVENT_SIGNALS(pad)   (GST_PAD_CAST(pad)->do_event_signals)
725
726 #define GST_PAD_IS_LINKED(pad)          (GST_PAD_PEER(pad) != NULL)
727 #define GST_PAD_IS_BLOCKED(pad)         (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_BLOCKED))
728 #define GST_PAD_IS_BLOCKING(pad)        (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_BLOCKING))
729 #define GST_PAD_IS_FLUSHING(pad)        (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLUSHING))
730 #define GST_PAD_IS_IN_GETCAPS(pad)      (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_IN_GETCAPS))
731 #define GST_PAD_IS_IN_SETCAPS(pad)      (GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_IN_SETCAPS))
732 #define GST_PAD_IS_SRC(pad)             (GST_PAD_DIRECTION(pad) == GST_PAD_SRC)
733 #define GST_PAD_IS_SINK(pad)            (GST_PAD_DIRECTION(pad) == GST_PAD_SINK)
734
735 #define GST_PAD_SET_FLUSHING(pad)       (GST_OBJECT_FLAG_SET (pad, GST_PAD_FLUSHING))
736 #define GST_PAD_UNSET_FLUSHING(pad)     (GST_OBJECT_FLAG_UNSET (pad, GST_PAD_FLUSHING))
737
738 /**
739  * GST_PAD_GET_STREAM_LOCK:
740  * @pad: a #GstPad
741  *
742  * Get the stream lock of @pad. The stream lock is protecting the
743  * resources used in the data processing functions of @pad.
744  */
745 #define GST_PAD_GET_STREAM_LOCK(pad)    (GST_PAD_CAST(pad)->stream_rec_lock)
746 /**
747  * GST_PAD_STREAM_LOCK:
748  * @pad: a #GstPad
749  *
750  * Lock the stream lock of @pad.
751  */
752 #define GST_PAD_STREAM_LOCK(pad)        (g_static_rec_mutex_lock(GST_PAD_GET_STREAM_LOCK(pad)))
753 /**
754  * GST_PAD_STREAM_LOCK_FULL:
755  * @pad: a #GstPad
756  * @t: the number of times to recursively lock
757  *
758  * Lock the stream lock of @pad @t times.
759  */
760 #define GST_PAD_STREAM_LOCK_FULL(pad,t) (g_static_rec_mutex_lock_full(GST_PAD_GET_STREAM_LOCK(pad), t))
761 /**
762  * GST_PAD_STREAM_TRYLOCK:
763  * @pad: a #GstPad
764  *
765  * Try to Lock the stream lock of the pad, return TRUE if the lock could be
766  * taken.
767  */
768 #define GST_PAD_STREAM_TRYLOCK(pad)     (g_static_rec_mutex_trylock(GST_PAD_GET_STREAM_LOCK(pad)))
769 /**
770  * GST_PAD_STREAM_UNLOCK:
771  * @pad: a #GstPad
772  *
773  * Unlock the stream lock of @pad.
774  */
775 #define GST_PAD_STREAM_UNLOCK(pad)      (g_static_rec_mutex_unlock(GST_PAD_GET_STREAM_LOCK(pad)))
776 /**
777  * GST_PAD_STREAM_UNLOCK_FULL:
778  * @pad: a #GstPad
779  *
780  * Fully unlock the recursive stream lock of @pad, return the number of times
781  * @pad was locked.
782  */
783 #define GST_PAD_STREAM_UNLOCK_FULL(pad) (g_static_rec_mutex_unlock_full(GST_PAD_GET_STREAM_LOCK(pad)))
784
785 #define GST_PAD_GET_PREROLL_LOCK(pad)   (GST_PAD_CAST(pad)->preroll_lock)
786 #define GST_PAD_PREROLL_LOCK(pad)       (g_mutex_lock(GST_PAD_GET_PREROLL_LOCK(pad)))
787 #define GST_PAD_PREROLL_TRYLOCK(pad)    (g_mutex_trylock(GST_PAD_GET_PREROLL_LOCK(pad)))
788 #define GST_PAD_PREROLL_UNLOCK(pad)     (g_mutex_unlock(GST_PAD_GET_PREROLL_LOCK(pad)))
789
790 #define GST_PAD_GET_PREROLL_COND(pad)   (GST_PAD_CAST(pad)->preroll_cond)
791 #define GST_PAD_PREROLL_WAIT(pad)       \
792     g_cond_wait (GST_PAD_GET_PREROLL_COND (pad), GST_PAD_GET_PREROLL_LOCK (pad))
793 #define GST_PAD_PREROLL_TIMED_WAIT(pad, timeval) \
794     g_cond_timed_wait (GST_PAD_GET_PREROLL_COND (pad), GST_PAD_GET_PREROLL_LOCK (pad), timeval)
795 #define GST_PAD_PREROLL_SIGNAL(pad)     g_cond_signal (GST_PAD_GET_PREROLL_COND (pad));
796 #define GST_PAD_PREROLL_BROADCAST(pad)  g_cond_broadcast (GST_PAD_GET_PREROLL_COND (pad));
797
798 #define GST_PAD_BLOCK_GET_COND(pad)     (GST_PAD_CAST(pad)->block_cond)
799 #define GST_PAD_BLOCK_WAIT(pad)         (g_cond_wait(GST_PAD_BLOCK_GET_COND (pad), GST_OBJECT_GET_LOCK (pad)))
800 #define GST_PAD_BLOCK_SIGNAL(pad)       (g_cond_signal(GST_PAD_BLOCK_GET_COND (pad)))
801 #define GST_PAD_BLOCK_BROADCAST(pad)    (g_cond_broadcast(GST_PAD_BLOCK_GET_COND (pad)))
802
803 /* FIXME: this awful circular dependency need to be resolved properly (see padtemplate.h) */
804 #include <gst/gstpadtemplate.h>
805
806 GType                   gst_pad_get_type                        (void);
807
808 /* creating pads */
809 GstPad*                 gst_pad_new                             (const gchar *name, GstPadDirection direction);
810 GstPad*                 gst_pad_new_from_template               (GstPadTemplate *templ, const gchar *name);
811 GstPad*                 gst_pad_new_from_static_template        (GstStaticPadTemplate *templ, const gchar *name);
812
813
814 /**
815  * gst_pad_get_name:
816  * @pad: the pad to get the name from
817  *
818  * Get a copy of the name of the pad. g_free() after usage.
819  *
820  * MT safe.
821  */
822 #define gst_pad_get_name(pad) gst_object_get_name (GST_OBJECT_CAST (pad))
823 /**
824  * gst_pad_get_parent:
825  * @pad: the pad to get the parent of
826  *
827  * Get the parent of @pad. This function increases the refcount
828  * of the parent object so you should gst_object_unref() it after usage.
829  * Can return NULL if the pad did not have a parent.
830  *
831  * MT safe.
832  */
833 #define gst_pad_get_parent(pad) gst_object_get_parent (GST_OBJECT_CAST (pad))
834
835 GstPadDirection         gst_pad_get_direction                   (GstPad *pad);
836
837 gboolean                gst_pad_set_active                      (GstPad *pad, gboolean active);
838 gboolean                gst_pad_is_active                       (GstPad *pad);
839 gboolean                gst_pad_activate_pull                   (GstPad *pad, gboolean active);
840 gboolean                gst_pad_activate_push                   (GstPad *pad, gboolean active);
841
842 gboolean                gst_pad_set_blocked                     (GstPad *pad, gboolean blocked);
843 gboolean                gst_pad_set_blocked_async               (GstPad *pad, gboolean blocked,
844                                                                  GstPadBlockCallback callback, gpointer user_data);
845 gboolean                gst_pad_set_blocked_async_full          (GstPad *pad, gboolean blocked,
846                                                                  GstPadBlockCallback callback, gpointer user_data,
847                                                                  GDestroyNotify destroy_data);
848 gboolean                gst_pad_is_blocked                      (GstPad *pad);
849 gboolean                gst_pad_is_blocking                     (GstPad *pad);
850
851 void                    gst_pad_set_element_private             (GstPad *pad, gpointer priv);
852 gpointer                gst_pad_get_element_private             (GstPad *pad);
853
854 GstPadTemplate*         gst_pad_get_pad_template                (GstPad *pad);
855
856 void                    gst_pad_set_bufferalloc_function        (GstPad *pad, GstPadBufferAllocFunction bufalloc);
857 GstFlowReturn           gst_pad_alloc_buffer                    (GstPad *pad, guint64 offset, gint size,
858                                                                  GstCaps *caps, GstBuffer **buf);
859 GstFlowReturn           gst_pad_alloc_buffer_and_set_caps       (GstPad *pad, guint64 offset, gint size,
860                                                                  GstCaps *caps, GstBuffer **buf);
861
862 /* data passing setup functions */
863 void                    gst_pad_set_activate_function           (GstPad *pad, GstPadActivateFunction activate);
864 void                    gst_pad_set_activatepull_function       (GstPad *pad, GstPadActivateModeFunction activatepull);
865 void                    gst_pad_set_activatepush_function       (GstPad *pad, GstPadActivateModeFunction activatepush);
866 void                    gst_pad_set_chain_function              (GstPad *pad, GstPadChainFunction chain);
867 void                    gst_pad_set_chain_list_function (GstPad *pad, GstPadChainListFunction chainlist);
868 void                    gst_pad_set_getrange_function           (GstPad *pad, GstPadGetRangeFunction get);
869 void                    gst_pad_set_checkgetrange_function      (GstPad *pad, GstPadCheckGetRangeFunction check);
870 void                    gst_pad_set_event_function              (GstPad *pad, GstPadEventFunction event);
871
872 /* pad links */
873 void                    gst_pad_set_link_function               (GstPad *pad, GstPadLinkFunction link);
874 void                    gst_pad_set_unlink_function             (GstPad *pad, GstPadUnlinkFunction unlink);
875
876 gboolean                gst_pad_can_link                        (GstPad *srcpad, GstPad *sinkpad);
877 GstPadLinkReturn        gst_pad_link                            (GstPad *srcpad, GstPad *sinkpad);
878 gboolean                gst_pad_unlink                          (GstPad *srcpad, GstPad *sinkpad);
879 gboolean                gst_pad_is_linked                       (GstPad *pad);
880
881 GstPad*                 gst_pad_get_peer                        (GstPad *pad);
882
883 /* capsnego functions */
884 void                    gst_pad_set_getcaps_function            (GstPad *pad, GstPadGetCapsFunction getcaps);
885 void                    gst_pad_set_acceptcaps_function         (GstPad *pad, GstPadAcceptCapsFunction acceptcaps);
886 void                    gst_pad_set_fixatecaps_function         (GstPad *pad, GstPadFixateCapsFunction fixatecaps);
887 void                    gst_pad_set_setcaps_function            (GstPad *pad, GstPadSetCapsFunction setcaps);
888
889 G_CONST_RETURN GstCaps* gst_pad_get_pad_template_caps           (GstPad *pad);
890
891 /* capsnego function for linked/unlinked pads */
892 GstCaps *               gst_pad_get_caps                        (GstPad * pad);
893 void                    gst_pad_fixate_caps                     (GstPad * pad, GstCaps *caps);
894 gboolean                gst_pad_accept_caps                     (GstPad * pad, GstCaps *caps);
895 gboolean                gst_pad_set_caps                        (GstPad * pad, GstCaps *caps);
896
897 GstCaps *               gst_pad_peer_get_caps                   (GstPad * pad);
898 gboolean                gst_pad_peer_accept_caps                (GstPad * pad, GstCaps *caps);
899
900 /* capsnego for linked pads */
901 GstCaps *               gst_pad_get_allowed_caps                (GstPad * pad);
902 GstCaps *               gst_pad_get_negotiated_caps             (GstPad * pad);
903
904 /* data passing functions to peer */
905 GstFlowReturn           gst_pad_push                            (GstPad *pad, GstBuffer *buffer);
906 GstFlowReturn           gst_pad_push_list                       (GstPad *pad, GstBufferList *list);
907 gboolean                gst_pad_check_pull_range                (GstPad *pad);
908 GstFlowReturn           gst_pad_pull_range                      (GstPad *pad, guint64 offset, guint size,
909                                                                  GstBuffer **buffer);
910 gboolean                gst_pad_push_event                      (GstPad *pad, GstEvent *event);
911 gboolean                gst_pad_event_default                   (GstPad *pad, GstEvent *event);
912
913 /* data passing functions on pad */
914 GstFlowReturn           gst_pad_chain                           (GstPad *pad, GstBuffer *buffer);
915 GstFlowReturn           gst_pad_chain_list                      (GstPad *pad, GstBufferList *list);
916 GstFlowReturn           gst_pad_get_range                       (GstPad *pad, guint64 offset, guint size,
917                                                                  GstBuffer **buffer);
918 gboolean                gst_pad_send_event                      (GstPad *pad, GstEvent *event);
919
920 /* pad tasks */
921 gboolean                gst_pad_start_task                      (GstPad *pad, GstTaskFunction func,
922                                                                  gpointer data);
923 gboolean                gst_pad_pause_task                      (GstPad *pad);
924 gboolean                gst_pad_stop_task                       (GstPad *pad);
925
926 /* internal links */
927 void                    gst_pad_set_internal_link_function      (GstPad *pad, GstPadIntLinkFunction intlink);
928 GList*                  gst_pad_get_internal_links              (GstPad *pad);
929 GList*                  gst_pad_get_internal_links_default      (GstPad *pad);
930
931 void                    gst_pad_set_iterate_internal_links_function (GstPad * pad,
932                                                                  GstPadIterIntLinkFunction iterintlink);
933 GstIterator *           gst_pad_iterate_internal_links          (GstPad * pad);
934 GstIterator *           gst_pad_iterate_internal_links_default  (GstPad * pad);
935
936
937 /* generic query function */
938 void                    gst_pad_set_query_type_function         (GstPad *pad, GstPadQueryTypeFunction type_func);
939 G_CONST_RETURN GstQueryType*
940                         gst_pad_get_query_types                 (GstPad *pad);
941 G_CONST_RETURN GstQueryType*
942                         gst_pad_get_query_types_default         (GstPad *pad);
943
944 gboolean                gst_pad_query                           (GstPad *pad, GstQuery *query);
945 gboolean                gst_pad_peer_query                      (GstPad *pad, GstQuery *query);
946 void                    gst_pad_set_query_function              (GstPad *pad, GstPadQueryFunction query);
947 gboolean                gst_pad_query_default                   (GstPad *pad, GstQuery *query);
948
949 /* misc helper functions */
950 gboolean                gst_pad_dispatcher                      (GstPad *pad, GstPadDispatcherFunction dispatch,
951                                                                  gpointer data);
952
953 #ifndef GST_DISABLE_LOADSAVE
954 void                    gst_pad_load_and_link                   (xmlNodePtr self, GstObject *parent);
955 #endif
956
957 G_END_DECLS
958
959 #endif /* __GST_PAD_H__ */