- Added PAD_NEGOTIATING flag, remove PAD_EOS flag
[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/gstcaps.h>
32 #include <gst/gstevent.h>
33 #include <gst/gstprobe.h>
34 #include <gst/gstquery.h>
35
36
37 G_BEGIN_DECLS
38
39 extern GType _gst_pad_type;
40 extern GType _gst_real_pad_type;
41 extern GType _gst_ghost_pad_type;
42
43 #define GST_TYPE_PARANOID 
44
45 /* 
46  * Pad base class
47  */
48 #define GST_TYPE_PAD                    (_gst_pad_type) 
49
50 #define GST_PAD_CAST(obj)               ((GstPad*)(obj))
51 #define GST_PAD_CLASS_CAST(klass)       ((GstPadClass*)(klass))
52 #define GST_IS_PAD(obj)                 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_PAD))
53 #define GST_IS_PAD_FAST(obj)            (G_OBJECT_TYPE(obj) == GST_TYPE_REAL_PAD || \
54                                          G_OBJECT_TYPE(obj) == GST_TYPE_GHOST_PAD)
55 #define GST_IS_PAD_CLASS(klass)         (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_PAD))
56
57 #ifdef GST_TYPE_PARANOID
58 # define GST_PAD(obj)                   (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_PAD, GstPad))
59 # define GST_PAD_CLASS(klass)           (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_PAD, GstPadClass))
60 #else
61 # define GST_PAD                        GST_PAD_CAST
62 # define GST_PAD_CLASS                  GST_PAD_CLASS_CAST
63 #endif
64
65 /* 
66  * Real Pads
67  */
68 #define GST_TYPE_REAL_PAD               (_gst_real_pad_type)
69
70 #define GST_REAL_PAD_CAST(obj)          ((GstRealPad*)(obj))
71 #define GST_REAL_PAD_CLASS_CAST(klass)  ((GstRealPadClass*)(klass))
72 #define GST_IS_REAL_PAD(obj)            (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_REAL_PAD))
73 #define GST_IS_REAL_PAD_FAST(obj)       (G_OBJECT_TYPE(obj) == GST_TYPE_REAL_PAD)
74 #define GST_IS_REAL_PAD_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_REAL_PAD))
75
76 #ifdef GST_TYPE_PARANOID
77 # define GST_REAL_PAD(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_REAL_PAD, GstRealPad))
78 # define GST_REAL_PAD_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_REAL_PAD, GstRealPadClass))
79 #else
80 # define GST_REAL_PAD                   GST_REAL_PAD_CAST
81 # define GST_REAL_PAD_CLASS             GST_REAL_PAD_CLASS_CAST
82 #endif
83
84 /* 
85  * Ghost Pads
86  */
87 #define GST_TYPE_GHOST_PAD              (_gst_ghost_pad_type)
88
89 #define GST_GHOST_PAD_CAST(obj)         ((GstGhostPad*)(obj))
90 #define GST_GHOST_PAD_CLASS_CAST(klass) ((GstGhostPadClass*)(klass))
91 #define GST_IS_GHOST_PAD(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_GHOST_PAD))
92 #define GST_IS_GHOST_PAD_FAST(obj)      (G_OBJECT_TYPE(obj) == GST_TYPE_GHOST_PAD)
93 #define GST_IS_GHOST_PAD_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_GHOST_PAD))
94
95 #ifdef GST_TYPE_PARANOID
96 # define GST_GHOST_PAD(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_GHOST_PAD, GstGhostPad))
97 # define GST_GHOST_PAD_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_GHOST_PAD, GstGhostPadClass))
98 #else
99 # define GST_GHOST_PAD                  GST_GHOST_PAD_CAST
100 # define GST_GHOST_PAD_CLASS            GST_GHOST_PAD_CLASS_CAST
101 #endif
102
103
104 /*typedef struct _GstPad GstPad; */
105 /*typedef struct _GstPadClass GstPadClass;*/
106 typedef struct _GstRealPad GstRealPad;
107 typedef struct _GstRealPadClass GstRealPadClass;
108 typedef struct _GstGhostPad GstGhostPad;
109 typedef struct _GstGhostPadClass GstGhostPadClass;
110 /*typedef struct _GstPadTemplate GstPadTemplate;*/
111 /*typedef struct _GstPadTemplateClass GstPadTemplateClass;*/
112
113
114 typedef enum {
115   GST_PAD_CONNECT_REFUSED = -1,
116   GST_PAD_CONNECT_DELAYED =  0,
117   GST_PAD_CONNECT_OK      =  1,
118   GST_PAD_CONNECT_DONE    =  2
119 } GstPadConnectReturn;
120
121 /* convenience functions */
122 #ifdef G_HAVE_ISO_VARARGS
123 #define GST_PAD_QUERY_TYPE_FUNCTION(functionname, ...)  GST_QUERY_TYPE_FUNCTION (GstPad *, functionname, __VA_ARGS__);
124 #define GST_PAD_FORMATS_FUNCTION(functionname, ...)     GST_FORMATS_FUNCTION (GstPad *, functionname, __VA_ARGS__);
125 #define GST_PAD_EVENT_MASK_FUNCTION(functionname, ...)  GST_EVENT_MASK_FUNCTION (GstPad *, functionname, __VA_ARGS__);
126 #elif defined(G_HAVE_GNUC_VARARGS)
127 #define GST_PAD_QUERY_TYPE_FUNCTION(functionname, a...) GST_QUERY_TYPE_FUNCTION (GstPad *, functionname, a);
128 #define GST_PAD_FORMATS_FUNCTION(functionname, a...)    GST_FORMATS_FUNCTION (GstPad *, functionname, a);
129 #define GST_PAD_EVENT_MASK_FUNCTION(functionname, a...) GST_EVENT_MASK_FUNCTION (GstPad *, functionname, a);
130 #endif
131
132  
133 /* this defines the functions used to chain buffers
134  * pad is the sink pad (so the same chain function can be used for N pads)
135  * buf is the buffer being passed */
136 typedef void                    (*GstPadChainFunction)          (GstPad *pad,GstBuffer *buf);
137 typedef GstBuffer*              (*GstPadGetFunction)            (GstPad *pad);
138 typedef gboolean                (*GstPadEventFunction)          (GstPad *pad, GstEvent *event);
139 typedef gboolean                (*GstPadConvertFunction)        (GstPad *pad, 
140                                                                  GstFormat src_format,  gint64  src_value,
141                                                                  GstFormat *dest_format, gint64 *dest_value);
142 typedef gboolean                (*GstPadQueryFunction)          (GstPad *pad, GstQueryType type,
143                                                                  GstFormat *format, gint64  *value);
144 typedef GList*                  (*GstPadIntConnFunction)        (GstPad *pad);
145 typedef const GstFormat*        (*GstPadFormatsFunction)        (GstPad *pad);
146 typedef const GstEventMask*     (*GstPadEventMaskFunction)      (GstPad *pad);
147 typedef const GstQueryType*     (*GstPadQueryTypeFunction)      (GstPad *pad);
148
149 typedef GstPadConnectReturn     (*GstPadConnectFunction)        (GstPad *pad, GstCaps *caps);
150 typedef GstCaps*                (*GstPadGetCapsFunction)        (GstPad *pad, GstCaps *caps);
151 typedef GstBufferPool*          (*GstPadBufferPoolFunction)     (GstPad *pad);
152
153 typedef gboolean                (*GstPadDispatcherFunction)     (GstPad *pad, gpointer data);
154
155 typedef enum {
156   GST_PAD_UNKNOWN,
157   GST_PAD_SRC,
158   GST_PAD_SINK
159 } GstPadDirection;
160
161 typedef enum {
162   GST_PAD_DISABLED              = GST_OBJECT_FLAG_LAST,
163   GST_PAD_NEGOTIATING,
164
165   GST_PAD_FLAG_LAST             = GST_OBJECT_FLAG_LAST + 4
166 } GstPadFlags;
167
168 struct _GstPad {
169   GstObject             object;
170
171   gpointer              element_private;
172
173   GstPadTemplate        *padtemplate;   /* the template for this pad */
174 };
175
176 struct _GstPadClass {
177   GstObjectClass parent_class;
178 };
179
180 struct _GstRealPad {
181   GstPad                         pad;
182
183   /* the pad capabilities */
184   GstCaps                       *caps;
185   GstCaps                       *filter;
186   GstCaps                       *appfilter;
187   GstPadGetCapsFunction          getcapsfunc;
188   
189   GstPadDirection                direction;
190
191   GstPadConnectFunction          connectfunc;
192   GstRealPad                    *peer;
193
194   gpointer                       sched_private;
195
196   /* data transport functions */
197   GstPadChainFunction            chainfunc;
198   GstPadChainFunction            chainhandler;
199   GstPadGetFunction              getfunc;
200   GstPadGetFunction              gethandler;
201   GstPadEventFunction            eventfunc;
202   GstPadEventFunction            eventhandler;
203   GstPadEventMaskFunction        eventmaskfunc;
204
205   GList                         *ghostpads;
206
207   /* query/convert/formats functions */
208   GstPadConvertFunction          convertfunc;
209   GstPadQueryFunction            queryfunc;
210   GstPadFormatsFunction          formatsfunc;
211   GstPadQueryTypeFunction        querytypefunc;
212   GstPadIntConnFunction          intconnfunc;
213
214   GstPadBufferPoolFunction       bufferpoolfunc;
215
216   GstProbeDispatcher             probedisp;
217 };
218
219 struct _GstRealPadClass {
220   GstPadClass parent_class;
221
222   /* signal callbacks */
223   void (*caps_nego_failed)      (GstPad *pad);
224   void (*connected)             (GstPad *pad, GstPad *peer);
225   void (*disconnected)          (GstPad *pad, GstPad *peer);
226 };
227
228 struct _GstGhostPad {
229   GstPad pad;
230
231   GstRealPad *realpad;
232 };
233
234 struct _GstGhostPadClass {
235   GstPadClass parent_class;
236 };
237
238
239 /***** helper macros *****/
240 /* GstPad */
241 #define GST_PAD_NAME(pad)               (GST_OBJECT_NAME(pad))
242 #define GST_PAD_PARENT(pad)             ((GstElement *)(GST_OBJECT_PARENT(pad)))
243 #define GST_PAD_ELEMENT_PRIVATE(pad)    (((GstPad *)(pad))->element_private)
244 #define GST_PAD_PAD_TEMPLATE(pad)       (((GstPad *)(pad))->padtemplate)
245
246 /* GstRealPad */
247 #define GST_RPAD_DIRECTION(pad)         (((GstRealPad *)(pad))->direction)
248 #define GST_RPAD_CAPS(pad)              (((GstRealPad *)(pad))->caps)
249 #define GST_RPAD_FILTER(pad)            (((GstRealPad *)(pad))->filter)
250 #define GST_RPAD_APPFILTER(pad)         (((GstRealPad *)(pad))->appfilter)
251 #define GST_RPAD_PEER(pad)              (((GstRealPad *)(pad))->peer)
252 #define GST_RPAD_CHAINFUNC(pad)         (((GstRealPad *)(pad))->chainfunc)
253 #define GST_RPAD_CHAINHANDLER(pad)      (((GstRealPad *)(pad))->chainhandler)
254 #define GST_RPAD_GETFUNC(pad)           (((GstRealPad *)(pad))->getfunc)
255 #define GST_RPAD_GETHANDLER(pad)        (((GstRealPad *)(pad))->gethandler)
256 #define GST_RPAD_EVENTFUNC(pad)         (((GstRealPad *)(pad))->eventfunc)
257 #define GST_RPAD_EVENTHANDLER(pad)      (((GstRealPad *)(pad))->eventhandler)
258 #define GST_RPAD_CONVERTFUNC(pad)       (((GstRealPad *)(pad))->convertfunc)
259 #define GST_RPAD_QUERYFUNC(pad)         (((GstRealPad *)(pad))->queryfunc)
260 #define GST_RPAD_INTCONNFUNC(pad)       (((GstRealPad *)(pad))->intconnfunc)
261 #define GST_RPAD_FORMATSFUNC(pad)       (((GstRealPad *)(pad))->formatsfunc)
262 #define GST_RPAD_QUERYTYPEFUNC(pad)     (((GstRealPad *)(pad))->querytypefunc)
263 #define GST_RPAD_EVENTMASKFUNC(pad)     (((GstRealPad *)(pad))->eventmaskfunc)
264
265 #define GST_RPAD_CONNECTFUNC(pad)       (((GstRealPad *)(pad))->connectfunc)
266 #define GST_RPAD_GETCAPSFUNC(pad)       (((GstRealPad *)(pad))->getcapsfunc)
267 #define GST_RPAD_BUFFERPOOLFUNC(pad)    (((GstRealPad *)(pad))->bufferpoolfunc)
268
269 /* GstGhostPad */
270 #define GST_GPAD_REALPAD(pad)           (((GstGhostPad *)(pad))->realpad)
271
272 /* Generic */
273 #define GST_PAD_REALIZE(pad)            (GST_IS_REAL_PAD(pad) ? ((GstRealPad *)(pad)) : GST_GPAD_REALPAD(pad))
274 #define GST_PAD_DIRECTION(pad)          GST_RPAD_DIRECTION(GST_PAD_REALIZE(pad))
275 #define GST_PAD_CAPS(pad)               GST_RPAD_CAPS(GST_PAD_REALIZE(pad))
276 #define GST_PAD_PEER(pad)               GST_PAD_CAST(GST_RPAD_PEER(GST_PAD_REALIZE(pad)))
277
278 /* Some check functions (unused?) */
279 #define GST_PAD_IS_CONNECTED(pad)       (GST_PAD_PEER(pad) != NULL)
280 #define GST_PAD_IS_ACTIVE(pad)          (!GST_FLAG_IS_SET(GST_PAD_REALIZE(pad), GST_PAD_DISABLED))
281 #define GST_PAD_IS_USABLE(pad)          (GST_PAD_IS_CONNECTED (pad) && \
282                                          GST_PAD_IS_ACTIVE(pad) && GST_PAD_IS_ACTIVE(GST_PAD_PEER (pad)))
283 #define GST_PAD_CAN_PULL(pad)           (GST_IS_REAL_PAD(pad) && GST_REAL_PAD(pad)->gethandler != NULL)
284 #define GST_PAD_IS_SRC(pad)             (GST_PAD_DIRECTION(pad) == GST_PAD_SRC)
285 #define GST_PAD_IS_SINK(pad)            (GST_PAD_DIRECTION(pad) == GST_PAD_SINK)
286
287 /***** PadTemplate *****/
288 #define GST_TYPE_PAD_TEMPLATE           (gst_pad_template_get_type ())
289 #define GST_PAD_TEMPLATE(obj)           (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_PAD_TEMPLATE,GstPadTemplate))
290 #define GST_PAD_TEMPLATE_CLASS(klass)   (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_PAD_TEMPLATE,GstPadTemplateClass))
291 #define GST_IS_PAD_TEMPLATE(obj)        (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_PAD_TEMPLATE))
292 #define GST_IS_PAD_TEMPLATE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_PAD_TEMPLATE))
293
294 typedef enum {
295   GST_PAD_ALWAYS,
296   GST_PAD_SOMETIMES,
297   GST_PAD_REQUEST
298 } GstPadPresence;
299
300 #define GST_PAD_TEMPLATE_NAME_TEMPLATE(templ)   (((GstPadTemplate *)(templ))->name_template)
301 #define GST_PAD_TEMPLATE_DIRECTION(templ)       (((GstPadTemplate *)(templ))->direction)
302 #define GST_PAD_TEMPLATE_PRESENCE(templ)        (((GstPadTemplate *)(templ))->presence)
303 #define GST_PAD_TEMPLATE_CAPS(templ)            (((GstPadTemplate *)(templ))->caps)
304 #define GST_PAD_TEMPLATE_FIXED(templ)           (((GstPadTemplate *)(templ))->fixed)
305
306 #define GST_PAD_TEMPLATE_IS_FIXED(templ)        (GST_PAD_TEMPLATE_FIXED(templ) == TRUE)
307
308 struct _GstPadTemplate {
309   GstObject       object;
310
311   gchar           *name_template;
312   GstPadDirection direction;
313   GstPadPresence  presence;
314   GstCaps         *caps;
315   gboolean        fixed;
316 };
317
318 struct _GstPadTemplateClass {
319   GstObjectClass parent_class;
320
321   /* signal callbacks */
322   void (*pad_created)   (GstPadTemplate *templ, GstPad *pad);
323 };
324
325 #ifdef G_HAVE_ISO_VARARGS
326 #define GST_PAD_TEMPLATE_NEW(padname, dir, pres, ...) \
327   gst_pad_template_new (                        \
328     padname,                                    \
329     dir,                                        \
330     pres,                                       \
331     __VA_ARGS__ ,                               \
332     NULL)
333
334 #define GST_PAD_TEMPLATE_FACTORY(name, padname, dir, pres, ...) \
335 static GstPadTemplate*                          \
336 name (void)                                     \
337 {                                               \
338   static GstPadTemplate *templ = NULL;          \
339   if (!templ) {                                 \
340     templ = GST_PAD_TEMPLATE_NEW (              \
341       padname,                                  \
342       dir,                                      \
343       pres,                                     \
344       __VA_ARGS__ );                            \
345   }                                             \
346   return templ;                                 \
347 }
348 #elif defined(G_HAVE_GNUC_VARARGS)
349 /* CR1: the space after 'a' is necessary because of preprocessing in gcc */
350 #define GST_PAD_TEMPLATE_NEW(padname, dir, pres, a...) \
351   gst_pad_template_new (                        \
352     padname,                                    \
353     dir,                                        \
354     pres,                                       \
355     a ,                                         \
356     NULL)
357
358 #define GST_PAD_TEMPLATE_FACTORY(name, padname, dir, pres, a...)         \
359 static GstPadTemplate*                          \
360 name (void)                                     \
361 {                                               \
362   static GstPadTemplate *templ = NULL;          \
363   if (!templ) {                                 \
364     templ = GST_PAD_TEMPLATE_NEW (              \
365       padname,                                  \
366       dir,                                      \
367       pres,                                     \
368       a );                                      \
369   }                                             \
370   return templ;                                 \
371 }
372 #endif
373
374 #define GST_PAD_TEMPLATE_GET(fact) (fact)()
375
376 GType                   gst_pad_get_type                        (void);
377 GType                   gst_real_pad_get_type                   (void);
378 GType                   gst_ghost_pad_get_type                  (void);
379
380 /* creating pads */
381 GstPad*                 gst_pad_new                             (const gchar *name, GstPadDirection direction);
382 #define                 gst_pad_destroy(pad)                    gst_object_destroy (GST_OBJECT (pad))
383 GstPad*                 gst_pad_new_from_template               (GstPadTemplate *templ, const gchar *name);
384 GstPad*                 gst_pad_custom_new                      (GType type, const gchar *name, GstPadDirection direction);
385 GstPad*                 gst_pad_custom_new_from_template        (GType type, GstPadTemplate *templ, const gchar *name);
386
387 void                    gst_pad_set_name                        (GstPad *pad, const gchar *name);
388 const gchar*            gst_pad_get_name                        (GstPad *pad);
389
390 GstPadDirection         gst_pad_get_direction                   (GstPad *pad);
391
392 void                    gst_pad_set_active                      (GstPad *pad, gboolean active);
393 gboolean                gst_pad_is_active                       (GstPad *pad);
394
395 void                    gst_pad_set_element_private             (GstPad *pad, gpointer priv);
396 gpointer                gst_pad_get_element_private             (GstPad *pad);
397
398 void                    gst_pad_set_parent                      (GstPad *pad, GstElement *parent);
399 GstElement*             gst_pad_get_parent                      (GstPad *pad);
400 GstElement*             gst_pad_get_real_parent                 (GstPad *pad);
401
402 GstScheduler*           gst_pad_get_scheduler                   (GstPad *pad);
403
404 void                    gst_pad_add_ghost_pad                   (GstPad *pad, GstPad *ghostpad);
405 void                    gst_pad_remove_ghost_pad                (GstPad *pad, GstPad *ghostpad);
406 GList*                  gst_pad_get_ghost_pad_list              (GstPad *pad);
407
408 GstPadTemplate*         gst_pad_get_pad_template                (GstPad *pad);
409
410 void                    gst_pad_set_bufferpool_function         (GstPad *pad, GstPadBufferPoolFunction bufpool);
411 GstBufferPool*          gst_pad_get_bufferpool                  (GstPad *pad);
412
413 /* data passing setup functions */
414 void                    gst_pad_set_chain_function              (GstPad *pad, GstPadChainFunction chain);
415 void                    gst_pad_set_get_function                (GstPad *pad, GstPadGetFunction get);
416 void                    gst_pad_set_event_function              (GstPad *pad, GstPadEventFunction event);
417 void                    gst_pad_set_event_mask_function         (GstPad *pad, GstPadEventMaskFunction mask_func);
418 const GstEventMask*     gst_pad_get_event_masks                 (GstPad *pad);
419 const GstEventMask*     gst_pad_get_event_masks_default         (GstPad *pad);
420
421 /* pad connections */
422 void                    gst_pad_set_connect_function            (GstPad *pad, GstPadConnectFunction connect);
423 gboolean                gst_pad_can_connect                     (GstPad *srcpad, GstPad *sinkpad);
424 gboolean                gst_pad_can_connect_filtered            (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps);
425
426 gboolean                gst_pad_connect                         (GstPad *srcpad, GstPad *sinkpad);
427 gboolean                gst_pad_connect_filtered                (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps);
428 void                    gst_pad_disconnect                      (GstPad *srcpad, GstPad *sinkpad);
429
430 GstPad*                 gst_pad_get_peer                        (GstPad *pad);
431
432 /* capsnego functions */
433 GstCaps*                gst_pad_get_caps                        (GstPad *pad);
434 GstCaps*                gst_pad_get_pad_template_caps           (GstPad *pad);
435 GstPadConnectReturn     gst_pad_try_set_caps                    (GstPad *pad, GstCaps *caps);
436 gboolean                gst_pad_check_compatibility             (GstPad *srcpad, GstPad *sinkpad);
437
438 void                    gst_pad_set_getcaps_function            (GstPad *pad, GstPadGetCapsFunction getcaps);
439 GstPadConnectReturn     gst_pad_proxy_connect                   (GstPad *pad, GstCaps *caps);
440 gboolean                gst_pad_reconnect_filtered              (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps);
441 gboolean                gst_pad_perform_negotiate               (GstPad *srcpad, GstPad *sinkpad);
442 gboolean                gst_pad_try_reconnect_filtered          (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps);
443 GstCaps*                gst_pad_get_allowed_caps                (GstPad *pad);
444 gboolean                gst_pad_recalc_allowed_caps             (GstPad *pad);
445
446 /* data passing functions */
447 void                    gst_pad_push                            (GstPad *pad, GstBuffer *buf);
448 GstBuffer*              gst_pad_pull                            (GstPad *pad);
449 gboolean                gst_pad_send_event                      (GstPad *pad, GstEvent *event);
450 gboolean                gst_pad_event_default                   (GstPad *pad, GstEvent *event);
451 GstPad*                 gst_pad_select                          (GList *padlist);
452 GstPad*                 gst_pad_selectv                         (GstPad *pad, ...);
453
454
455 /* convert/query/format functions */
456 void                    gst_pad_set_formats_function            (GstPad *pad, 
457                                                                  GstPadFormatsFunction formats);
458 const GstFormat*        gst_pad_get_formats                     (GstPad *pad);
459 const GstFormat*        gst_pad_get_formats_default             (GstPad *pad);
460
461 void                    gst_pad_set_convert_function            (GstPad *pad, GstPadConvertFunction convert);
462 gboolean                gst_pad_convert                         (GstPad *pad, 
463                                                                  GstFormat src_format,  gint64  src_value,
464                                                                  GstFormat *dest_format, gint64 *dest_value);
465 gboolean                gst_pad_convert_default                 (GstPad *pad,
466                                                                  GstFormat src_format,  gint64  src_value,
467                                                                  GstFormat *dest_format, gint64 *dest_value);
468
469 void                    gst_pad_set_query_function              (GstPad *pad, GstPadQueryFunction query);
470 void                    gst_pad_set_query_type_function         (GstPad *pad, GstPadQueryTypeFunction type_func);
471 const GstQueryType*     gst_pad_get_query_types                 (GstPad *pad);
472 const GstQueryType*     gst_pad_get_query_types_default         (GstPad *pad);
473 gboolean                gst_pad_query                           (GstPad *pad, GstQueryType type,
474                                                                  GstFormat *format, gint64 *value);
475 gboolean                gst_pad_query_default                   (GstPad *pad, GstQueryType type,
476                                                                  GstFormat *format, gint64 *value);
477
478 void                    gst_pad_set_internal_connection_function(GstPad *pad, GstPadIntConnFunction intconn);
479 GList*                  gst_pad_get_internal_connections        (GstPad *pad);
480 GList*                  gst_pad_get_internal_connections_default (GstPad *pad);
481         
482 /* misc helper functions */
483 gboolean                gst_pad_dispatcher                      (GstPad *pad, GstPadDispatcherFunction dispatch, 
484                                                                  gpointer data);
485
486 #define                 gst_pad_add_probe(pad, probe) \
487                         (gst_probe_dispatcher_add_probe (&(GST_REAL_PAD (pad)-probedisp), probe))
488 #define                 gst_pad_remove_probe(pad, probe) \
489                         (gst_probe_dispatcher_remove_probe (&(GST_REAL_PAD (pad)-probedisp), probe))
490
491 #ifndef GST_DISABLE_LOADSAVE
492 void                    gst_pad_load_and_connect                (xmlNodePtr self, GstObject *parent);
493 #endif
494
495
496 /* ghostpads */
497 GstPad*                 gst_ghost_pad_new                       (const gchar *name, GstPad *pad);
498
499
500 /* templates and factories */
501 GType                   gst_pad_template_get_type               (void);
502
503 GstPadTemplate*         gst_pad_template_new                    (const gchar *name_template,
504                                                                  GstPadDirection direction, GstPadPresence presence,
505                                                                  GstCaps *caps, ...);
506
507 GstCaps*                gst_pad_template_get_caps               (GstPadTemplate *templ);
508 GstCaps*                gst_pad_template_get_caps_by_name       (GstPadTemplate *templ, const gchar *name);
509
510 xmlNodePtr              gst_ghost_pad_save_thyself              (GstPad *pad,
511                                                                  xmlNodePtr parent);
512
513 G_END_DECLS
514
515
516 #endif /* __GST_PAD_H__ */
517