filter newlines out of GST_DEBUG statements to reflect new core behavior fixes to...
[platform/upstream/gstreamer.git] / gst / gstpad.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gstpad.c: Pads for connecting elements together
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 /* #define GST_DEBUG_ENABLED */
24 #include "gst_private.h"
25
26 #include "gstpad.h"
27 #include "gstutils.h"
28 #include "gstelement.h"
29 #include "gsttype.h"
30 #include "gstbin.h"
31 #include "gstscheduler.h"
32 #include "gstevent.h"
33
34 GType _gst_pad_type = 0;
35
36 /***** Start with the base GstPad class *****/
37 static void             gst_pad_class_init              (GstPadClass *klass);
38 static void             gst_pad_init                    (GstPad *pad);
39
40 static gboolean         gst_pad_try_reconnect_filtered_func (GstRealPad *srcpad, GstRealPad *sinkpad, 
41                                                          GstCaps *caps, gboolean clear);
42
43 #ifndef GST_DISABLE_LOADSAVE
44 static xmlNodePtr       gst_pad_save_thyself            (GstObject *object, xmlNodePtr parent);
45 #endif
46
47 static GstObject *pad_parent_class = NULL;
48
49 GType
50 gst_pad_get_type(void) 
51 {
52   if (!_gst_pad_type) {
53     static const GTypeInfo pad_info = {
54       sizeof(GstPadClass),
55       NULL,
56       NULL,
57       (GClassInitFunc)gst_pad_class_init,
58       NULL,
59       NULL,
60       sizeof(GstPad),
61       32,
62       (GInstanceInitFunc)gst_pad_init,
63       NULL
64     };
65     _gst_pad_type = g_type_register_static(GST_TYPE_OBJECT, "GstPad", &pad_info, 0);
66   }
67   return _gst_pad_type;
68 }
69
70 static void
71 gst_pad_class_init (GstPadClass *klass)
72 {
73   pad_parent_class = g_type_class_ref(GST_TYPE_OBJECT);
74 }
75
76 static void
77 gst_pad_init (GstPad *pad)
78 {
79   pad->element_private = NULL;
80
81   pad->padtemplate = NULL;
82 }
83
84
85
86 /***** Then do the Real Pad *****/
87 /* Pad signals and args */
88 enum {
89   REAL_SET_ACTIVE,
90   REAL_CAPS_CHANGED,
91   REAL_CAPS_NEGO_FAILED,
92   REAL_CONNECTED,
93   REAL_DISCONNECTED,
94   REAL_EVENT_RECEIVED,
95   /* FILL ME */
96   REAL_LAST_SIGNAL
97 };
98
99 enum {
100   REAL_ARG_0,
101   REAL_ARG_ACTIVE,
102   /* FILL ME */
103 };
104
105 static void     gst_real_pad_class_init         (GstRealPadClass *klass);
106 static void     gst_real_pad_init               (GstRealPad *pad);
107
108 static void     gst_real_pad_set_property       (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
109 static void     gst_real_pad_get_property       (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
110
111 static void     gst_real_pad_dispose            (GObject *object);
112
113 static void     gst_pad_push_func               (GstPad *pad, GstBuffer *buf);
114
115 GType _gst_real_pad_type = 0;
116
117 static GstPad *real_pad_parent_class = NULL;
118 static guint gst_real_pad_signals[REAL_LAST_SIGNAL] = { 0 };
119
120 GType
121 gst_real_pad_get_type(void) {
122   if (!_gst_real_pad_type) {
123     static const GTypeInfo pad_info = {
124       sizeof(GstRealPadClass),
125       NULL,
126       NULL,
127       (GClassInitFunc)gst_real_pad_class_init,
128       NULL,
129       NULL,
130       sizeof(GstRealPad),
131       32,
132       (GInstanceInitFunc)gst_real_pad_init,
133       NULL
134     };
135     _gst_real_pad_type = g_type_register_static(GST_TYPE_PAD, "GstRealPad", &pad_info, 0);
136   }
137   return _gst_real_pad_type;
138 }
139
140 static void
141 gst_real_pad_class_init (GstRealPadClass *klass)
142 {
143   GObjectClass *gobject_class;
144   GstObjectClass *gstobject_class;
145
146   gobject_class = (GObjectClass*) klass;
147   gstobject_class = (GstObjectClass*) klass;
148
149   real_pad_parent_class = g_type_class_ref (GST_TYPE_PAD);
150
151   gobject_class->dispose  = GST_DEBUG_FUNCPTR (gst_real_pad_dispose);
152   gobject_class->set_property  = GST_DEBUG_FUNCPTR (gst_real_pad_set_property);
153   gobject_class->get_property  = GST_DEBUG_FUNCPTR (gst_real_pad_get_property);
154
155   gst_real_pad_signals[REAL_SET_ACTIVE] =
156     g_signal_new ("set_active", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
157                     G_STRUCT_OFFSET (GstRealPadClass, set_active), NULL, NULL,
158                     gst_marshal_VOID__BOOLEAN, G_TYPE_NONE, 1,
159                     G_TYPE_BOOLEAN);
160   gst_real_pad_signals[REAL_CAPS_CHANGED] =
161     g_signal_new ("caps_changed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
162                     G_STRUCT_OFFSET (GstRealPadClass, caps_changed), NULL, NULL,
163                     gst_marshal_VOID__POINTER, G_TYPE_NONE, 1,
164                     G_TYPE_POINTER);
165   gst_real_pad_signals[REAL_CAPS_NEGO_FAILED] =
166     g_signal_new ("caps_nego_failed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
167                     G_STRUCT_OFFSET (GstRealPadClass, caps_nego_failed), NULL, NULL,
168                     gst_marshal_VOID__POINTER, G_TYPE_NONE, 1,
169                     G_TYPE_POINTER);
170   gst_real_pad_signals[REAL_CONNECTED] =
171     g_signal_new ("connected", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
172                     G_STRUCT_OFFSET (GstRealPadClass, connected), NULL, NULL,
173                     gst_marshal_VOID__POINTER, G_TYPE_NONE, 1,
174                     G_TYPE_POINTER);
175   gst_real_pad_signals[REAL_DISCONNECTED] =
176     g_signal_new ("disconnected", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
177                     G_STRUCT_OFFSET (GstRealPadClass, disconnected), NULL, NULL,
178                     gst_marshal_VOID__POINTER, G_TYPE_NONE, 1,
179                     G_TYPE_POINTER);
180   gst_real_pad_signals[REAL_EVENT_RECEIVED] =
181     g_signal_new ("event_received", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
182                     G_STRUCT_OFFSET (GstRealPadClass, event_received), NULL, NULL,
183                     gst_marshal_VOID__POINTER, G_TYPE_NONE, 1,
184                     G_TYPE_POINTER);
185
186 /*  gtk_object_add_arg_type ("GstRealPad::active", G_TYPE_BOOLEAN, */
187 /*                           GTK_ARG_READWRITE, REAL_ARG_ACTIVE); */
188   g_object_class_install_property (G_OBJECT_CLASS (klass), REAL_ARG_ACTIVE,
189     g_param_spec_boolean ("active", "Active", "Whether the pad is active.",
190                           TRUE,G_PARAM_READWRITE));
191
192 #ifndef GST_DISABLE_LOADSAVE
193   gstobject_class->save_thyself = GST_DEBUG_FUNCPTR (gst_pad_save_thyself);
194 #endif
195   gstobject_class->path_string_separator = ".";
196 }
197
198 static void
199 gst_real_pad_init (GstRealPad *pad)
200 {
201   pad->direction = GST_PAD_UNKNOWN;
202   pad->peer = NULL;
203
204   pad->sched = NULL;
205   pad->sched_private = NULL;
206
207   pad->chainfunc = NULL;
208   pad->getfunc = NULL;
209   pad->getregionfunc = NULL;
210
211   pad->chainhandler = GST_DEBUG_FUNCPTR (gst_pad_push_func);
212   pad->gethandler = NULL;
213   pad->pullregionfunc = NULL;
214
215   pad->bufferpoolfunc = NULL;
216   pad->ghostpads = NULL;
217   pad->caps = NULL;
218
219   pad->connectfunc = NULL;
220   pad->getcapsfunc = NULL;
221 }
222
223 static void
224 gst_real_pad_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
225 {
226   g_return_if_fail (GST_IS_PAD (object));
227
228   switch (prop_id) {
229     case REAL_ARG_ACTIVE:
230       if (g_value_get_boolean (value)) {
231         GST_DEBUG (GST_CAT_PADS, "activating pad %s:%s", GST_DEBUG_PAD_NAME (object));
232         GST_FLAG_UNSET (object, GST_PAD_DISABLED);
233       } else {
234         GST_DEBUG (GST_CAT_PADS, "de-activating pad %s:%s", GST_DEBUG_PAD_NAME (object));
235         GST_FLAG_SET (object, GST_PAD_DISABLED);
236       }
237       g_signal_emit (G_OBJECT (object), gst_real_pad_signals[REAL_SET_ACTIVE], 0,
238                       !GST_FLAG_IS_SET (object, GST_PAD_DISABLED));
239       break;
240     default:
241       break;
242   }
243 }
244
245 static void
246 gst_real_pad_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
247 {
248   /* it's not null if we got it, but it might not be ours */
249   g_return_if_fail (GST_IS_PAD (object));
250
251   switch (prop_id) {
252     case REAL_ARG_ACTIVE:
253       g_value_set_boolean (value, !GST_FLAG_IS_SET (object, GST_PAD_DISABLED));
254       break;
255     default:
256       break;
257   }
258 }
259
260
261 /**
262  * gst_pad_new:
263  * @name: name of new pad
264  * @direction: either GST_PAD_SRC or GST_PAD_SINK
265  *
266  * Create a new pad with given name.
267  *
268  * Returns: new pad
269  */
270 GstPad*
271 gst_pad_new (gchar *name,
272              GstPadDirection direction)
273 {
274   GstRealPad *pad;
275
276   g_return_val_if_fail (name != NULL, NULL);
277   g_return_val_if_fail (direction != GST_PAD_UNKNOWN, NULL);
278
279   pad = g_object_new (gst_real_pad_get_type (), NULL);
280   gst_object_set_name (GST_OBJECT (pad), name);
281   GST_RPAD_DIRECTION (pad) = direction;
282
283   return GST_PAD (pad);
284 }
285
286 /**
287  * gst_pad_new_from_template:
288  * @templ: the pad template to use
289  * @name: the name of the element
290  *
291  * Create a new pad with given name from the given template.
292  *
293  * Returns: new pad
294  */
295 GstPad*
296 gst_pad_new_from_template (GstPadTemplate *templ,
297                            gchar *name)
298 {
299   GstPad *pad;
300
301   g_return_val_if_fail (name != NULL, NULL);
302   g_return_val_if_fail (templ != NULL, NULL);
303
304   pad = gst_pad_new (name, templ->direction);
305   
306   gst_object_ref (GST_OBJECT (templ));
307   GST_PAD_PADTEMPLATE (pad) = templ;
308   
309   return pad;
310 }
311
312 /**
313  * gst_pad_get_direction:
314  * @pad: the Pad to get the direction from
315  *
316  * Get the direction of the pad.
317  *
318  * Returns: the direction of the pad
319  */
320 GstPadDirection
321 gst_pad_get_direction (GstPad *pad)
322 {
323   g_return_val_if_fail (pad != NULL, GST_PAD_UNKNOWN);
324   g_return_val_if_fail (GST_IS_PAD (pad), GST_PAD_UNKNOWN);
325
326   return GST_PAD_DIRECTION (pad);
327 }
328
329 /**
330  * gst_pad_set_name:
331  * @pad: the pad to set the name of
332  * @name: the name of the pad
333  *
334  * Set the name of a pad.
335  */
336 void
337 gst_pad_set_name (GstPad *pad,
338                   const gchar *name)
339 {
340   g_return_if_fail (pad != NULL);
341   g_return_if_fail (GST_IS_PAD (pad));
342
343   gst_object_set_name (GST_OBJECT (pad), name);
344 }
345
346 /**
347  * gst_pad_get_name:
348  * @pad: the pad to get the name of
349  *
350  * Get the name of a pad.
351  *
352  * Returns: the name of the pad, don't free.
353  */
354 const gchar*
355 gst_pad_get_name (GstPad *pad)
356 {
357   g_return_val_if_fail (pad != NULL, NULL);
358   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
359
360   return GST_OBJECT_NAME (pad);
361 }
362
363 /**
364  * gst_pad_set_chain_function:
365  * @pad: the pad to set the chain function for
366  * @chain: the chain function
367  *
368  * Set the given chain function for the pad.
369  */
370 void 
371 gst_pad_set_chain_function (GstPad *pad,
372                             GstPadChainFunction chain)
373 {
374   g_return_if_fail (pad != NULL);
375   g_return_if_fail (GST_IS_REAL_PAD (pad));
376
377   GST_RPAD_CHAINFUNC(pad) = chain;
378   GST_DEBUG (GST_CAT_PADS, "chainfunc for %s:%s set to %s",
379              GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (chain));
380 }
381
382 /**
383  * gst_pad_set_get_function:
384  * @pad: the pad to set the get function for
385  * @get: the get function
386  *
387  * Set the given get function for the pad.
388  */
389 void
390 gst_pad_set_get_function (GstPad *pad,
391                           GstPadGetFunction get)
392 {
393   g_return_if_fail (pad != NULL);
394   g_return_if_fail (GST_IS_REAL_PAD (pad));
395
396   GST_RPAD_GETFUNC(pad) = get;
397   GST_DEBUG (GST_CAT_PADS, "getfunc for %s:%s  set to %s",
398              GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (get));
399 }
400
401 /**
402  * gst_pad_set_event_function:
403  * @pad: the pad to set the event handler for
404  * @event: the event handler
405  *
406  * Set the given event handler for the pad.
407  */
408 void
409 gst_pad_set_event_function (GstPad *pad,
410                             GstPadEventFunction event)
411 {
412   g_return_if_fail (pad != NULL);
413   g_return_if_fail (GST_IS_REAL_PAD (pad));
414
415   GST_RPAD_EVENTFUNC(pad) = event;
416   GST_DEBUG (GST_CAT_PADS, "eventfunc for %s:%s  set to %s",
417              GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (event));
418 }
419
420 /**
421  * gst_pad_set_getregion_function:
422  * @pad: the pad to set the getregion function for
423  * @getregion: the getregion function
424  *
425  * Set the given getregion function for the pad.
426  */
427 void
428 gst_pad_set_getregion_function (GstPad *pad,
429                                 GstPadGetRegionFunction getregion)
430 {
431   g_return_if_fail (pad != NULL);
432   g_return_if_fail (GST_IS_REAL_PAD (pad));
433
434   GST_RPAD_GETREGIONFUNC(pad) = getregion;
435   GST_DEBUG (GST_CAT_PADS, "getregionfunc for %s:%s set to %s",
436              GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (getregion));
437 }
438
439 /**
440  * gst_pad_set_connect_function:
441  * @pad: the pad to set the connect function for
442  * @connect: the connect function
443  *
444  * Set the given connect function for the pad. It will be called
445  * when the pad is connected or reconnected with caps.
446  */
447 void
448 gst_pad_set_connect_function (GstPad *pad,
449                               GstPadConnectFunction connect)
450 {
451   g_return_if_fail (pad != NULL);
452   g_return_if_fail (GST_IS_REAL_PAD (pad));
453
454   GST_RPAD_CONNECTFUNC (pad) = connect;
455   GST_DEBUG (GST_CAT_PADS, "connectfunc for %s:%s set to %s",
456              GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (connect));
457 }
458
459 /**
460  * gst_pad_set_getcaps_function:
461  * @pad: the pad to set the getcaps function for
462  * @getcaps: the getcaps function
463  *
464  * Set the given getcaps function for the pad.
465  */
466 void
467 gst_pad_set_getcaps_function (GstPad *pad,
468                               GstPadGetCapsFunction getcaps)
469 {
470   g_return_if_fail (pad != NULL);
471   g_return_if_fail (GST_IS_REAL_PAD (pad));
472
473   GST_RPAD_GETCAPSFUNC (pad) = getcaps;
474   GST_DEBUG (GST_CAT_PADS, "getcapsfunc for %s:%s set to %s",
475              GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (getcaps));
476 }
477 /**
478  * gst_pad_set_bufferpool_function:
479  * @pad: the pad to set the bufferpool function for
480  * @bufpool: the bufferpool function
481  *
482  * Set the given bufferpool function for the pad.
483  */
484 void
485 gst_pad_set_bufferpool_function (GstPad *pad,
486                                  GstPadBufferPoolFunction bufpool)
487 {
488   g_return_if_fail (pad != NULL);
489   g_return_if_fail (GST_IS_REAL_PAD (pad));
490
491   GST_RPAD_BUFFERPOOLFUNC (pad) = bufpool;
492   GST_DEBUG (GST_CAT_PADS, "bufferpoolfunc for %s:%s set to %s",
493              GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (bufpool));
494 }
495
496 static void
497 gst_pad_push_func(GstPad *pad, GstBuffer *buf)
498 {
499   if (GST_RPAD_CHAINFUNC (GST_RPAD_PEER (pad)) != NULL) {
500     GST_DEBUG (GST_CAT_DATAFLOW, "calling chain function %s",
501                GST_DEBUG_FUNCPTR_NAME (GST_RPAD_CHAINFUNC (GST_RPAD_PEER (pad))));
502     (GST_RPAD_CHAINFUNC (GST_RPAD_PEER (pad))) (pad, buf);
503   } else {
504     GST_DEBUG (GST_CAT_DATAFLOW, "default pad_push handler in place, no chain function");
505     g_warning ("(internal error) default pad_push in place for pad %s:%s but it has no chain function", 
506                     GST_DEBUG_PAD_NAME (pad));
507   }
508 }
509
510
511 /**
512  * gst_pad_disconnect:
513  * @srcpad: the source pad to disconnect
514  * @sinkpad: the sink pad to disconnect
515  *
516  * Disconnects the source pad from the sink pad.
517  */
518 void
519 gst_pad_disconnect (GstPad *srcpad,
520                     GstPad *sinkpad)
521 {
522   GstRealPad *realsrc, *realsink;
523
524   /* generic checks */
525   g_return_if_fail (srcpad != NULL);
526   g_return_if_fail (GST_IS_PAD (srcpad));
527   g_return_if_fail (sinkpad != NULL);
528   g_return_if_fail (GST_IS_PAD (sinkpad));
529
530   GST_INFO (GST_CAT_ELEMENT_PADS, "disconnecting %s:%s(%p) and %s:%s(%p)",
531             GST_DEBUG_PAD_NAME (srcpad), srcpad, GST_DEBUG_PAD_NAME (sinkpad), sinkpad);
532
533   /* now we need to deal with the real/ghost stuff */
534   realsrc = GST_PAD_REALIZE (srcpad);
535   realsink = GST_PAD_REALIZE (sinkpad);
536
537   g_return_if_fail (GST_RPAD_PEER (realsrc) != NULL);
538   g_return_if_fail (GST_RPAD_PEER (realsink) != NULL);
539
540   if ((GST_RPAD_DIRECTION (realsrc) == GST_PAD_SINK) &&
541       (GST_RPAD_DIRECTION (realsink) == GST_PAD_SRC)) {
542     GstRealPad *temppad;
543
544     temppad = realsrc;
545     realsrc = realsink;
546     realsink = temppad;
547   }
548   g_return_if_fail ((GST_RPAD_DIRECTION (realsrc) == GST_PAD_SRC) &&
549                     (GST_RPAD_DIRECTION (realsink) == GST_PAD_SINK));
550
551   /* first clear peers */
552   GST_RPAD_PEER (realsrc) = NULL;
553   GST_RPAD_PEER (realsink) = NULL;
554
555   /* reset the filters, both filters are refcounted once */
556   if (GST_RPAD_FILTER (realsrc)) {
557     gst_caps_unref (GST_RPAD_FILTER (realsrc));
558     GST_RPAD_FILTER (realsink) = NULL;
559     GST_RPAD_FILTER (realsrc) = NULL;
560   }
561
562   /* now tell the scheduler */
563   if (GST_PAD_PARENT (realsrc)->sched)
564     gst_scheduler_pad_disconnect (GST_PAD_PARENT (realsrc)->sched, (GstPad *)realsrc, (GstPad *)realsink);
565   else if (GST_PAD_PARENT (realsink)->sched)
566     gst_scheduler_pad_disconnect (GST_PAD_PARENT (realsink)->sched, (GstPad *)realsrc, (GstPad *)realsink);
567
568   /* hold a reference, as they can go away in the signal handlers */
569   gst_object_ref (GST_OBJECT (realsrc));
570   gst_object_ref (GST_OBJECT (realsink));
571
572   /* fire off a signal to each of the pads telling them that they've been disconnected */
573   g_signal_emit (G_OBJECT (realsrc), gst_real_pad_signals[REAL_DISCONNECTED], 0, realsink);
574   g_signal_emit (G_OBJECT (realsink), gst_real_pad_signals[REAL_DISCONNECTED], 0, realsrc);
575
576   GST_INFO (GST_CAT_ELEMENT_PADS, "disconnected %s:%s and %s:%s",
577             GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
578
579   gst_object_unref (GST_OBJECT (realsrc));
580   gst_object_unref (GST_OBJECT (realsink));
581 }
582
583 /**
584  * gst_pad_can_connect_filtered:
585  * @srcpad: the source pad to connect
586  * @sinkpad: the sink pad to connect
587  * @filtercaps: the filter caps.
588  *
589  * Checks if the source pad and the sink pad can be connected. 
590  * The filter indicates the media type that should flow trought this connection.
591  *
592  * Returns: TRUE if the pad can be connected, FALSE otherwise
593  */
594 gboolean
595 gst_pad_can_connect_filtered (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps)
596 {
597   gint num_decoupled = 0;
598   GstRealPad *realsrc, *realsink;
599
600   /* generic checks */
601   g_return_val_if_fail (srcpad != NULL, FALSE);
602   g_return_val_if_fail (GST_IS_PAD (srcpad), FALSE);
603   g_return_val_if_fail (sinkpad != NULL, FALSE);
604   g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
605
606   /* now we need to deal with the real/ghost stuff */
607   realsrc = GST_PAD_REALIZE (srcpad);
608   realsink = GST_PAD_REALIZE (sinkpad);
609
610   g_return_val_if_fail (GST_RPAD_PEER (realsrc) == NULL, FALSE);
611   g_return_val_if_fail (GST_RPAD_PEER (realsink) == NULL, FALSE);
612   g_return_val_if_fail (GST_PAD_PARENT (realsrc) != NULL, FALSE);
613   g_return_val_if_fail (GST_PAD_PARENT (realsink) != NULL, FALSE);
614
615   if (realsrc->sched && realsink->sched) {
616     if (GST_FLAG_IS_SET (GST_PAD_PARENT (realsrc), GST_ELEMENT_DECOUPLED))
617       num_decoupled++;
618     if (GST_FLAG_IS_SET (GST_PAD_PARENT (realsink), GST_ELEMENT_DECOUPLED))
619       num_decoupled++;
620
621     if (realsrc->sched != realsink->sched && num_decoupled != 1) {
622       g_warning ("connecting pads with different scheds requires exactly one decoupled element (queue)");
623       return FALSE;
624     }
625   }
626   
627   /* check if the directions are compatible */
628   if (!(((GST_RPAD_DIRECTION (realsrc) == GST_PAD_SINK) &&
629          (GST_RPAD_DIRECTION (realsink) == GST_PAD_SRC)) ||
630         ((GST_RPAD_DIRECTION (realsrc) == GST_PAD_SRC) &&
631          (GST_RPAD_DIRECTION (realsink) == GST_PAD_SINK))))
632   {
633     return FALSE;
634   }
635   
636   return TRUE;
637 }
638 /**
639  * gst_pad_can_connect:
640  * @srcpad: the source pad to connect
641  * @sinkpad: the sink pad to connect
642  *
643  * Checks if the source pad can be connected to the sink pad.
644  *
645  * Returns: TRUE if the pads can be connected, FALSE otherwise
646  */
647 gboolean
648 gst_pad_can_connect (GstPad *srcpad, GstPad *sinkpad)
649 {
650   return gst_pad_can_connect_filtered (srcpad, sinkpad, NULL);
651 }
652
653 /**
654  * gst_pad_connect_filtered:
655  * @srcpad: the source pad to connect
656  * @sinkpad: the sink pad to connect
657  * @filtercaps: the filter caps.
658  *
659  * Connects the source pad to the sink pad. The filter indicates the media type
660  * that should flow trought this connection.
661  *
662  * Returns: TRUE if the pad could be connected, FALSE otherwise
663  */
664 gboolean
665 gst_pad_connect_filtered (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps)
666 {
667   GstRealPad *realsrc, *realsink;
668   gint num_decoupled = 0;
669
670   /* generic checks */
671   g_return_val_if_fail (srcpad != NULL, FALSE);
672   g_return_val_if_fail (GST_IS_PAD (srcpad), FALSE);
673   g_return_val_if_fail (sinkpad != NULL, FALSE);
674   g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
675
676   GST_INFO (GST_CAT_PADS, "connecting %s:%s and %s:%s",
677             GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
678
679   /* now we need to deal with the real/ghost stuff */
680   realsrc = GST_PAD_REALIZE (srcpad);
681   realsink = GST_PAD_REALIZE (sinkpad);
682
683   if ((GST_PAD (realsrc) != srcpad) || (GST_PAD (realsink) != sinkpad)) {
684     GST_INFO (GST_CAT_PADS, "*actually* connecting %s:%s and %s:%s",
685               GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
686   }
687
688   g_return_val_if_fail (GST_RPAD_PEER (realsrc) == NULL, FALSE);
689   g_return_val_if_fail (GST_RPAD_PEER (realsink) == NULL, FALSE);
690   g_return_val_if_fail (GST_PAD_PARENT (realsrc) != NULL, FALSE);
691   g_return_val_if_fail (GST_PAD_PARENT (realsink) != NULL, FALSE);
692
693   if (realsrc->sched && realsink->sched) {
694     if (GST_FLAG_IS_SET (GST_PAD_PARENT (realsrc), GST_ELEMENT_DECOUPLED))
695       num_decoupled++;
696     if (GST_FLAG_IS_SET (GST_PAD_PARENT (realsink), GST_ELEMENT_DECOUPLED))
697       num_decoupled++;
698
699     if (realsrc->sched != realsink->sched && num_decoupled != 1) {
700       g_warning ("connecting pads with different scheds requires exactly one decoupled element (queue)\n");
701       return FALSE;
702     }
703   }
704
705   /* check for reversed directions and swap if necessary */
706   if ((GST_RPAD_DIRECTION (realsrc) == GST_PAD_SINK) &&
707       (GST_RPAD_DIRECTION (realsink) == GST_PAD_SRC)) {
708     GstRealPad *temppad;
709
710     temppad = realsrc;
711     realsrc = realsink;
712     realsink = temppad;
713   }
714   g_return_val_if_fail ((GST_RPAD_DIRECTION (realsrc) == GST_PAD_SRC) &&
715                         (GST_RPAD_DIRECTION (realsink) == GST_PAD_SINK), FALSE);
716
717   /* first set peers */
718   GST_RPAD_PEER (realsrc) = realsink;
719   GST_RPAD_PEER (realsink) = realsrc;
720
721   /* try to negotiate the pads, we don't need to clear the caps here */
722   if (!gst_pad_try_reconnect_filtered_func (realsrc, realsink, filtercaps, FALSE)) {
723     GST_DEBUG (GST_CAT_CAPS, "pads cannot connect");
724
725     GST_RPAD_PEER (realsrc) = NULL;
726     GST_RPAD_PEER (realsink) = NULL;
727
728     return FALSE;
729   }
730
731   /* fire off a signal to each of the pads telling them that they've been connected */
732   g_signal_emit (G_OBJECT (realsrc), gst_real_pad_signals[REAL_CONNECTED], 0, realsink);
733   g_signal_emit (G_OBJECT (realsink), gst_real_pad_signals[REAL_CONNECTED], 0, realsrc);
734
735   /* now tell the scheduler(s) */
736   if (realsrc->sched)
737     gst_scheduler_pad_connect (realsrc->sched, (GstPad *)realsrc, (GstPad *)realsink);
738   else if (realsink->sched)
739     gst_scheduler_pad_connect (realsink->sched, (GstPad *)realsrc, (GstPad *)realsink);
740
741   GST_INFO (GST_CAT_PADS, "connected %s:%s and %s:%s",
742             GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
743   gst_caps_debug (gst_pad_get_caps (GST_PAD_CAST (realsrc)), "caps of newly connected src pad");
744
745   return TRUE;
746 }
747
748 /**
749  * gst_pad_connect:
750  * @srcpad: the source pad to connect
751  * @sinkpad: the sink pad to connect
752  *
753  * Connects the source pad to the sink pad.
754  *
755  * Returns: TRUE if the pad could be connected, FALSE otherwise
756  */
757 gboolean
758 gst_pad_connect (GstPad *srcpad, GstPad *sinkpad)
759 {
760   return gst_pad_connect_filtered (srcpad, sinkpad, NULL);
761 }
762
763 /**
764  * gst_pad_set_parent:
765  * @pad: the pad to set the parent
766  * @parent: the object to set the parent to
767  *
768  * Sets the parent object of a pad.
769  */
770 void
771 gst_pad_set_parent (GstPad *pad,
772                     GstObject *parent)
773 {
774   g_return_if_fail (pad != NULL);
775   g_return_if_fail (GST_IS_PAD (pad));
776   g_return_if_fail (GST_PAD_PARENT (pad) == NULL);
777   g_return_if_fail (parent != NULL);
778   g_return_if_fail (GST_IS_OBJECT (parent));
779   g_return_if_fail ((gpointer)pad != (gpointer)parent);
780
781   gst_object_set_parent (GST_OBJECT (pad), parent);
782 }
783
784 /**
785  * gst_pad_get_parent:
786  * @pad: the pad to get the parent from
787  *
788  * Get the parent object of this pad.
789  *
790  * Returns: the parent object
791  */
792 GstElement*
793 gst_pad_get_parent (GstPad *pad)
794 {
795   g_return_val_if_fail (pad != NULL, NULL);
796   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
797
798   return GST_PAD_PARENT (pad);
799 }
800
801 /**
802  * gst_pad_get_padtemplate:
803  * @pad: the pad to get the padtemplate from
804  *
805  * Get the padtemplate object of this pad.
806  *
807  * Returns: the padtemplate object
808  */
809 GstPadTemplate*
810 gst_pad_get_padtemplate (GstPad *pad)
811 {
812   g_return_val_if_fail (pad != NULL, NULL);
813   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
814
815   return GST_PAD_PADTEMPLATE (pad); 
816 }
817
818
819 /**
820  * gst_pad_set_sched:
821  * @pad: the pad to set the scheduler for
822  * @sched: The scheduler to set
823  *
824  * Set the scheduler for the pad
825  */
826 void
827 gst_pad_set_sched (GstPad *pad, GstScheduler *sched)
828 {
829   g_return_if_fail (pad != NULL);
830   g_return_if_fail (GST_IS_PAD (pad));
831  
832   GST_RPAD_SCHED(pad) = sched;
833 }
834  
835 /**
836  * gst_pad_get_sched:
837  * @pad: the pad to get the scheduler from
838  *
839  * Get the scheduler of the pad
840  *
841  * Returns: the scheduler of the pad.
842  */
843 GstScheduler*
844 gst_pad_get_sched (GstPad *pad)
845 {
846   g_return_val_if_fail (pad != NULL, NULL);
847   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
848  
849   return GST_RPAD_SCHED(pad);
850 }
851
852 /**
853  * gst_pad_unset_sched:
854  * @pad: the pad to unset the scheduler for
855  *
856  * Unset the scheduler for the pad
857  */
858 void
859 gst_pad_unset_sched (GstPad *pad)
860 {
861   g_return_if_fail (pad != NULL);
862   g_return_if_fail (GST_IS_PAD (pad));
863  
864   GST_RPAD_SCHED(pad) = NULL;
865 }
866  
867 /**
868  * gst_pad_get_real_parent:
869  * @pad: the pad to get the parent from
870  *
871  * Get the real parent object of this pad. If the pad
872  * is a ghostpad, the actual owner of the real pad is
873  * returned, as opposed to the gst_pad_get_parent().
874  *
875  * Returns: the parent object
876  */
877 GstElement*
878 gst_pad_get_real_parent (GstPad *pad)
879 {
880   g_return_val_if_fail (pad != NULL, NULL);
881   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
882
883   return GST_PAD_PARENT (GST_PAD (GST_PAD_REALIZE (pad)));
884 }
885
886 /**
887  * gst_pad_add_ghost_pad:
888  * @pad: the pad to set the ghost parent
889  * @ghostpad: the ghost pad to add
890  *
891  * Add a ghost pad to a pad.
892  */
893 void
894 gst_pad_add_ghost_pad (GstPad *pad,
895                        GstPad *ghostpad)
896 {
897   GstRealPad *realpad;
898
899   g_return_if_fail (pad != NULL);
900   g_return_if_fail (GST_IS_PAD (pad));
901   g_return_if_fail (ghostpad != NULL);
902   g_return_if_fail (GST_IS_GHOST_PAD (ghostpad));
903
904   realpad = GST_PAD_REALIZE (pad);
905
906   realpad->ghostpads = g_list_prepend (realpad->ghostpads, ghostpad);
907 }
908
909
910 /**
911  * gst_pad_remove_ghost_pad:
912  * @pad: the pad to remove the ghost parent
913  * @ghostpad: the ghost pad to remove from the pad
914  *
915  * Remove a ghost pad from a pad.
916  */
917 void
918 gst_pad_remove_ghost_pad (GstPad *pad,
919                           GstPad *ghostpad)
920 {
921   GstRealPad *realpad;
922
923   g_return_if_fail (pad != NULL);
924   g_return_if_fail (GST_IS_PAD (pad));
925   g_return_if_fail (ghostpad != NULL);
926   g_return_if_fail (GST_IS_GHOST_PAD (ghostpad));
927
928   realpad = GST_PAD_REALIZE (pad);
929
930   realpad->ghostpads = g_list_remove (realpad->ghostpads, ghostpad);
931 }
932
933 /**
934  * gst_pad_get_ghost_pad_list:
935  * @pad: the pad to get the ghost parents from
936  *
937  * Get the ghost parents of this pad.
938  *
939  * Returns: a GList of ghost pads
940  */
941 GList*
942 gst_pad_get_ghost_pad_list (GstPad *pad)
943 {
944   g_return_val_if_fail (pad != NULL, NULL);
945   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
946
947   return GST_PAD_REALIZE(pad)->ghostpads;
948 }
949
950 /* an internal caps negotiation helper function does:
951  * 
952  * 1. optinally calls the pad connect function with the provided caps
953  * 2. deal with the result code of the connect function
954  * 3. set fixed caps on the pad.
955  */
956 static GstPadConnectReturn
957 gst_pad_try_set_caps_func (GstRealPad *pad, GstCaps *caps, gboolean notify)
958 {
959   GstCaps *oldcaps;
960   GstPadTemplate *template;
961   GstElement *parent = GST_PAD_PARENT (pad);
962
963   /* thomas: FIXME: is this the right result to return ? */
964   g_return_val_if_fail (pad != NULL, GST_PAD_CONNECT_REFUSED);
965   g_return_val_if_fail (GST_IS_PAD (pad), GST_PAD_CONNECT_REFUSED);
966   
967   /* if this pad has a parent and the parent is not READY, delay the
968    * negotiation */
969   if (parent && GST_STATE (parent) < GST_STATE_READY)
970   {
971     GST_DEBUG (GST_CAT_CAPS, "parent %s of pad %s:%s is not ready",
972                GST_ELEMENT_NAME (parent), GST_DEBUG_PAD_NAME (pad));
973     return GST_PAD_CONNECT_DELAYED;
974   }
975           
976   GST_INFO (GST_CAT_CAPS, "trying to set caps %p on pad %s:%s",
977             caps, GST_DEBUG_PAD_NAME (pad));
978   
979   if ((template = gst_pad_get_padtemplate (GST_PAD_CAST (pad)))) {
980     if (!gst_caps_intersect (caps, gst_padtemplate_get_caps (template))) {
981       GST_INFO (GST_CAT_CAPS, "caps did not intersect with %s:%s's padtemplate",
982                 GST_DEBUG_PAD_NAME (pad));
983       gst_caps_debug (gst_padtemplate_get_caps (template),
984                       "pad template caps that did not agree with caps");
985       return GST_PAD_CONNECT_REFUSED;
986     }
987     /* given that the caps are fixed, we know that their intersection with the
988      * padtemplate caps is the same as caps itself */
989   }
990
991   /* we need to notify the connect function */
992   if (notify && GST_RPAD_CONNECTFUNC (pad)) {
993     GstPadConnectReturn res;
994     gchar *debug_string;
995
996     GST_INFO (GST_CAT_CAPS, "calling connect function on pad %s:%s",
997             GST_DEBUG_PAD_NAME (pad));
998
999     /* call the connect function */
1000     res = GST_RPAD_CONNECTFUNC (pad) (GST_PAD (pad), caps);
1001
1002     switch (res) {
1003       case GST_PAD_CONNECT_REFUSED:
1004         debug_string = "REFUSED";
1005         break;
1006       case GST_PAD_CONNECT_OK:
1007         debug_string = "OK";
1008         break;
1009       case GST_PAD_CONNECT_DONE:
1010         debug_string = "DONE";
1011         break;
1012       case GST_PAD_CONNECT_DELAYED:
1013         debug_string = "DELAYED";
1014         break;
1015       default:
1016         g_warning ("unknown return code from connect function of pad %s:%s",
1017             GST_DEBUG_PAD_NAME (pad));
1018         return GST_PAD_CONNECT_REFUSED;
1019     }
1020
1021     GST_INFO (GST_CAT_CAPS, "got reply %s (%d) from connect function on pad %s:%s",
1022             debug_string, res, GST_DEBUG_PAD_NAME (pad));
1023
1024     /* done means the connect function called another caps negotiate function
1025      * on this pad that succeeded, we dont need to continue */
1026     if (res == GST_PAD_CONNECT_DONE) {
1027       GST_INFO (GST_CAT_CAPS, "pad %s:%s is done", GST_DEBUG_PAD_NAME (pad));
1028       return GST_PAD_CONNECT_DONE;
1029     }
1030     if (res == GST_PAD_CONNECT_REFUSED) {
1031       GST_INFO (GST_CAT_CAPS, "pad %s:%s doesn't accept caps",
1032                     GST_DEBUG_PAD_NAME (pad));
1033       return GST_PAD_CONNECT_REFUSED;
1034     }
1035   }
1036   /* we can only set caps on the pad if they are fixed */
1037   if (GST_CAPS_IS_FIXED (caps)) {
1038
1039     GST_INFO (GST_CAT_CAPS, "setting caps on pad %s:%s",
1040               GST_DEBUG_PAD_NAME (pad));
1041     /* if we got this far all is ok, remove the old caps, set the new one */
1042     oldcaps = GST_PAD_CAPS (pad);
1043     if (caps) gst_caps_ref (caps);
1044     GST_PAD_CAPS (pad) = caps;
1045     if (oldcaps) gst_caps_unref (oldcaps);
1046   }
1047   else {
1048     GST_INFO (GST_CAT_CAPS, "caps are not fixed on pad %s:%s, not setting them yet",
1049               GST_DEBUG_PAD_NAME (pad));
1050   }
1051
1052   return GST_PAD_CONNECT_OK;
1053 }
1054
1055 /**
1056  * gst_pad_try_set_caps:
1057  * @pad: the pad to try to set the caps on
1058  * @caps: the caps to set
1059  *
1060  * Try to set the caps on the given pad.
1061  *
1062  * Returns: TRUE if the caps could be set
1063  */
1064 gboolean
1065 gst_pad_try_set_caps (GstPad *pad, GstCaps *caps)
1066 {
1067   GstRealPad *peer, *realpad;
1068
1069   realpad = GST_PAD_REALIZE (pad);
1070   peer = GST_RPAD_PEER (realpad);
1071
1072   GST_INFO (GST_CAT_CAPS, "trying to set caps %p on pad %s:%s",
1073             caps, GST_DEBUG_PAD_NAME (realpad));
1074
1075   gst_caps_debug (caps, "caps that we are trying to set");
1076
1077   /* setting non fixed caps on a pad is not allowed */
1078   if (!GST_CAPS_IS_FIXED (caps)) {
1079   GST_INFO (GST_CAT_CAPS, "trying to set unfixed caps on pad %s:%s, not allowed",
1080                   GST_DEBUG_PAD_NAME (realpad));
1081     g_warning ("trying to set non fixed caps on pad %s:%s, not allowed",
1082             GST_DEBUG_PAD_NAME (realpad));
1083     gst_caps_debug (caps, "unfixed caps");
1084     return FALSE;
1085   }
1086
1087   /* if we have a peer try to set the caps, notifying the peerpad
1088    * if it has a connect function */
1089   if (peer && (gst_pad_try_set_caps_func (peer, caps, TRUE) != GST_PAD_CONNECT_OK))
1090   {
1091     GST_INFO (GST_CAT_CAPS, "tried to set caps on peerpad %s:%s but couldn't",
1092               GST_DEBUG_PAD_NAME (peer));
1093     return FALSE;
1094   }
1095
1096   /* then try to set our own caps, we don't need to be notified */
1097   if (gst_pad_try_set_caps_func (realpad, caps, FALSE) != GST_PAD_CONNECT_OK)
1098   {
1099     GST_INFO (GST_CAT_CAPS, "tried to set own caps on pad %s:%s but couldn't",
1100               GST_DEBUG_PAD_NAME (realpad));
1101     return FALSE;
1102   }
1103   GST_INFO (GST_CAT_CAPS, "succeeded setting caps %p on pad %s:%s",
1104             caps, GST_DEBUG_PAD_NAME (realpad));
1105   g_assert (GST_PAD_CAPS (pad));
1106                           
1107   return TRUE;
1108 }
1109
1110 /* this is a caps negotiation convenience routine, it performs:
1111  *
1112  * 1. optionally clear any pad caps
1113  * 2. calculate the intersection between the two pad tamplate/getcaps caps
1114  * 3. calculate the intersection with the (optional) filtercaps.
1115  * 4. store the intersection in the pad filter
1116  * 5. store the app filtercaps in the pad appfilter.
1117  * 6. start the caps negotiation.
1118  */
1119 static gboolean
1120 gst_pad_try_reconnect_filtered_func (GstRealPad *srcpad, GstRealPad *sinkpad, GstCaps *filtercaps, gboolean clear)
1121 {
1122   GstCaps *srccaps, *sinkcaps;
1123   GstCaps *intersection = NULL;
1124   GstRealPad *realsrc, *realsink;
1125
1126   realsrc = GST_PAD_REALIZE (srcpad);
1127   realsink = GST_PAD_REALIZE (sinkpad);
1128
1129   g_return_val_if_fail (GST_RPAD_PEER (realsrc) != NULL, FALSE);
1130   g_return_val_if_fail (GST_RPAD_PEER (realsink) == realsrc, FALSE);
1131
1132   /* optinally clear the caps */
1133   if (clear) {
1134     GST_INFO (GST_CAT_PADS, "reconnect filtered %s:%s and %s:%s, clearing caps",
1135         GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
1136
1137     GST_PAD_CAPS (GST_PAD (realsrc)) = NULL;
1138     GST_PAD_CAPS (GST_PAD (realsink)) = NULL;
1139   }
1140   else {
1141     GST_INFO (GST_CAT_PADS, "reconnect filtered %s:%s and %s:%s",
1142         GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
1143   }
1144
1145   srccaps = gst_pad_get_caps (GST_PAD (realsrc));
1146   GST_INFO (GST_CAT_PADS, "dumping caps of pad %s:%s", GST_DEBUG_PAD_NAME (realsrc));
1147   gst_caps_debug (srccaps, "caps of src pad (pre-reconnect)");
1148   sinkcaps = gst_pad_get_caps (GST_PAD (realsink));
1149   GST_INFO (GST_CAT_PADS, "dumping caps of pad %s:%s", GST_DEBUG_PAD_NAME (realsink));
1150   gst_caps_debug (sinkcaps, "caps of sink pad (pre-reconnect)");
1151
1152   /* first take the intersection of the pad caps */
1153   intersection = gst_caps_intersect (srccaps, sinkcaps);
1154
1155   /* if we have no intersection but one of the caps was not NULL.. */
1156   if (!intersection && (srccaps || sinkcaps)) {
1157     /* the intersection is NULL but the pad caps were not both NULL,
1158      * this means they have no common format */
1159     GST_INFO (GST_CAT_PADS, "pads %s:%s and %s:%s have no common type",
1160          GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
1161     return FALSE;
1162   } else if (intersection) {
1163     GST_INFO (GST_CAT_PADS, "pads %s:%s and %s:%s intersected to %s caps",
1164          GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink), 
1165          ((intersection && GST_CAPS_IS_FIXED (intersection)) ? "fixed" : "variable"));
1166
1167     /* then filter this against the app filter */
1168     if (filtercaps) {
1169       GstCaps *filtered_intersection = gst_caps_intersect (intersection, filtercaps);
1170
1171       /* get rid of the old intersection here */
1172       gst_caps_unref (intersection);
1173
1174       if (!filtered_intersection) {
1175         GST_INFO (GST_CAT_PADS, "filtered connection between pads %s:%s and %s:%s is empty",
1176              GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
1177         return FALSE;
1178       }
1179       intersection = filtered_intersection;
1180
1181       /* keep a reference to the app caps */
1182       GST_RPAD_APPFILTER (realsink) = filtercaps;
1183       GST_RPAD_APPFILTER (realsrc) = filtercaps;
1184     }
1185   }
1186   GST_DEBUG (GST_CAT_CAPS, "setting filter for connection to:");
1187   gst_caps_debug (intersection, "filter for connection");
1188
1189   /* both the app filter and the filter, while stored on both peer pads, are the
1190      equal to the same thing on both */
1191   GST_RPAD_FILTER (realsrc) = intersection; 
1192   GST_RPAD_FILTER (realsink) = intersection; 
1193
1194   return gst_pad_perform_negotiate (GST_PAD (realsrc), GST_PAD (realsink));
1195 }
1196
1197 /**
1198  * gst_pad_perform_negotiate:
1199  * @srcpad: a srcpad
1200  * @sinkpad: a sinkpad 
1201  *
1202  * Try to negotiate the pads.
1203  *
1204  * Returns: a boolean indicating the pad succesfully negotiated.
1205  */
1206 gboolean
1207 gst_pad_perform_negotiate (GstPad *srcpad, GstPad *sinkpad) 
1208 {
1209   GstCaps *intersection, *filtered_intersection;
1210   GstRealPad *realsrc, *realsink;
1211   GstCaps *srccaps, *sinkcaps, *filter;
1212
1213   g_return_val_if_fail (srcpad != NULL, FALSE);
1214   g_return_val_if_fail (sinkpad != NULL, FALSE);
1215   
1216   realsrc = GST_PAD_REALIZE (srcpad);
1217   realsink = GST_PAD_REALIZE (sinkpad);
1218     
1219   g_return_val_if_fail (GST_RPAD_PEER (realsrc) != NULL, FALSE);
1220   g_return_val_if_fail (GST_RPAD_PEER (realsink) == realsrc, FALSE);
1221
1222   filter = GST_RPAD_APPFILTER (realsrc);
1223   if (filter) {
1224     GST_INFO (GST_CAT_PADS, "dumping filter for connection %s:%s-%s:%s",
1225               GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
1226     gst_caps_debug (filter, "connection filter caps");
1227   }
1228
1229   /* calculate the new caps here */
1230   srccaps = gst_pad_get_caps (GST_PAD (realsrc));
1231   GST_INFO (GST_CAT_PADS, "dumping caps of pad %s:%s", GST_DEBUG_PAD_NAME (realsrc));
1232   gst_caps_debug (srccaps, "src caps, awaiting negotiation, after applying filter");
1233   sinkcaps = gst_pad_get_caps (GST_PAD (realsink));
1234   GST_INFO (GST_CAT_PADS, "dumping caps of pad %s:%s", GST_DEBUG_PAD_NAME (realsink));
1235   gst_caps_debug (sinkcaps, "sink caps, awaiting negotiation, after applying filter");
1236   intersection = gst_caps_intersect (srccaps, sinkcaps);
1237   filtered_intersection = gst_caps_intersect (intersection, filter);
1238   if (filtered_intersection) {
1239     gst_caps_unref (intersection);
1240     intersection = filtered_intersection;
1241   }
1242
1243   /* no negotiation is performed if the pads have filtercaps */
1244   if (intersection) {
1245     GstPadConnectReturn res;
1246
1247     res = gst_pad_try_set_caps_func (realsrc, intersection, TRUE);
1248     if (res == GST_PAD_CONNECT_REFUSED) 
1249       return FALSE;
1250     if (res == GST_PAD_CONNECT_DONE) 
1251       return TRUE;
1252
1253     res = gst_pad_try_set_caps_func (realsink, intersection, TRUE);
1254     if (res == GST_PAD_CONNECT_REFUSED) 
1255       return FALSE;
1256     if (res == GST_PAD_CONNECT_DONE) 
1257       return TRUE;
1258   }
1259   return TRUE;
1260 }
1261
1262 /**
1263  * gst_pad_try_reconnect_filtered:
1264  * @pad: the pad to reconnect
1265  * @caps: the capabilities to use in the reconnectiong
1266  *
1267  * Try to reconnect this pad and its peer with the specified caps
1268  *
1269  * Returns: a boolean indicating the peer pad could accept the caps.
1270  */
1271 gboolean
1272 gst_pad_try_reconnect_filtered (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps)
1273 {
1274   GstRealPad *realsrc, *realsink;
1275
1276   g_return_val_if_fail (srcpad != NULL, FALSE);
1277   g_return_val_if_fail (sinkpad != NULL, FALSE);
1278
1279   realsrc = GST_PAD_REALIZE (srcpad);
1280   realsink = GST_PAD_REALIZE (sinkpad);
1281
1282   g_return_val_if_fail (GST_RPAD_PEER (realsrc) != NULL, FALSE);
1283   g_return_val_if_fail (GST_RPAD_PEER (realsink) == realsrc, FALSE);
1284   
1285   return gst_pad_try_reconnect_filtered_func (realsrc, realsink, filtercaps, TRUE);
1286 }
1287
1288 /**
1289  * gst_pad_reconnect_filtered:
1290  * @pad: the pad to reconnect
1291  * @caps: the capabilities to use in the reconnectiong
1292  *
1293  * Try to reconnect this pad and its peer with the specified caps. 
1294  *
1295  * Returns: a boolean indicating the peer pad could accept the caps.
1296  *    if FALSE is returned, the pads are disconnected.
1297  */
1298 gboolean
1299 gst_pad_reconnect_filtered (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps)
1300 {
1301   GstRealPad *realsrc, *realsink;
1302
1303   g_return_val_if_fail (srcpad != NULL, FALSE);
1304   g_return_val_if_fail (sinkpad != NULL, FALSE);
1305
1306   realsrc = GST_PAD_REALIZE (srcpad);
1307   realsink = GST_PAD_REALIZE (sinkpad);
1308
1309   g_return_val_if_fail (GST_RPAD_PEER (realsrc) != NULL, FALSE);
1310   g_return_val_if_fail (GST_RPAD_PEER (realsink) == realsrc, FALSE);
1311   
1312   if (!gst_pad_try_reconnect_filtered_func (realsrc, realsink, filtercaps, TRUE)) {
1313     gst_pad_disconnect (srcpad, GST_PAD (GST_PAD_PEER (srcpad)));
1314     return FALSE;
1315   }
1316   return TRUE;
1317 }
1318
1319 /**
1320  * gst_pad_proxy_connect:
1321  * @pad: the pad to proxy to
1322  * @caps: the capabilities to use in the proxying
1323  *
1324  * Proxy the connect function to the specified pad.
1325  *
1326  * Returns: a boolean indicating the peer pad could accept the caps.
1327  */
1328 GstPadConnectReturn
1329 gst_pad_proxy_connect (GstPad *pad, GstCaps *caps)
1330 {
1331   GstRealPad *peer, *realpad;
1332
1333   realpad = GST_PAD_REALIZE (pad);
1334
1335   peer = GST_RPAD_PEER (realpad);
1336
1337   GST_INFO (GST_CAT_CAPS, "proxy connect to pad %s:%s",
1338             GST_DEBUG_PAD_NAME (realpad));
1339
1340   if (peer && !gst_pad_try_set_caps_func (peer, caps, TRUE))
1341     return GST_PAD_CONNECT_REFUSED;
1342   if (!gst_pad_try_set_caps_func (realpad, caps, FALSE))
1343     return GST_PAD_CONNECT_REFUSED;
1344
1345   return GST_PAD_CONNECT_OK;
1346 }
1347
1348 /**
1349  * gst_pad_get_caps:
1350  * @pad: the pad to get the capabilities from
1351  *
1352  * Get the capabilities of this pad.
1353  *
1354  * Returns: the capabilities of this pad
1355  */
1356 GstCaps*
1357 gst_pad_get_caps (GstPad *pad)
1358 {
1359   GstRealPad *realpad;
1360
1361   g_return_val_if_fail (pad != NULL, NULL);
1362   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
1363
1364   realpad = GST_PAD_REALIZE (pad);
1365
1366   GST_DEBUG (GST_CAT_CAPS, "get pad caps of %s:%s (%p)",
1367             GST_DEBUG_PAD_NAME (realpad), realpad);
1368
1369   if (GST_PAD_CAPS (realpad)) {
1370     GST_DEBUG (GST_CAT_CAPS, "using pad real caps");
1371     return GST_PAD_CAPS (realpad);
1372   }
1373   else if GST_RPAD_GETCAPSFUNC (realpad) {
1374     GST_DEBUG (GST_CAT_CAPS, "using pad get function");
1375     return GST_RPAD_GETCAPSFUNC (realpad) (GST_PAD_CAST (realpad), NULL);
1376   }
1377   else if (GST_PAD_PADTEMPLATE (realpad)) {
1378     GST_DEBUG (GST_CAT_CAPS, "using pad template");
1379     return GST_PADTEMPLATE_CAPS (GST_PAD_PADTEMPLATE (realpad));
1380   }
1381   GST_DEBUG (GST_CAT_CAPS, "pad has no caps");
1382
1383   return NULL;
1384 }
1385
1386 /**
1387  * gst_pad_get_padtemplate_caps:
1388  * @pad: the pad to get the capabilities from
1389  *
1390  * Get the capabilities of this pad.
1391  *
1392  * Returns: a list of the capabilities of this pad
1393  */
1394 GstCaps*
1395 gst_pad_get_padtemplate_caps (GstPad *pad)
1396 {
1397   g_return_val_if_fail (pad != NULL, NULL);
1398   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
1399
1400   if (GST_PAD_PADTEMPLATE (pad))
1401     return GST_PADTEMPLATE_CAPS (GST_PAD_PADTEMPLATE (pad));
1402
1403   return NULL;
1404 }
1405
1406
1407 /**
1408  * gst_padtemplate_get_caps_by_name:
1409  * @templ: the padtemplate to get the capabilities from
1410  * @name: the name of the capability to get
1411  *
1412  * Get the capability with the given name from this padtemplate.
1413  *
1414  * Returns: a capability or NULL if not found
1415  */
1416 GstCaps*
1417 gst_padtemplate_get_caps_by_name (GstPadTemplate *templ, const gchar *name)
1418 {
1419   GstCaps *caps;
1420
1421   g_return_val_if_fail (templ != NULL, NULL);
1422
1423   caps = GST_PADTEMPLATE_CAPS (templ);
1424   if (!caps) 
1425     return NULL;
1426
1427   return gst_caps_get_by_name (caps, name);
1428 }
1429
1430 /**
1431  * gst_pad_check_compatibility:
1432  * @srcpad: the srcpad to check
1433  * @sinkpad: the sinkpad to check against
1434  *
1435  * Check if two pads have compatible capabilities.
1436  *
1437  * Returns: TRUE if they are compatible or the capabilities
1438  * could not be checked
1439  */
1440 gboolean
1441 gst_pad_check_compatibility (GstPad *srcpad, GstPad *sinkpad)
1442 {
1443   g_return_val_if_fail (srcpad != NULL, FALSE);
1444   g_return_val_if_fail (GST_IS_PAD (srcpad), FALSE);
1445   g_return_val_if_fail (sinkpad != NULL, FALSE);
1446   g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
1447
1448   if (GST_PAD_CAPS (srcpad) && GST_PAD_CAPS (sinkpad)) {
1449     if (!gst_caps_check_compatibility (GST_PAD_CAPS (srcpad), GST_PAD_CAPS (sinkpad))) {
1450       return FALSE;
1451     }
1452     else {
1453       return TRUE;
1454     }
1455   }
1456   else {
1457     GST_DEBUG (GST_CAT_PADS, "could not check capabilities of pads (%s:%s) and (%s:%s) %p %p",
1458                     GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad), 
1459                     GST_PAD_CAPS (srcpad), GST_PAD_CAPS (sinkpad));
1460     return TRUE;
1461   }
1462 }
1463
1464 /**
1465  * gst_pad_get_peer:
1466  * @pad: the pad to get the peer from
1467  *
1468  * Get the peer pad of this pad.
1469  *
1470  * Returns: the peer pad
1471  */
1472 GstPad*
1473 gst_pad_get_peer (GstPad *pad)
1474 {
1475   g_return_val_if_fail (pad != NULL, NULL);
1476   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
1477
1478   return GST_PAD (GST_PAD_PEER (pad));
1479 }
1480
1481 /**
1482  * gst_pad_get_allowed_caps:
1483  * @pad: the pad to get the allowed caps from
1484  *
1485  * Get the caps of the allowed media types that can
1486  * go through this pad.
1487  *
1488  * Returns: the allowed caps, newly allocated
1489  */
1490 GstCaps*
1491 gst_pad_get_allowed_caps (GstPad *pad)
1492 {
1493   g_return_val_if_fail (pad != NULL, NULL);
1494   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
1495
1496   GST_DEBUG (GST_CAT_PROPERTIES, "get allowed caps of %s:%s", GST_DEBUG_PAD_NAME (pad));
1497
1498   return gst_caps_copy (GST_RPAD_FILTER (pad));
1499 }
1500
1501 /**
1502  * gst_pad_recac_allowed_caps:
1503  * @pad: the pad to recaculate the caps of
1504  *
1505  * Attempt to reconnect the pad to its peer through its filter, set with gst_pad_[re]connect_filtered.
1506  * FIXME: no one calls this function. why is it here?
1507  *
1508  * Returns: TRUE on success, FALSE otherwise.
1509  */
1510 gboolean
1511 gst_pad_recalc_allowed_caps (GstPad *pad)
1512 {
1513   GstRealPad *peer;
1514
1515   g_return_val_if_fail (pad != NULL, FALSE);
1516   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
1517
1518   GST_DEBUG (GST_CAT_PROPERTIES, "set allowed caps of %s:%s", GST_DEBUG_PAD_NAME (pad));
1519
1520   peer = GST_RPAD_PEER (pad);
1521   if (peer)
1522     return gst_pad_try_reconnect_filtered (pad, GST_PAD (peer), GST_RPAD_APPFILTER (pad));
1523
1524   return TRUE;
1525 }
1526
1527 /**
1528  * gst_pad_get_bufferpool:
1529  * @pad: the pad to get the bufferpool from
1530  *
1531  * Get the bufferpool of the peer pad of the given
1532  * pad.
1533  *
1534  * Returns: The GstBufferPool or NULL.
1535  */
1536 GstBufferPool*          
1537 gst_pad_get_bufferpool (GstPad *pad)
1538 {
1539   GstRealPad *peer;
1540
1541   g_return_val_if_fail (pad != NULL, NULL);
1542   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
1543    
1544   peer = GST_RPAD_PEER (pad);
1545
1546   if (!peer)
1547     return NULL;
1548
1549   GST_DEBUG_ENTER ("(%s:%s)", GST_DEBUG_PAD_NAME (pad));
1550
1551   if (peer->bufferpoolfunc) {
1552     GST_DEBUG (GST_CAT_PADS, "calling bufferpoolfunc &%s (@%p) of peer pad %s:%s",
1553       GST_DEBUG_FUNCPTR_NAME (peer->bufferpoolfunc), &peer->bufferpoolfunc, GST_DEBUG_PAD_NAME (((GstPad*) peer)));
1554     return (peer->bufferpoolfunc) (((GstPad*) peer));
1555   } else {
1556     GST_DEBUG (GST_CAT_PADS, "no bufferpoolfunc for peer pad %s:%s at %p",
1557                     GST_DEBUG_PAD_NAME (((GstPad*) peer)), &peer->bufferpoolfunc);
1558     return NULL;
1559   }
1560 }
1561
1562 static void
1563 gst_real_pad_dispose (GObject *object)
1564 {
1565   GstPad *pad = GST_PAD (object);
1566   
1567   /* No connected pad can ever be disposed.
1568    * It has to have a parent to be connected and a parent would hold a reference */
1569   g_assert (GST_PAD_PEER (pad) == NULL);
1570
1571   GST_DEBUG (GST_CAT_REFCOUNTING, "dispose %s:%s", GST_DEBUG_PAD_NAME(pad));
1572
1573   if (GST_PAD_PADTEMPLATE (pad)){
1574     GST_DEBUG (GST_CAT_REFCOUNTING, "unreffing padtemplate'%s'", GST_OBJECT_NAME (GST_PAD_PADTEMPLATE (pad)));
1575     gst_object_unref (GST_OBJECT (GST_PAD_PADTEMPLATE (pad)));
1576     GST_PAD_PADTEMPLATE (pad) = NULL;
1577   }
1578   
1579   /* we destroy the ghostpads, because they are nothing without the real pad  */
1580   if (GST_REAL_PAD (pad)->ghostpads) {
1581     GList *orig, *ghostpads;
1582
1583     orig = ghostpads = g_list_copy (GST_REAL_PAD (pad)->ghostpads);
1584
1585     while (ghostpads) {
1586       GstPad *ghostpad = GST_PAD (ghostpads->data);
1587
1588       if (GST_IS_ELEMENT (GST_OBJECT_PARENT (ghostpad))){
1589         GST_DEBUG (GST_CAT_REFCOUNTING, "removing ghost pad from element '%s'", 
1590                         GST_OBJECT_NAME (GST_OBJECT_PARENT (ghostpad)));
1591
1592         gst_element_remove_ghost_pad (GST_ELEMENT (GST_OBJECT_PARENT (ghostpad)), GST_PAD (ghostpad));
1593       }
1594       ghostpads = g_list_next (ghostpads);
1595     }
1596     g_list_free (orig);
1597     g_list_free (GST_REAL_PAD(pad)->ghostpads);
1598   }
1599
1600   if (GST_IS_ELEMENT (GST_OBJECT_PARENT (pad))){
1601     GST_DEBUG (GST_CAT_REFCOUNTING, "removing pad from element '%s'",
1602                     GST_OBJECT_NAME (GST_OBJECT (GST_ELEMENT (GST_OBJECT_PARENT (pad)))));
1603     
1604     gst_element_remove_pad (GST_ELEMENT (GST_OBJECT_PARENT (pad)), pad);
1605   }
1606   
1607   G_OBJECT_CLASS (real_pad_parent_class)->dispose (object);
1608 }
1609
1610
1611 #ifndef GST_DISABLE_LOADSAVE
1612 /**
1613  * gst_pad_load_and_connect:
1614  * @self: the XML node to read the description from
1615  * @parent: the element that has the pad
1616  *
1617  * Read the pad definition from the XML node and connect the given pad
1618  * in element to a pad of an element up in the hierarchy.
1619  */
1620 void
1621 gst_pad_load_and_connect (xmlNodePtr self,
1622                           GstObject *parent)
1623 {
1624   xmlNodePtr field = self->xmlChildrenNode;
1625   GstPad *pad = NULL, *targetpad;
1626   guchar *peer = NULL;
1627   gchar **split;
1628   GstElement *target;
1629   GstObject *grandparent;
1630
1631   while (field) {
1632     if (!strcmp (field->name, "name")) {
1633       pad = gst_element_get_pad (GST_ELEMENT (parent), xmlNodeGetContent (field));
1634     }
1635     else if (!strcmp(field->name, "peer")) {
1636       peer = xmlNodeGetContent (field);
1637     }
1638     field = field->next;
1639   }
1640   g_return_if_fail (pad != NULL);
1641
1642   if (peer == NULL) return;
1643
1644   split = g_strsplit (peer, ".", 2);
1645
1646   g_return_if_fail (split[0] != NULL);
1647   g_return_if_fail (split[1] != NULL);
1648
1649   grandparent = gst_object_get_parent (parent);
1650
1651   if (grandparent && GST_IS_BIN (grandparent)) {
1652     target = gst_bin_get_by_name_recurse_up (GST_BIN (grandparent), split[0]);
1653   }
1654   else
1655     goto cleanup;
1656
1657   if (target == NULL) goto cleanup;
1658
1659   targetpad = gst_element_get_pad (target, split[1]);
1660
1661   if (targetpad == NULL) goto cleanup;
1662
1663   gst_pad_connect (pad, targetpad);
1664
1665 cleanup:
1666   g_strfreev (split);
1667 }
1668
1669 /**
1670  * gst_pad_save_thyself:
1671  * @pad: the pad to save
1672  * @parent: the parent XML node to save the description in
1673  *
1674  * Saves the pad into an xml representation
1675  *
1676  * Returns: the xml representation of the pad
1677  */
1678 static xmlNodePtr
1679 gst_pad_save_thyself (GstObject *object,
1680                       xmlNodePtr parent)
1681 {
1682   GstRealPad *realpad;
1683   GstPad *peer;
1684
1685   g_return_val_if_fail (GST_IS_REAL_PAD (object), NULL);
1686
1687   realpad = GST_REAL_PAD(object);
1688
1689   xmlNewChild(parent,NULL,"name", GST_PAD_NAME (realpad));
1690   if (GST_RPAD_PEER(realpad) != NULL) {
1691     peer = GST_PAD(GST_RPAD_PEER(realpad));
1692     /* first check to see if the peer's parent's parent is the same */
1693     /* we just save it off */
1694     xmlNewChild(parent,NULL,"peer",g_strdup_printf("%s.%s",
1695                     GST_OBJECT_NAME (GST_PAD_PARENT (peer)), GST_PAD_NAME (peer)));
1696   } else
1697     xmlNewChild(parent,NULL,"peer","");
1698
1699   return parent;
1700 }
1701
1702 /**
1703  * gst_pad_ghost_save_thyself:
1704  * @pad: the pad to save
1705  * @bin: the bin
1706  * @parent: the parent XML node to save the description in
1707  *
1708  * Saves the ghost pad into an xml representation.
1709  *
1710  * Returns: the xml representation of the pad
1711  */
1712 xmlNodePtr
1713 gst_pad_ghost_save_thyself (GstPad *pad,
1714                             GstElement *bin,
1715                             xmlNodePtr parent)
1716 {
1717   xmlNodePtr self;
1718
1719   g_return_val_if_fail (GST_IS_GHOST_PAD (pad), NULL);
1720
1721   self = xmlNewChild (parent, NULL, "ghostpad", NULL);
1722   xmlNewChild (self, NULL, "name", GST_PAD_NAME (pad));
1723   xmlNewChild (self, NULL, "parent", GST_OBJECT_NAME (GST_PAD_PARENT (pad)));
1724
1725   /* FIXME FIXME FIXME! */
1726
1727   return self;
1728 }
1729 #endif /* GST_DISABLE_LOADSAVE */
1730
1731 #ifndef gst_pad_push
1732 /**
1733  * gst_pad_push:
1734  * @pad: the pad to push
1735  * @buf: the buffer to push
1736  *
1737  * Push a buffer to the peer of the pad.
1738  */
1739 void 
1740 gst_pad_push (GstPad *pad, GstBuffer *buf) 
1741 {
1742   GstRealPad *peer = GST_RPAD_PEER (pad);
1743
1744   GST_DEBUG_ENTER ("(%s:%s)", GST_DEBUG_PAD_NAME (pad));
1745
1746   g_return_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SRC);
1747
1748   if (!peer) {
1749     g_warning ("push on pad %s:%s but it is unconnected", GST_DEBUG_PAD_NAME (pad));
1750   }
1751   else {
1752     if (peer->chainhandler) {
1753       if (buf) {
1754         GST_DEBUG (GST_CAT_DATAFLOW, "calling chainhandler &%s of peer pad %s:%s",
1755             GST_DEBUG_FUNCPTR_NAME (peer->chainhandler), GST_DEBUG_PAD_NAME (GST_PAD (peer)));
1756         (peer->chainhandler) (GST_PAD_CAST (peer), buf);
1757         return;
1758       }
1759       else {
1760         g_warning ("trying to push a NULL buffer on pad %s:%s", GST_DEBUG_PAD_NAME (peer));
1761         return;
1762       }
1763     } 
1764     else {
1765       g_warning ("(internal error) push on pad %s:%s but it has no chainhandler", GST_DEBUG_PAD_NAME (peer));
1766     }
1767   }
1768   /* clean up the mess here */
1769   if (buf != NULL) {
1770     if (GST_IS_BUFFER (buf))
1771       gst_buffer_unref (buf);
1772     else
1773       gst_event_free (GST_EVENT (buf));
1774   }
1775 }
1776 #endif
1777
1778 #ifndef gst_pad_pull
1779 /**
1780  * gst_pad_pull:
1781  * @pad: the pad to pull
1782  *
1783  * Pull a buffer from the peer pad.
1784  *
1785  * Returns: a new buffer from the peer pad.
1786  */
1787 GstBuffer*
1788 gst_pad_pull (GstPad *pad) 
1789 {
1790   GstRealPad *peer = GST_RPAD_PEER(pad);
1791   
1792   GST_DEBUG_ENTER("(%s:%s)",GST_DEBUG_PAD_NAME(pad));
1793
1794   g_return_val_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SINK, NULL);
1795
1796   if (!peer) {
1797     gst_element_error (GST_PAD_PARENT (pad), 
1798                     "pull on pad %s:%s but it was unconnected", 
1799                     GST_ELEMENT_NAME (GST_PAD_PARENT (pad)), GST_PAD_NAME (pad),
1800                     NULL);
1801   }
1802   else {
1803     if (peer->gethandler) {
1804       GstBuffer *buf;
1805
1806       GST_DEBUG (GST_CAT_DATAFLOW, "calling gethandler %s of peer pad %s:%s",
1807         GST_DEBUG_FUNCPTR_NAME (peer->gethandler), GST_DEBUG_PAD_NAME (peer));
1808
1809       buf = (peer->gethandler) (GST_PAD_CAST (peer));
1810       if (buf)
1811         return buf;
1812       /* no null buffers allowed */
1813       gst_element_error (GST_PAD_PARENT (pad), 
1814                     "NULL buffer during pull on %s:%s", GST_DEBUG_PAD_NAME (pad), NULL);
1815           
1816     } else {
1817       gst_element_error (GST_PAD_PARENT (pad), 
1818                     "(internal error) pull on pad %s:%s but the peer pad %s:%s has no gethandler", 
1819                     GST_DEBUG_PAD_NAME (pad), GST_DEBUG_PAD_NAME (peer),
1820                     NULL);
1821     }
1822   }
1823   return NULL;
1824 }
1825 #endif
1826
1827 #ifndef gst_pad_pullregion
1828 /**
1829  * gst_pad_pullregion:
1830  * @pad: the pad to pull the region from
1831  * @type: the regiontype
1832  * @offset: the offset/start of the buffer to pull
1833  * @len: the length of the buffer to pull
1834  *
1835  * Pull a buffer region from the peer pad. The region to pull can be 
1836  * specified with a offset/lenght pair or with a start/legnth time
1837  * indicator as specified by the type parameter.
1838  *
1839  * Returns: a new buffer from the peer pad with data in the specified
1840  * region.
1841  */
1842 GstBuffer*
1843 gst_pad_pullregion (GstPad *pad, GstRegionType type, guint64 offset, guint64 len) 
1844 {
1845   GstRealPad *peer;
1846   GstBuffer *result = NULL;
1847   
1848   g_return_val_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SINK, NULL);
1849
1850   do {
1851     peer = GST_RPAD_PEER(pad);
1852     g_return_val_if_fail (peer != NULL, NULL);
1853
1854     if (result) 
1855       gst_buffer_unref (result);
1856
1857     GST_DEBUG_ENTER("(%s:%s,%d,%lld,%lld)",GST_DEBUG_PAD_NAME(pad),type,offset,len);
1858
1859     if (peer->pullregionfunc) {
1860       GST_DEBUG (GST_CAT_DATAFLOW, "calling pullregionfunc &%s of peer pad %s:%s",
1861           GST_DEBUG_FUNCPTR_NAME (peer->pullregionfunc), GST_DEBUG_PAD_NAME(GST_PAD_CAST (peer)));
1862       result = (peer->pullregionfunc) (GST_PAD_CAST (peer), type, offset, len);
1863     } else {
1864       GST_DEBUG (GST_CAT_DATAFLOW,"no pullregionfunc");
1865       result = NULL;
1866       break;
1867     }
1868   }
1869   /* FIXME */
1870   while (result && !(GST_BUFFER_OFFSET (result) == offset && 
1871            GST_BUFFER_SIZE (result) == len));
1872
1873   return result;
1874 }
1875 #endif
1876
1877 /**
1878  * gst_pad_peek:
1879  * @pad: the pad to peek
1880  *
1881  * Peek for a buffer from the peer pad.
1882  *
1883  * Returns: a from the peer pad or NULL if the peer has no buffer.
1884  */
1885 GstBuffer*
1886 gst_pad_peek (GstPad *pad)
1887 {
1888   g_return_val_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SINK, NULL);
1889
1890   return GST_RPAD_BUFPEN (GST_RPAD_PEER (pad));
1891 }
1892
1893 /**
1894  * gst_pad_select:
1895  * @padlist: A list of pads 
1896  *
1897  * Wait for a buffer on the list of pads.
1898  *
1899  * Returns: The pad that has a buffer available, use 
1900  * #gst_pad_pull to get the buffer.
1901  */
1902 GstPad*
1903 gst_pad_select (GList *padlist)
1904 {
1905   GstPad *pad;
1906
1907   pad = gst_scheduler_pad_select (GST_PAD_PARENT (padlist->data)->sched, padlist);
1908
1909   return pad;
1910 }
1911
1912 /**
1913  * gst_pad_selectv:
1914  * @pad: The first pad to perform the select on 
1915  * @...: More pads
1916  *
1917  * Wait for a buffer on the given of pads.
1918  *
1919  * Returns: The pad that has a buffer available, use 
1920  * #gst_pad_pull to get the buffer.
1921  */
1922 GstPad*
1923 gst_pad_selectv (GstPad *pad, ...)
1924 {
1925   GstPad *result;
1926   GList *padlist = NULL;
1927   va_list var_args;
1928
1929   if (pad == NULL)
1930     return NULL;
1931
1932   va_start (var_args, pad);
1933
1934   while (pad) {
1935     padlist = g_list_prepend (padlist, pad);
1936     pad = va_arg (var_args, GstPad *);
1937   }
1938   result = gst_pad_select (padlist);
1939   g_list_free (padlist);
1940
1941   va_end (var_args);
1942   
1943   return result;
1944 }
1945
1946 /************************************************************************
1947  *
1948  * templates
1949  *
1950  */
1951 static void             gst_padtemplate_class_init      (GstPadTemplateClass *klass);
1952 static void             gst_padtemplate_init            (GstPadTemplate *templ);
1953
1954 enum {
1955   TEMPL_PAD_CREATED,
1956   /* FILL ME */
1957   TEMPL_LAST_SIGNAL
1958 };
1959
1960 static GstObject *padtemplate_parent_class = NULL;
1961 static guint gst_padtemplate_signals[TEMPL_LAST_SIGNAL] = { 0 };
1962
1963 GType
1964 gst_padtemplate_get_type (void)
1965 {
1966   static GType padtemplate_type = 0;
1967
1968   if (!padtemplate_type) {
1969     static const GTypeInfo padtemplate_info = {
1970       sizeof(GstPadTemplateClass),
1971       NULL,
1972       NULL,
1973       (GClassInitFunc)gst_padtemplate_class_init,
1974       NULL,
1975       NULL,
1976       sizeof(GstPadTemplate),
1977       32,
1978       (GInstanceInitFunc)gst_padtemplate_init,
1979       NULL
1980     };
1981     padtemplate_type = g_type_register_static(GST_TYPE_OBJECT, "GstPadTemplate", &padtemplate_info, 0);
1982   }
1983   return padtemplate_type;
1984 }
1985
1986 static void
1987 gst_padtemplate_class_init (GstPadTemplateClass *klass)
1988 {
1989   GObjectClass *gobject_class;
1990   GstObjectClass *gstobject_class;
1991
1992   gobject_class = (GObjectClass*)klass;
1993   gstobject_class = (GstObjectClass*)klass;
1994
1995   padtemplate_parent_class = g_type_class_ref(GST_TYPE_OBJECT);
1996
1997   gst_padtemplate_signals[TEMPL_PAD_CREATED] =
1998     g_signal_new ("pad_created", G_TYPE_FROM_CLASS(klass), G_SIGNAL_RUN_LAST,
1999                     G_STRUCT_OFFSET (GstPadTemplateClass, pad_created), NULL, NULL,
2000                     gst_marshal_VOID__POINTER, G_TYPE_NONE, 1,
2001                     G_TYPE_POINTER);
2002
2003
2004   gstobject_class->path_string_separator = "*";
2005 }
2006
2007 static void
2008 gst_padtemplate_init (GstPadTemplate *templ)
2009 {
2010 }
2011
2012 /* ALWAYS padtemplates cannot have conversion specifications, it doesn't make
2013  * sense.
2014  * SOMETIMES padtemplates can do whatever they want, they are provided by the
2015  * element.
2016  * REQUEST padtemplates can be reverse-parsed (the user asks for 'sink1', the
2017  * 'sink%d' template is automatically selected), so we need to restrict their
2018  * naming.
2019  */
2020 static gboolean
2021 name_is_valid (const gchar *name, GstPadPresence presence)
2022 {
2023   const gchar *str;
2024   
2025   if (presence == GST_PAD_ALWAYS) {
2026     if (strchr (name, '%')) {
2027       g_warning ("invalid name template %s: conversion specifications are not"
2028                  " allowed for GST_PAD_ALWAYS padtemplates", name);
2029       return FALSE;
2030     }
2031   } else if (presence == GST_PAD_REQUEST) {
2032     if ((str = strchr (name, '%')) && strchr (str + 1, '%')) {
2033       g_warning ("invalid name template %s: only one conversion specification"
2034                  " allowed in GST_PAD_REQUEST padtemplate", name);
2035       return FALSE;
2036     }
2037     if (str && (*(str+1) != 's' && *(str+1) != 'd')) {
2038       g_warning ("invalid name template %s: conversion specification must be of"
2039                  " type '%%d' or '%%s' for GST_PAD_REQUEST padtemplate", name);
2040       return FALSE;
2041     }
2042   }
2043   
2044   return TRUE;
2045 }
2046
2047 /**
2048  * gst_padtemplate_new:
2049  * @name_template: the name template
2050  * @direction: the direction for the template
2051  * @presence: the presence of the pad
2052  * @caps: a list of capabilities for the template
2053  * @...: more capabilities
2054  *
2055  * Creates a new padtemplate from the given arguments.
2056  *
2057  * Returns: the new padtemplate
2058  */
2059 GstPadTemplate*
2060 gst_padtemplate_new (gchar *name_template,
2061                      GstPadDirection direction, GstPadPresence presence,
2062                      GstCaps *caps, ...)
2063 {
2064   GstPadTemplate *new;
2065   va_list var_args;
2066   GstCaps *thecaps = NULL;
2067
2068   g_return_val_if_fail (name_template != NULL, NULL);
2069
2070   if (!name_is_valid (name_template, presence))
2071     return NULL;
2072
2073   new = g_object_new(gst_padtemplate_get_type () ,NULL);
2074
2075   GST_PADTEMPLATE_NAME_TEMPLATE (new) = name_template;
2076   GST_PADTEMPLATE_DIRECTION (new) = direction;
2077   GST_PADTEMPLATE_PRESENCE (new) = presence;
2078
2079   va_start (var_args, caps);
2080
2081   while (caps) {
2082     new->fixed &= caps->fixed;
2083     thecaps = gst_caps_append (thecaps, caps);
2084     caps = va_arg (var_args, GstCaps*);
2085   }
2086   va_end (var_args);
2087   
2088   GST_PADTEMPLATE_CAPS (new) = thecaps;
2089
2090   return new;
2091 }
2092
2093 /**
2094  * gst_padtemplate_get_caps:
2095  * @templ: the padtemplate to use
2096  *
2097  * Get the capabilities of the padtemplate
2098  *
2099  * Returns: a GstCaps*
2100  */
2101 GstCaps*
2102 gst_padtemplate_get_caps (GstPadTemplate *templ)
2103 {
2104   g_return_val_if_fail (templ != NULL, NULL);
2105
2106   return GST_PADTEMPLATE_CAPS (templ);
2107 }
2108
2109 #ifndef GST_DISABLE_LOADSAVE
2110 /**
2111  * gst_padtemplate_save_thyself:
2112  * @templ: the padtemplate to save
2113  * @parent: the parent XML tree
2114  *
2115  * Saves the padtemplate into XML.
2116  *
2117  * Returns: the new XML tree
2118  */
2119 xmlNodePtr
2120 gst_padtemplate_save_thyself (GstPadTemplate *templ, xmlNodePtr parent)
2121 {
2122   xmlNodePtr subtree;
2123   guchar *presence;
2124
2125   GST_DEBUG (GST_CAT_XML,"saving padtemplate %s", templ->name_template);
2126
2127   xmlNewChild(parent,NULL,"nametemplate", templ->name_template);
2128   xmlNewChild(parent,NULL,"direction", (templ->direction == GST_PAD_SINK? "sink":"src"));
2129
2130   switch (templ->presence) {
2131     case GST_PAD_ALWAYS:
2132       presence = "always";
2133       break;
2134     case GST_PAD_SOMETIMES:
2135       presence = "sometimes";
2136       break;
2137     case GST_PAD_REQUEST:
2138       presence = "request";
2139       break;
2140     default:
2141       presence = "unknown";
2142       break;
2143   }
2144   xmlNewChild(parent,NULL,"presence", presence);
2145
2146   if (GST_PADTEMPLATE_CAPS (templ)) {
2147     subtree = xmlNewChild (parent, NULL, "caps", NULL);
2148     gst_caps_save_thyself (GST_PADTEMPLATE_CAPS (templ), subtree);
2149   }
2150
2151   return parent;
2152 }
2153
2154 /**
2155  * gst_padtemplate_load_thyself:
2156  * @parent: the source XML tree
2157  *
2158  * Loads a padtemplate from the XML tree.
2159  *
2160  * Returns: the new padtemplate
2161  */
2162 GstPadTemplate*
2163 gst_padtemplate_load_thyself (xmlNodePtr parent)
2164 {
2165   xmlNodePtr field = parent->xmlChildrenNode;
2166   GstPadTemplate *factory;
2167   gchar *name_template = NULL;
2168   GstPadDirection direction = GST_PAD_UNKNOWN;
2169   GstPadPresence presence = GST_PAD_ALWAYS;
2170   GstCaps *caps = NULL;
2171
2172   while (field) {
2173     if (!strcmp(field->name, "nametemplate")) {
2174       name_template = xmlNodeGetContent(field);
2175     }
2176     if (!strcmp(field->name, "direction")) {
2177       gchar *value = xmlNodeGetContent(field);
2178
2179       if (!strcmp(value, "sink")) {
2180         direction = GST_PAD_SINK;
2181       }
2182       else if (!strcmp(value, "src")) {
2183         direction = GST_PAD_SRC;
2184       }
2185       g_free (value);
2186     }
2187     if (!strcmp(field->name, "presence")) {
2188       gchar *value = xmlNodeGetContent(field);
2189
2190       if (!strcmp(value, "always")) {
2191         presence = GST_PAD_ALWAYS;
2192       }
2193       else if (!strcmp(value, "sometimes")) {
2194         presence = GST_PAD_SOMETIMES;
2195       }
2196       else if (!strcmp(value, "request")) {
2197         presence = GST_PAD_REQUEST;
2198       }
2199       g_free (value);
2200     }
2201     else if (!strcmp(field->name, "caps")) {
2202       caps = gst_caps_load_thyself (field);
2203     }
2204     field = field->next;
2205   }
2206
2207   factory = gst_padtemplate_new (name_template, direction, presence, caps, NULL);
2208
2209   return factory;
2210 }
2211 #endif /* !GST_DISABLE_LOADSAVE */
2212
2213
2214 /**
2215  * gst_pad_set_element_private:
2216  * @pad: the pad to set the private data to
2217  * @priv: The private data to attach to the pad
2218  *
2219  * Set the given private data pointer to the pad. This
2220  * function can only be used by the element that own the
2221  * pad.
2222  */
2223 void
2224 gst_pad_set_element_private (GstPad *pad, gpointer priv)
2225 {
2226   pad->element_private = priv;
2227 }
2228
2229 /**
2230  * gst_pad_get_element_private:
2231  * @pad: the pad to get the private data of
2232  *
2233  * Get the private data of a pad. The private data can
2234  * only be set by the parent element of this pad.
2235  *
2236  * Returns: a pointer to the private data.
2237  */
2238 gpointer
2239 gst_pad_get_element_private (GstPad *pad)
2240 {
2241   return pad->element_private;
2242 }
2243
2244
2245 /***** ghost pads *****/
2246 GType _gst_ghost_pad_type = 0;
2247
2248 static void     gst_ghost_pad_class_init         (GstGhostPadClass *klass);
2249 static void     gst_ghost_pad_init               (GstGhostPad *pad);
2250
2251 static GstPad *ghost_pad_parent_class = NULL;
2252 /* static guint gst_ghost_pad_signals[LAST_SIGNAL] = { 0 }; */
2253
2254 GType
2255 gst_ghost_pad_get_type(void) {
2256   if (!_gst_ghost_pad_type) {
2257     static const GTypeInfo pad_info = {
2258       sizeof(GstGhostPadClass),
2259       NULL,
2260       NULL,
2261       (GClassInitFunc)gst_ghost_pad_class_init,
2262       NULL,
2263       NULL,
2264       sizeof(GstGhostPad),
2265       8,
2266       (GInstanceInitFunc)gst_ghost_pad_init,
2267       NULL
2268     };
2269     _gst_ghost_pad_type = g_type_register_static(GST_TYPE_PAD, "GstGhostPad", &pad_info, 0);
2270   }
2271   return _gst_ghost_pad_type;
2272 }
2273
2274 static void
2275 gst_ghost_pad_class_init (GstGhostPadClass *klass)
2276 {
2277   GObjectClass *gobject_class;
2278
2279   gobject_class = (GObjectClass*)klass;
2280
2281   ghost_pad_parent_class = g_type_class_ref(GST_TYPE_PAD);
2282 }
2283
2284 static void
2285 gst_ghost_pad_init (GstGhostPad *pad)
2286 {
2287   pad->realpad = NULL;
2288 }
2289
2290 /**
2291  * gst_ghost_pad_new:
2292  * @name: name of the new ghost pad
2293  * @pad: the pad to create a ghost pad of
2294  *
2295  * Create a new ghost pad associated with the given pad.
2296  *
2297  * Returns: new ghost pad
2298  */
2299 GstPad*
2300 gst_ghost_pad_new (gchar *name,
2301                    GstPad *pad)
2302 {
2303   GstGhostPad *ghostpad;
2304   GstRealPad *realpad;
2305
2306   g_return_val_if_fail (name != NULL, NULL);
2307   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2308
2309   ghostpad = g_object_new (gst_ghost_pad_get_type () ,NULL);
2310   gst_pad_set_name (GST_PAD (ghostpad), name);
2311
2312   realpad = (GstRealPad *) pad;
2313
2314   while (!GST_IS_REAL_PAD (realpad)) {
2315     realpad = GST_PAD_REALIZE (realpad);
2316   }
2317   GST_GPAD_REALPAD (ghostpad) = realpad;
2318   GST_PAD_PADTEMPLATE (ghostpad) = GST_PAD_PADTEMPLATE (pad);
2319
2320   /* add ourselves to the real pad's list of ghostpads */
2321   gst_pad_add_ghost_pad (pad, GST_PAD (ghostpad));
2322
2323   /* FIXME need to ref the real pad here... ? */
2324
2325   GST_DEBUG (GST_CAT_PADS, "created ghost pad \"%s\"", name);
2326
2327   return GST_PAD (ghostpad);
2328 }
2329
2330 static void 
2331 gst_pad_event_default_dispatch (GstPad *pad, GstElement *element, GstEvent *event)
2332 {
2333   GList *pads = element->pads;
2334
2335   while (pads) {
2336     GstPad *eventpad = GST_PAD (pads->data);
2337     pads = g_list_next (pads);
2338
2339     /* for all pads in the opposite direction that are connected */
2340     if (GST_PAD_DIRECTION (eventpad) != GST_PAD_DIRECTION (pad) && GST_PAD_IS_CONNECTED (eventpad)) {
2341       if (GST_PAD_DIRECTION (eventpad) == GST_PAD_SRC) {
2342         gst_pad_push (eventpad, GST_BUFFER (gst_event_copy (event)));
2343       }
2344       else {
2345         GstPad *peerpad = GST_PAD_CAST (GST_RPAD_PEER (eventpad));
2346
2347         gst_pad_send_event (peerpad, gst_event_copy (event));
2348       }
2349     }
2350   }
2351 }
2352
2353 /**
2354  * gst_pad_event_default:
2355  * @pad: the pad to operate on
2356  * @event: the event to handle
2357  *
2358  * Invoke the default event handler for the given pad.
2359  */
2360 void 
2361 gst_pad_event_default (GstPad *pad, GstEvent *event)
2362 {
2363   GstElement *element = GST_PAD_PARENT (pad);
2364
2365   g_signal_emit (G_OBJECT (pad), gst_real_pad_signals[REAL_EVENT_RECEIVED], 0, event);
2366  
2367   switch (GST_EVENT_TYPE (event)) {
2368     case GST_EVENT_EOS:
2369       gst_element_set_eos (element);
2370       gst_pad_event_default_dispatch (pad, element, event);
2371       /* we have to try to schedule another element because this one is disabled */
2372       gst_element_yield (element);
2373       break;
2374     case GST_EVENT_FLUSH:
2375     default:
2376       gst_pad_event_default_dispatch (pad, element, event);
2377       break;
2378   }
2379 }
2380
2381 /**
2382  * gst_pad_send_event:
2383  * @pad: the pad to send the event to
2384  * @event: the event to send to the pad.
2385  *
2386  * Send the event to the pad.
2387  *
2388  * Returns: TRUE if the event was handled.
2389  */
2390 gboolean
2391 gst_pad_send_event (GstPad *pad, GstEvent *event)
2392 {
2393   gboolean handled = FALSE;
2394
2395   g_return_val_if_fail (event, FALSE);
2396
2397   if (GST_EVENT_SRC (event) == NULL)
2398     GST_EVENT_SRC (event) = gst_object_ref (GST_OBJECT (pad));
2399
2400   GST_DEBUG (GST_CAT_EVENT, "have event %d on pad %s:%s",
2401                   GST_EVENT_TYPE (event), GST_DEBUG_PAD_NAME (pad));
2402
2403   if (GST_RPAD_EVENTFUNC (pad))
2404     handled = GST_RPAD_EVENTFUNC (pad) (pad, event);
2405   else {
2406     GST_DEBUG(GST_CAT_EVENT, "there's no event function for pad %s:%s", GST_DEBUG_PAD_NAME (pad));
2407   }
2408
2409   if (!handled) {
2410     GST_DEBUG(GST_CAT_EVENT, "proceeding with default event behavior here");
2411     gst_pad_event_default (pad, event);
2412     handled = TRUE;
2413   }
2414
2415   return handled;
2416 }
2417