allow pad push if peer is active
[platform/upstream/gstreamer.git] / gst / gstpad.c
index 08ce6f6..549ebf8 100644 (file)
@@ -2,7 +2,7 @@
  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
  *                    2000 Wim Taymans <wtay@chello.be>
  *
- * gstpad.c: Pads for connecting elements together
+ * gstpad.c: Pads for linking elements together
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
@@ -20,7 +20,6 @@
  * Boston, MA 02111-1307, USA.
  */
 
-/* #define GST_DEBUG_ENABLED */
 #include "gst_private.h"
 
 #include "gstpad.h"
@@ -30,7 +29,7 @@
 #include "gstbin.h"
 #include "gstscheduler.h"
 #include "gstevent.h"
-#include "gstlog.h"
+#include "gstinfo.h"
 
 enum {
   TEMPL_PAD_CREATED,
@@ -46,9 +45,11 @@ GType _gst_pad_type = 0;
 /***** Start with the base GstPad class *****/
 static void            gst_pad_class_init              (GstPadClass *klass);
 static void            gst_pad_init                    (GstPad *pad);
+static void            gst_pad_dispose                 (GObject *object);
 
-static gboolean        gst_pad_try_reconnect_filtered_func (GstRealPad *srcpad, GstRealPad *sinkpad, 
+static gboolean        gst_pad_try_relink_filtered_func (GstRealPad *srcpad, GstRealPad *sinkpad, 
                                                         GstCaps *caps, gboolean clear);
+static void            gst_pad_set_pad_template        (GstPad *pad, GstPadTemplate *templ);
 
 #ifndef GST_DISABLE_LOADSAVE
 static xmlNodePtr      gst_pad_save_thyself            (GstObject *object, xmlNodePtr parent);
@@ -76,15 +77,28 @@ gst_pad_get_type (void)
 static void
 gst_pad_class_init (GstPadClass *klass)
 {
+  GObjectClass *gobject_class;
+
+  gobject_class = (GObjectClass*) klass;
+
   pad_parent_class = g_type_class_ref (GST_TYPE_OBJECT);
+
+  gobject_class->dispose = GST_DEBUG_FUNCPTR (gst_pad_dispose);
 }
 
 static void
 gst_pad_init (GstPad *pad)
 {
-  pad->element_private = NULL;
+  /* all structs are initialized to NULL by glib */
+}
+static void
+gst_pad_dispose (GObject *object)
+{
+  GstPad *pad = GST_PAD (object);
 
-  pad->padtemplate = NULL;
+  gst_pad_set_pad_template (pad, NULL);
+
+  G_OBJECT_CLASS (pad_parent_class)->dispose (object);
 }
 
 
@@ -93,8 +107,8 @@ gst_pad_init (GstPad *pad)
 /* Pad signals and args */
 enum {
   REAL_CAPS_NEGO_FAILED,
-  REAL_CONNECTED,
-  REAL_DISCONNECTED,
+  REAL_LINKED,
+  REAL_UNLINKED,
   /* FILL ME */
   REAL_LAST_SIGNAL
 };
@@ -108,6 +122,7 @@ enum {
 
 static void    gst_real_pad_class_init         (GstRealPadClass *klass);
 static void    gst_real_pad_init               (GstRealPad *pad);
+static void    gst_real_pad_dispose            (GObject *object);
 
 static void    gst_real_pad_set_property       (GObject *object, guint prop_id,
                                                  const GValue *value, 
@@ -116,8 +131,6 @@ static void gst_real_pad_get_property       (GObject *object, guint prop_id,
                                                  GValue *value, 
                                                 GParamSpec *pspec);
 
-static void    gst_real_pad_dispose            (GObject *object);
-
 GType _gst_real_pad_type = 0;
 
 static GstPad *real_pad_parent_class = NULL;
@@ -159,14 +172,14 @@ gst_real_pad_class_init (GstRealPadClass *klass)
                   G_STRUCT_OFFSET (GstRealPadClass, caps_nego_failed), NULL, NULL,
                   gst_marshal_VOID__POINTER, G_TYPE_NONE, 1,
                   G_TYPE_POINTER);
-  gst_real_pad_signals[REAL_CONNECTED] =
-    g_signal_new ("connected", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
-                  G_STRUCT_OFFSET (GstRealPadClass, connected), NULL, NULL,
+  gst_real_pad_signals[REAL_LINKED] =
+    g_signal_new ("linked", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
+                  G_STRUCT_OFFSET (GstRealPadClass, linked), NULL, NULL,
                   gst_marshal_VOID__POINTER, G_TYPE_NONE, 1,
                   G_TYPE_POINTER);
-  gst_real_pad_signals[REAL_DISCONNECTED] =
-    g_signal_new ("disconnected", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
-                  G_STRUCT_OFFSET (GstRealPadClass, disconnected), NULL, NULL,
+  gst_real_pad_signals[REAL_UNLINKED] =
+    g_signal_new ("unlinked", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
+                  G_STRUCT_OFFSET (GstRealPadClass, unlinked), NULL, NULL,
                   gst_marshal_VOID__POINTER, G_TYPE_NONE, 1,
                   G_TYPE_POINTER);
 
@@ -201,19 +214,22 @@ gst_real_pad_init (GstRealPad *pad)
   pad->ghostpads = NULL;
   pad->caps = NULL;
 
-  pad->connectfunc = NULL;
+  pad->linkfunc = NULL;
   pad->getcapsfunc = NULL;
 
   pad->convertfunc     = gst_pad_convert_default;
   pad->eventfunc       = gst_pad_event_default;
   pad->convertfunc     = gst_pad_convert_default;
   pad->queryfunc       = gst_pad_query_default;
-  pad->intconnfunc     = gst_pad_get_internal_connections_default;
+  pad->intlinkfunc     = gst_pad_get_internal_links_default;
 
   pad->eventmaskfunc   = gst_pad_get_event_masks_default;
   pad->formatsfunc     = gst_pad_get_formats_default;
   pad->querytypefunc   = gst_pad_get_query_types_default;
 
+  GST_FLAG_SET (pad, GST_PAD_DISABLED);
+  GST_FLAG_UNSET (pad, GST_PAD_NEGOTIATING);
+  
   gst_probe_dispatcher_init (&pad->probedisp);
 }
 
@@ -319,12 +335,8 @@ gst_pad_custom_new_from_template (GType type, GstPadTemplate *templ,
   g_return_val_if_fail (templ != NULL, NULL);
 
   pad = gst_pad_new (name, templ->direction);
-  
-  gst_object_ref (GST_OBJECT (templ));
-  GST_PAD_PAD_TEMPLATE (pad) = templ;
+  gst_pad_set_pad_template (pad, templ);
 
-  g_signal_emit (G_OBJECT (templ), gst_pad_template_signals[TEMPL_PAD_CREATED], 0, pad);
-  
   return pad;
 }
 
@@ -357,7 +369,6 @@ gst_pad_new_from_template (GstPadTemplate *templ, const gchar *name)
 GstPadDirection
 gst_pad_get_direction (GstPad *pad)
 {
-  g_return_val_if_fail (pad != NULL, GST_PAD_UNKNOWN);
   g_return_val_if_fail (GST_IS_PAD (pad), GST_PAD_UNKNOWN);
 
   return GST_PAD_DIRECTION (pad);
@@ -366,6 +377,7 @@ gst_pad_get_direction (GstPad *pad)
 /**
  * gst_pad_set_active:
  * @pad: the #GstPad to activate or deactivate.
+ * @active: TRUE to activate the pad.
  *
  * Activates or deactivates the given pad.
  */
@@ -375,22 +387,21 @@ gst_pad_set_active (GstPad *pad, gboolean active)
   GstRealPad *realpad;
   gboolean old;
 
-  g_return_if_fail (pad != NULL);
   g_return_if_fail (GST_IS_PAD (pad));
 
-  if (GST_PAD_IS_ACTIVE (pad) == active)
+  old = GST_PAD_IS_ACTIVE (pad);
+
+  if (old == active)
     return;
 
   realpad = GST_PAD_REALIZE (pad);
 
-  old = GST_FLAG_IS_SET (realpad, GST_PAD_DISABLED);
-
   if (active) {
-    GST_DEBUG (GST_CAT_PADS, "activating pad %s:%s", 
+    GST_CAT_DEBUG (GST_CAT_PADS, "activating pad %s:%s", 
               GST_DEBUG_PAD_NAME (realpad));
     GST_FLAG_UNSET (realpad, GST_PAD_DISABLED);
   } else {
-    GST_DEBUG (GST_CAT_PADS, "de-activating pad %s:%s", 
+    GST_CAT_DEBUG (GST_CAT_PADS, "de-activating pad %s:%s", 
               GST_DEBUG_PAD_NAME (realpad));
     GST_FLAG_SET (realpad, GST_PAD_DISABLED);
   }
@@ -399,6 +410,22 @@ gst_pad_set_active (GstPad *pad, gboolean active)
 }
 
 /**
+ * gst_pad_is_active:
+ * @pad: the #GstPad to query
+ *
+ * Query if a pad is active
+ *
+ * Returns: TRUE if the pad is active.
+ */
+gboolean
+gst_pad_is_active (GstPad *pad)
+{
+  g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
+
+  return !GST_FLAG_IS_SET (pad, GST_PAD_DISABLED);
+}
+
+/**
  * gst_pad_set_name:
  * @pad: a #GstPad to set the name of.
  * @name: the name of the pad.
@@ -409,7 +436,6 @@ gst_pad_set_active (GstPad *pad, gboolean active)
 void
 gst_pad_set_name (GstPad *pad, const gchar *name)
 {
-  g_return_if_fail (pad != NULL);
   g_return_if_fail (GST_IS_PAD (pad));
 
   gst_object_set_name (GST_OBJECT (pad), name);
@@ -445,9 +471,10 @@ gst_pad_set_chain_function (GstPad *pad, GstPadChainFunction chain)
 {
   g_return_if_fail (pad != NULL);
   g_return_if_fail (GST_IS_REAL_PAD (pad));
+  g_return_if_fail (GST_RPAD_DIRECTION (pad) == GST_PAD_SINK);
 
   GST_RPAD_CHAINFUNC (pad) = chain;
-  GST_DEBUG (GST_CAT_PADS, "chainfunc for %s:%s set to %s",
+  GST_CAT_DEBUG (GST_CAT_PADS, "chainfunc for %s:%s set to %s",
              GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (chain));
 }
 
@@ -464,10 +491,11 @@ gst_pad_set_get_function (GstPad *pad,
 {
   g_return_if_fail (pad != NULL);
   g_return_if_fail (GST_IS_REAL_PAD (pad));
+  g_return_if_fail (GST_RPAD_DIRECTION (pad) == GST_PAD_SRC);
 
   GST_RPAD_GETFUNC (pad) = get;
   
-  GST_DEBUG (GST_CAT_PADS, "getfunc for %s:%s  set to %s",
+  GST_CAT_DEBUG (GST_CAT_PADS, "getfunc for %s:%s  set to %s",
              GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (get));
 }
 
@@ -482,28 +510,43 @@ void
 gst_pad_set_event_function (GstPad *pad,
                             GstPadEventFunction event)
 {
-  g_return_if_fail (pad != NULL);
   g_return_if_fail (GST_IS_REAL_PAD (pad));
+  g_return_if_fail (GST_RPAD_DIRECTION (pad) == GST_PAD_SRC);
 
   GST_RPAD_EVENTFUNC (pad) = event;
 
-  GST_DEBUG (GST_CAT_PADS, "eventfunc for %s:%s  set to %s",
+  GST_CAT_DEBUG (GST_CAT_PADS, "eventfunc for %s:%s  set to %s",
              GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (event));
 }
 
+/**
+ * gst_pad_set_event_mask_function:
+ * @pad: a #GstPad to set the event mask function for.
+ * @mask_func: the #GstPadEventMaskFunction to set.
+ *
+ * Sets the given event mask function for the pad.
+ */
 void
 gst_pad_set_event_mask_function (GstPad *pad, 
-                                 GstPadEventMaskFunction mask_function)
+                                 GstPadEventMaskFunction mask_func)
 {
-  g_return_if_fail (pad != NULL);
   g_return_if_fail (GST_IS_REAL_PAD (pad));
 
-  GST_RPAD_EVENTMASKFUNC (pad) = mask_function;
+  GST_RPAD_EVENTMASKFUNC (pad) = mask_func;
 
-  GST_DEBUG (GST_CAT_PADS, "eventmaskfunc for %s:%s  set to %s",
-             GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (mask_function));
+  GST_CAT_DEBUG (GST_CAT_PADS, "eventmaskfunc for %s:%s  set to %s",
+             GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (mask_func));
 }
 
+/**
+ * gst_pad_get_event_masks:
+ * @pad: a #GstPad to get the event mask for.
+ *
+ * Gets the array of eventmasks from the given pad.
+ *
+ * Returns: an array with eventmasks, the list is ended 
+ * with 0
+ */
 const GstEventMask*
 gst_pad_get_event_masks (GstPad *pad)
 {
@@ -523,13 +566,22 @@ gst_pad_get_event_masks (GstPad *pad)
 }
 
 static gboolean
-gst_pad_get_event_masks_dispatcher (GstPad *pad, const GstFormat **data)
+gst_pad_get_event_masks_dispatcher (GstPad *pad, const GstEventMask **data)
 {
-  *data = gst_pad_get_formats (pad);
+  *data = gst_pad_get_event_masks (pad);
 
   return TRUE;
 }
 
+/**
+ * gst_pad_get_event_masks_default:
+ * @pad: a #GstPad to get the event mask for.
+ *
+ * Invokes the default event masks dispatcher on the pad.
+ *
+ * Returns: an array with eventmasks, the list is ended 
+ * with 0
+ */
 const GstEventMask* 
 gst_pad_get_event_masks_default (GstPad *pad)
 {
@@ -541,29 +593,6 @@ gst_pad_get_event_masks_default (GstPad *pad)
   return result;
 }
 
-gboolean
-gst_pad_handles_event (GstPad *pad, GstEventMask *mask)
-{
-  const GstEventMask *masks;
-
-  g_return_val_if_fail (pad != NULL, FALSE);
-  g_return_val_if_fail (mask != NULL, FALSE);
-
-  masks = gst_pad_get_event_masks (pad);
-  if (!masks)
-    return FALSE;
-
-  while (masks->type) {
-    if (masks->type == mask->type &&
-        (masks->flags & mask->flags) == mask->flags)
-      return TRUE;
-
-    masks++;
-  }
-
-  return FALSE;
-}
-
 /**
  * gst_pad_set_convert_function:
  * @pad: a #GstPad to set the convert function for.
@@ -580,7 +609,7 @@ gst_pad_set_convert_function (GstPad *pad,
 
   GST_RPAD_CONVERTFUNC (pad) = convert;
 
-  GST_DEBUG (GST_CAT_PADS, "convertfunc for %s:%s  set to %s",
+  GST_CAT_DEBUG (GST_CAT_PADS, "convertfunc for %s:%s  set to %s",
              GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (convert));
 }
 
@@ -599,10 +628,17 @@ gst_pad_set_query_function (GstPad *pad, GstPadQueryFunction query)
 
   GST_RPAD_QUERYFUNC (pad) = query;
 
-  GST_DEBUG (GST_CAT_PADS, "queryfunc for %s:%s  set to %s",
+  GST_CAT_DEBUG (GST_CAT_PADS, "queryfunc for %s:%s  set to %s",
              GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (query));
 }
 
+/**
+ * gst_pad_set_query_type_function:
+ * @pad: the #GstPad to set the query type function for.
+ * @type_func: the #GstPadQueryTypeFunction to set.
+ *
+ * Set the given query type function for the pad.
+ */
 void
 gst_pad_set_query_type_function (GstPad *pad, GstPadQueryTypeFunction type_func)
 {
@@ -611,11 +647,20 @@ gst_pad_set_query_type_function (GstPad *pad, GstPadQueryTypeFunction type_func)
 
   GST_RPAD_QUERYTYPEFUNC (pad) = type_func;
 
-  GST_DEBUG (GST_CAT_PADS, "querytypefunc for %s:%s  set to %s",
+  GST_CAT_DEBUG (GST_CAT_PADS, "querytypefunc for %s:%s  set to %s",
              GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (type_func));
 }
 
-const GstPadQueryType*
+/**
+ * gst_pad_get_query_types:
+ * @pad: the #GstPad to query
+ *
+ * Get an array of supported queries that can be performed
+ * on this pad.
+ *
+ * Returns: an array of querytypes anded with 0.
+ */
+const GstQueryType*
 gst_pad_get_query_types (GstPad *pad)
 {
   GstRealPad *rpad;
@@ -634,17 +679,26 @@ gst_pad_get_query_types (GstPad *pad)
 }
 
 static gboolean
-gst_pad_get_query_types_dispatcher (GstPad *pad, const GstPadQueryType **data)
+gst_pad_get_query_types_dispatcher (GstPad *pad, const GstQueryType **data)
 {
   *data = gst_pad_get_query_types (pad);
 
   return TRUE;
 }
 
-const GstPadQueryType*
+/**
+ * gst_pad_get_query_types_default:
+ * @pad: the #GstPad to query
+ *
+ * Invoke the default dispatcher for the query types on
+ * the pad.
+ *
+ * Returns: an array of querytypes anded with 0.
+ */
+const GstQueryType*
 gst_pad_get_query_types_default (GstPad *pad)
 {
-  GstPadQueryType *result = NULL;
+  GstQueryType *result = NULL;
 
   gst_pad_dispatcher (pad, (GstPadDispatcherFunction) 
                            gst_pad_get_query_types_dispatcher, &result);
@@ -653,22 +707,22 @@ gst_pad_get_query_types_default (GstPad *pad)
 }
 
 /**
- * gst_pad_set_internal_connection_function:
- * @pad: a #GstPad to set the internal connection function for.
- * @intconn: the #GstPadIntConnFunction to set.
+ * gst_pad_set_internal_link_function:
+ * @pad: a #GstPad to set the internal link function for.
+ * @intlink: the #GstPadIntLinkFunction to set.
  *
- * Sets the given internal connection function for the pad.
+ * Sets the given internal link function for the pad.
  */
 void
-gst_pad_set_internal_connection_function (GstPad *pad, 
-                                          GstPadIntConnFunction intconn)
+gst_pad_set_internal_link_function (GstPad *pad, 
+                                          GstPadIntLinkFunction intlink)
 {
   g_return_if_fail (pad != NULL);
   g_return_if_fail (GST_IS_REAL_PAD (pad));
 
-  GST_RPAD_INTCONNFUNC (pad) = intconn;
-  GST_DEBUG (GST_CAT_PADS, "internal connection for %s:%s  set to %s",
-             GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (intconn));
+  GST_RPAD_INTLINKFUNC (pad) = intlink;
+  GST_CAT_DEBUG (GST_CAT_PADS, "internal link for %s:%s  set to %s",
+             GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (intlink));
 }
 
 /**
@@ -685,28 +739,48 @@ gst_pad_set_formats_function (GstPad *pad, GstPadFormatsFunction formats)
   g_return_if_fail (GST_IS_REAL_PAD (pad));
 
   GST_RPAD_FORMATSFUNC (pad) = formats;
-  GST_DEBUG (GST_CAT_PADS, "formats function for %s:%s  set to %s",
+  GST_CAT_DEBUG (GST_CAT_PADS, "formats function for %s:%s  set to %s",
              GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (formats));
 }
 
 /**
- * gst_pad_set_connect_function:
- * @pad: a #GstPad to set the connect function for.
- * @connect: the #GstPadConnectFunction to set.
+ * gst_pad_set_link_function:
+ * @pad: a #GstPad to set the link function for.
+ * @link: the #GstPadLinkFunction to set.
  *
- * Sets the given connect function for the pad. It will be called
- * when the pad is connected or reconnected with caps.
+ * Sets the given link function for the pad. It will be called
+ * when the pad is linked or relinked with caps.
  */
 void
-gst_pad_set_connect_function (GstPad *pad,
-                             GstPadConnectFunction connect)
+gst_pad_set_link_function (GstPad *pad,
+                             GstPadLinkFunction link)
 {
   g_return_if_fail (pad != NULL);
   g_return_if_fail (GST_IS_REAL_PAD (pad));
 
-  GST_RPAD_CONNECTFUNC (pad) = connect;
-  GST_DEBUG (GST_CAT_PADS, "connectfunc for %s:%s set to %s",
-             GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (connect));
+  GST_RPAD_LINKFUNC (pad) = link;
+  GST_CAT_DEBUG (GST_CAT_PADS, "linkfunc for %s:%s set to %s",
+             GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (link));
+}
+
+/**
+ * gst_pad_set_unlink_function:
+ * @pad: a #GstPad to set the unlink function for.
+ * @unlink: the #GstPadUnlinkFunction to set.
+ *
+ * Sets the given unlink function for the pad. It will be called
+ * when the pad is unlinked.
+ */
+void
+gst_pad_set_unlink_function (GstPad *pad,
+                             GstPadUnlinkFunction unlink)
+{
+  g_return_if_fail (pad != NULL);
+  g_return_if_fail (GST_IS_REAL_PAD (pad));
+
+  GST_RPAD_UNLINKFUNC (pad) = unlink;
+  GST_CAT_DEBUG (GST_CAT_PADS, "unlinkfunc for %s:%s set to %s",
+             GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (unlink));
 }
 
 /**
@@ -724,7 +798,7 @@ gst_pad_set_getcaps_function (GstPad *pad,
   g_return_if_fail (GST_IS_REAL_PAD (pad));
 
   GST_RPAD_GETCAPSFUNC (pad) = getcaps;
-  GST_DEBUG (GST_CAT_PADS, "getcapsfunc for %s:%s set to %s",
+  GST_CAT_DEBUG (GST_CAT_PADS, "getcapsfunc for %s:%s set to %s",
              GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (getcaps));
 }
 /**
@@ -732,7 +806,8 @@ gst_pad_set_getcaps_function (GstPad *pad,
  * @pad: a #GstPad to set the bufferpool function for.
  * @bufpool: the #GstPadBufferPoolFunction to set.
  *
- * Sets the given bufferpool function for the pad.
+ * Sets the given bufferpool function for the pad. Note that the
+ * bufferpool function can only be set on sinkpads.
  */
 void
 gst_pad_set_bufferpool_function (GstPad *pad,
@@ -740,21 +815,22 @@ gst_pad_set_bufferpool_function (GstPad *pad,
 {
   g_return_if_fail (pad != NULL);
   g_return_if_fail (GST_IS_REAL_PAD (pad));
+  g_return_if_fail (GST_PAD_IS_SINK (pad));
 
   GST_RPAD_BUFFERPOOLFUNC (pad) = bufpool;
-  GST_DEBUG (GST_CAT_PADS, "bufferpoolfunc for %s:%s set to %s",
+  GST_CAT_DEBUG (GST_CAT_PADS, "bufferpoolfunc for %s:%s set to %s",
              GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (bufpool));
 }
 
 /**
- * gst_pad_disconnect:
- * @srcpad: the source #GstPad to disconnect.
- * @sinkpad: the sink #GstPad to disconnect.
+ * gst_pad_unlink:
+ * @srcpad: the source #GstPad to unlink.
+ * @sinkpad: the sink #GstPad to unlink.
  *
- * Disconnects the source pad from the sink pad.
+ * Unlinks the source pad from the sink pad.
  */
 void
-gst_pad_disconnect (GstPad *srcpad,
+gst_pad_unlink (GstPad *srcpad,
                    GstPad *sinkpad)
 {
   GstRealPad *realsrc, *realsink;
@@ -766,7 +842,7 @@ gst_pad_disconnect (GstPad *srcpad,
   g_return_if_fail (sinkpad != NULL);
   g_return_if_fail (GST_IS_PAD (sinkpad));
 
-  GST_INFO (GST_CAT_ELEMENT_PADS, "disconnecting %s:%s(%p) and %s:%s(%p)",
+  GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "unlinking %s:%s(%p) and %s:%s(%p)",
             GST_DEBUG_PAD_NAME (srcpad), srcpad, 
            GST_DEBUG_PAD_NAME (sinkpad), sinkpad);
 
@@ -788,7 +864,14 @@ gst_pad_disconnect (GstPad *srcpad,
   g_return_if_fail ((GST_RPAD_DIRECTION (realsrc) == GST_PAD_SRC) &&
                     (GST_RPAD_DIRECTION (realsink) == GST_PAD_SINK));
 
-  /* get the schedulers before we disconnect */
+  if (GST_RPAD_UNLINKFUNC (srcpad)) {
+    GST_RPAD_UNLINKFUNC (srcpad) (srcpad);
+  }
+  if (GST_RPAD_UNLINKFUNC (sinkpad)) {
+    GST_RPAD_UNLINKFUNC (sinkpad) (sinkpad);
+  }
+
+  /* get the schedulers before we unlink */
   src_sched = gst_pad_get_scheduler (GST_PAD_CAST (realsrc));
   sink_sched = gst_pad_get_scheduler (GST_PAD_CAST (realsink));
 
@@ -798,15 +881,15 @@ gst_pad_disconnect (GstPad *srcpad,
 
   /* reset the filters, both filters are refcounted once */
   if (GST_RPAD_FILTER (realsrc)) {
-    gst_caps_unref (GST_RPAD_FILTER (realsrc));
-    GST_RPAD_FILTER (realsink) = NULL;
-    GST_RPAD_FILTER (realsrc) = NULL;
+    gst_caps_replace (&GST_RPAD_FILTER (realsink), NULL);
+    gst_caps_replace (&GST_RPAD_FILTER (realsrc), NULL);
   }
 
   /* now tell the scheduler */
   if (src_sched && src_sched == sink_sched) {
-    gst_scheduler_pad_disconnect (src_sched, 
-                                 GST_PAD_CAST (realsrc), GST_PAD_CAST (realsink));
+    gst_scheduler_pad_unlink (src_sched, 
+                             GST_PAD_CAST (realsrc), 
+                             GST_PAD_CAST (realsink));
   }
 
   /* hold a reference, as they can go away in the signal handlers */
@@ -814,13 +897,13 @@ gst_pad_disconnect (GstPad *srcpad,
   gst_object_ref (GST_OBJECT (realsink));
 
   /* fire off a signal to each of the pads telling them 
-   * that they've been disconnected */
-  g_signal_emit (G_OBJECT (realsrc), gst_real_pad_signals[REAL_DISCONNECTED], 
+   * that they've been unlinked */
+  g_signal_emit (G_OBJECT (realsrc), gst_real_pad_signals[REAL_UNLINKED], 
                  0, realsink);
-  g_signal_emit (G_OBJECT (realsink), gst_real_pad_signals[REAL_DISCONNECTED], 
+  g_signal_emit (G_OBJECT (realsink), gst_real_pad_signals[REAL_UNLINKED], 
                  0, realsrc);
 
-  GST_INFO (GST_CAT_ELEMENT_PADS, "disconnected %s:%s and %s:%s",
+  GST_CAT_INFO (GST_CAT_ELEMENT_PADS, "unlinked %s:%s and %s:%s",
             GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
 
   gst_object_unref (GST_OBJECT (realsrc));
@@ -835,7 +918,7 @@ gst_pad_check_schedulers (GstRealPad *realsrc, GstRealPad *realsink)
 
   src_sched = gst_pad_get_scheduler (GST_PAD_CAST (realsrc));
   sink_sched = gst_pad_get_scheduler (GST_PAD_CAST (realsink));
-  
+
   if (src_sched && sink_sched) {
     if (GST_FLAG_IS_SET (GST_PAD_PARENT (realsrc), GST_ELEMENT_DECOUPLED))
       num_decoupled++;
@@ -850,19 +933,19 @@ gst_pad_check_schedulers (GstRealPad *realsrc, GstRealPad *realsink)
 }
 
 /**
- * gst_pad_can_connect_filtered:
- * @srcpad: the source #GstPad to connect.
- * @sinkpad: the sink #GstPad to connect.
+ * gst_pad_can_link_filtered:
+ * @srcpad: the source #GstPad to link.
+ * @sinkpad: the sink #GstPad to link.
  * @filtercaps: the filter #GstCaps.
  *
- * Checks if the source pad and the sink pad can be connected when constrained
- * by the given filter caps. 
+ * Checks if the source pad and the sink pad can be linked when constrained
+ * by the given filter caps.
  *
- * Returns: TRUE if the pads can be connected, FALSE otherwise.
+ * Returns: TRUE if the pads can be linked, FALSE otherwise.
  */
 gboolean
-gst_pad_can_connect_filtered (GstPad *srcpad, GstPad *sinkpad, 
-                              GstCaps *filtercaps)
+gst_pad_can_link_filtered (GstPad *srcpad, GstPad *sinkpad,
+                           GstCaps *filtercaps)
 {
   GstRealPad *realsrc, *realsink;
 
@@ -882,48 +965,48 @@ gst_pad_can_connect_filtered (GstPad *srcpad, GstPad *sinkpad,
   g_return_val_if_fail (GST_PAD_PARENT (realsink) != NULL, FALSE);
 
   if (!gst_pad_check_schedulers (realsrc, realsink)) {
-    g_warning ("connecting pads with different scheds requires "
+    g_warning ("linking pads with different scheds requires "
                "exactly one decoupled element (queue)");
     return FALSE;
   }
-  
+
   /* check if the directions are compatible */
   if (!(((GST_RPAD_DIRECTION (realsrc) == GST_PAD_SINK) &&
          (GST_RPAD_DIRECTION (realsink) == GST_PAD_SRC)) ||
         ((GST_RPAD_DIRECTION (realsrc) == GST_PAD_SRC) &&
          (GST_RPAD_DIRECTION (realsink) == GST_PAD_SINK))))
     return FALSE;
-  
+
   return TRUE;
 }
 /**
- * gst_pad_can_connect:
- * @srcpad: the source #GstPad to connect.
- * @sinkpad: the sink #GstPad to connect.
+ * gst_pad_can_link:
+ * @srcpad: the source #GstPad to link.
+ * @sinkpad: the sink #GstPad to link.
  *
- * Checks if the source pad and the sink pad can be connected.
+ * Checks if the source pad and the sink pad can be link.
  *
- * Returns: TRUE if the pads can be connected, FALSE otherwise.
+ * Returns: TRUE if the pads can be linked, FALSE otherwise.
  */
 gboolean
-gst_pad_can_connect (GstPad *srcpad, GstPad *sinkpad)
+gst_pad_can_link (GstPad *srcpad, GstPad *sinkpad)
 {
-  return gst_pad_can_connect_filtered (srcpad, sinkpad, NULL);
+  return gst_pad_can_link_filtered (srcpad, sinkpad, NULL);
 }
 
 /**
- * gst_pad_connect_filtered:
- * @srcpad: the source #GstPad to connect.
- * @sinkpad: the sink #GstPad to connect.
+ * gst_pad_link_filtered:
+ * @srcpad: the source #GstPad to link.
+ * @sinkpad: the sink #GstPad to link.
  * @filtercaps: the filter #GstCaps.
  *
- * Connects the source pad and the sink pad can be connected, constrained
- * by the given filter caps. 
+ * Links the source pad and the sink pad, constrained
+ * by the given filter caps. This function sinks the caps.
  *
- * Returns: TRUE if the pads have been connected, FALSE otherwise.
+ * Returns: TRUE if the pads have been linked, FALSE otherwise.
  */
 gboolean
-gst_pad_connect_filtered (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps)
+gst_pad_link_filtered (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps)
 {
   GstRealPad *realsrc, *realsink;
   GstScheduler *src_sched, *sink_sched;
@@ -934,7 +1017,7 @@ gst_pad_connect_filtered (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps)
   g_return_val_if_fail (sinkpad != NULL, FALSE);
   g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
 
-  GST_INFO (GST_CAT_PADS, "trying to connect %s:%s and %s:%s",
+  GST_CAT_INFO (GST_CAT_PADS, "trying to link %s:%s and %s:%s",
             GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
 
   /* now we need to deal with the real/ghost stuff */
@@ -942,36 +1025,33 @@ gst_pad_connect_filtered (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps)
   realsink = GST_PAD_REALIZE (sinkpad);
 
   if ((GST_PAD (realsrc) != srcpad) || (GST_PAD (realsink) != sinkpad)) {
-    GST_INFO (GST_CAT_PADS, "*actually* connecting %s:%s and %s:%s",
+    GST_CAT_INFO (GST_CAT_PADS, "*actually* linking %s:%s and %s:%s",
               GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
   }
-  if (GST_RPAD_PEER (realsrc) != NULL)
-  {
-    GST_INFO (GST_CAT_PADS, "Real source pad %s:%s has a peer, failed",
+  /* FIXME: shouldn't we convert this to g_return_val_if_fail? */
+  if (GST_RPAD_PEER (realsrc) != NULL) {
+    GST_CAT_INFO (GST_CAT_PADS, "Real source pad %s:%s has a peer, failed",
              GST_DEBUG_PAD_NAME (realsrc));
     return FALSE;
   }
-  if (GST_RPAD_PEER (realsink) != NULL)
-  {
-    GST_INFO (GST_CAT_PADS, "Real sink pad %s:%s has a peer, failed",
+  if (GST_RPAD_PEER (realsink) != NULL) {
+    GST_CAT_INFO (GST_CAT_PADS, "Real sink pad %s:%s has a peer, failed",
              GST_DEBUG_PAD_NAME (realsink));
     return FALSE;
   }
-  if (GST_PAD_PARENT (realsrc) == NULL)
-  {
-    GST_INFO (GST_CAT_PADS, "Real src pad %s:%s has no parent, failed",
+  if (GST_PAD_PARENT (realsrc) == NULL) {
+    GST_CAT_INFO (GST_CAT_PADS, "Real src pad %s:%s has no parent, failed",
              GST_DEBUG_PAD_NAME (realsrc));
     return FALSE;
   }
-  if (GST_PAD_PARENT (realsink) == NULL)
-  {
-    GST_INFO (GST_CAT_PADS, "Real src pad %s:%s has no parent, failed",
+  if (GST_PAD_PARENT (realsink) == NULL) {
+    GST_CAT_INFO (GST_CAT_PADS, "Real sink pad %s:%s has no parent, failed",
              GST_DEBUG_PAD_NAME (realsrc));
     return FALSE;
   }
 
   if (!gst_pad_check_schedulers (realsrc, realsink)) {
-    g_warning ("connecting pads with different scheds requires "
+    g_warning ("linking pads with different scheds requires "
                "exactly one decoupled element (such as queue)");
     return FALSE;
   }
@@ -985,16 +1065,13 @@ gst_pad_connect_filtered (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps)
     realsrc = realsink;
     realsink = temppad;
   }
-  if (GST_PAD_PARENT (realsink) == NULL)
-  if (GST_RPAD_DIRECTION (realsrc) != GST_PAD_SRC)
-  {
-    GST_INFO (GST_CAT_PADS, "Real src pad %s:%s is not a source pad, failed",
+  if (GST_RPAD_DIRECTION (realsrc) != GST_PAD_SRC) {
+    GST_CAT_INFO (GST_CAT_PADS, "Real src pad %s:%s is not a source pad, failed",
              GST_DEBUG_PAD_NAME (realsrc));
     return FALSE;
   }    
-  if (GST_RPAD_DIRECTION (realsink) != GST_PAD_SINK)
-  {
-    GST_INFO (GST_CAT_PADS, "Real sink pad %s:%s is not a sink pad, failed",
+  if (GST_RPAD_DIRECTION (realsink) != GST_PAD_SINK) {
+    GST_CAT_INFO (GST_CAT_PADS, "Real sink pad %s:%s is not a sink pad, failed",
              GST_DEBUG_PAD_NAME (realsink));
     return FALSE;
   }    
@@ -1003,9 +1080,9 @@ gst_pad_connect_filtered (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps)
   GST_RPAD_PEER (realsink) = realsrc;
 
   /* try to negotiate the pads, we don't need to clear the caps here */
-  if (!gst_pad_try_reconnect_filtered_func (realsrc, realsink, 
-                                           filtercaps, FALSE)) {
-    GST_DEBUG (GST_CAT_CAPS, "reconnect_filtered_func failed, can't connect");
+  if (!gst_pad_try_relink_filtered_func (realsrc, realsink,
+                                        filtercaps, FALSE)) {
+    GST_CAT_DEBUG (GST_CAT_CAPS, "relink_filtered_func failed, can't link");
 
     GST_RPAD_PEER (realsrc) = NULL;
     GST_RPAD_PEER (realsink) = NULL;
@@ -1014,10 +1091,10 @@ gst_pad_connect_filtered (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps)
   }
 
   /* fire off a signal to each of the pads telling them 
-   * that they've been connected */
-  g_signal_emit (G_OBJECT (realsrc), gst_real_pad_signals[REAL_CONNECTED], 
+   * that they've been linked */
+  g_signal_emit (G_OBJECT (realsrc), gst_real_pad_signals[REAL_LINKED], 
                  0, realsink);
-  g_signal_emit (G_OBJECT (realsink), gst_real_pad_signals[REAL_CONNECTED], 
+  g_signal_emit (G_OBJECT (realsink), gst_real_pad_signals[REAL_LINKED], 
                  0, realsrc);
 
   src_sched = gst_pad_get_scheduler (GST_PAD_CAST (realsrc));
@@ -1025,31 +1102,34 @@ gst_pad_connect_filtered (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps)
 
   /* now tell the scheduler */
   if (src_sched && src_sched == sink_sched) {
-    gst_scheduler_pad_connect (src_sched, 
-                              GST_PAD_CAST (realsrc), GST_PAD_CAST (realsink));
+    gst_scheduler_pad_link (src_sched, 
+                           GST_PAD_CAST (realsrc), GST_PAD_CAST (realsink));
+  }
+  else {
+    GST_CAT_INFO (GST_CAT_PADS, "not telling link to scheduler %s:%s and %s:%s, %p %p",
+            GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad),
+           src_sched, sink_sched);
   }
 
-  GST_INFO (GST_CAT_PADS, "connected %s:%s and %s:%s, successful",
+  GST_CAT_INFO (GST_CAT_PADS, "linked %s:%s and %s:%s, successful",
             GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
-  gst_caps_debug (gst_pad_get_caps (GST_PAD_CAST (realsrc)), 
-                  "caps of newly connected src pad");
 
   return TRUE;
 }
 
 /**
- * gst_pad_connect:
- * @srcpad: the source #GstPad to connect.
- * @sinkpad: the sink #GstPad to connect.
+ * gst_pad_link:
+ * @srcpad: the source #GstPad to link.
+ * @sinkpad: the sink #GstPad to link.
  *
- * Connects the source pad to the sink pad.
+ * Links the source pad to the sink pad.
  *
- * Returns: TRUE if the pad could be connected, FALSE otherwise.
+ * Returns: TRUE if the pad could be linked, FALSE otherwise.
  */
 gboolean
-gst_pad_connect (GstPad *srcpad, GstPad *sinkpad)
+gst_pad_link (GstPad *srcpad, GstPad *sinkpad)
 {
-  return gst_pad_connect_filtered (srcpad, sinkpad, NULL);
+  return gst_pad_link_filtered (srcpad, sinkpad, NULL);
 }
 
 /**
@@ -1089,6 +1169,16 @@ gst_pad_get_parent (GstPad *pad)
   return GST_PAD_PARENT (pad);
 }
 
+static void
+gst_pad_set_pad_template (GstPad *pad, GstPadTemplate *templ)
+{
+  /* this function would need checks if it weren't static */
+
+  gst_object_replace ((GstObject **) &pad->padtemplate, (GstObject *) templ);
+  
+  if (templ)
+    g_signal_emit (G_OBJECT (templ), gst_pad_template_signals[TEMPL_PAD_CREATED], 0, pad);
+} 
 /**
  * gst_pad_get_pad_template:
  * @pad: a #GstPad to get the pad template of.
@@ -1100,7 +1190,6 @@ gst_pad_get_parent (GstPad *pad)
 GstPadTemplate*
 gst_pad_get_pad_template (GstPad *pad)
 {
-  g_return_val_if_fail (pad != NULL, NULL);
   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
 
   return GST_PAD_PAD_TEMPLATE (pad); 
@@ -1111,7 +1200,10 @@ gst_pad_get_pad_template (GstPad *pad)
  * gst_pad_get_scheduler:
  * @pad: a #GstPad to get the scheduler of.
  *
- * Gets the scheduler of the pad.
+ * Gets the scheduler of the pad. Since the pad does not
+ * have a scheduler of its own, the scheduler of the parent
+ * is taken. For decoupled pads, the scheduler of the peer
+ * parent is taken.
  *
  * Returns: the #GstScheduler of the pad.
  */
@@ -1121,7 +1213,6 @@ gst_pad_get_scheduler (GstPad *pad)
   GstScheduler *scheduler = NULL;
   GstElement *parent;
   
-  g_return_val_if_fail (pad != NULL, NULL);
   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
   
   parent = gst_pad_get_parent (pad);
@@ -1197,14 +1288,13 @@ gst_pad_remove_ghost_pad (GstPad *pad,
 {
   GstRealPad *realpad;
 
-  g_return_if_fail (pad != NULL);
   g_return_if_fail (GST_IS_PAD (pad));
-  g_return_if_fail (ghostpad != NULL);
   g_return_if_fail (GST_IS_GHOST_PAD (ghostpad));
-
   realpad = GST_PAD_REALIZE (pad);
+  g_return_if_fail (GST_GPAD_REALPAD (ghostpad) == realpad);
 
   realpad->ghostpads = g_list_remove (realpad->ghostpads, ghostpad);
+  GST_GPAD_REALPAD (ghostpad) = NULL;
 }
 
 /**
@@ -1226,110 +1316,140 @@ gst_pad_get_ghost_pad_list (GstPad *pad)
 
 /* an internal caps negotiation helper function:
  * 
- * 1. optionally calls the pad connect function with the provided caps
- * 2. deals with the result code of the connect function
+ * 1. optionally calls the pad link function with the provided caps
+ * 2. deals with the result code of the link function
  * 3. sets fixed caps on the pad.
  */
-static GstPadConnectReturn
+static GstPadLinkReturn
 gst_pad_try_set_caps_func (GstRealPad *pad, GstCaps *caps, gboolean notify)
 {
-  GstCaps *oldcaps;
+  GstCaps *allowed = NULL;
   GstPadTemplate *template;
   GstElement *parent = GST_PAD_PARENT (pad);
 
-  g_return_val_if_fail (pad != NULL, GST_PAD_CONNECT_REFUSED);
-  g_return_val_if_fail (GST_IS_PAD (pad), GST_PAD_CONNECT_REFUSED);
-  
+  g_return_val_if_fail (pad != NULL, GST_PAD_LINK_REFUSED);
+  g_return_val_if_fail (GST_IS_PAD (pad), GST_PAD_LINK_REFUSED);
+
   /* if this pad has a parent and the parent is not READY, delay the
    * negotiation */
   if (parent && GST_STATE (parent) < GST_STATE_READY)
   {
-    GST_DEBUG (GST_CAT_CAPS, "parent %s of pad %s:%s is not READY",
+    GST_CAT_DEBUG (GST_CAT_CAPS, "parent %s of pad %s:%s is not READY",
               GST_ELEMENT_NAME (parent), GST_DEBUG_PAD_NAME (pad));
-    return GST_PAD_CONNECT_DELAYED;
+    return GST_PAD_LINK_DELAYED;
   }
          
-  GST_INFO (GST_CAT_CAPS, "trying to set caps %p on pad %s:%s",
+  GST_CAT_INFO (GST_CAT_CAPS, "trying to set caps %p on pad %s:%s",
             caps, GST_DEBUG_PAD_NAME (pad));
+
+  /* first see if we have to check against a filter, we ref the caps here as we're
+   * going to unref it later on */
+  if (!(allowed = gst_caps_ref (GST_RPAD_FILTER (pad)))) {
+    /* no filter, make sure we check against the padtemplate then */
+    if ((template = gst_pad_get_pad_template (GST_PAD_CAST (pad)))) {
+      allowed = gst_pad_template_get_caps (template);
+    }
+  }
   
-  if ((template = gst_pad_get_pad_template (GST_PAD_CAST (pad)))) {
-    if (!gst_caps_intersect (caps, gst_pad_template_get_caps (template))) {
-      GST_INFO (GST_CAT_CAPS, "caps did not intersect with %s:%s's padtemplate",
+  /* do we have to check the caps against something? */
+  if (allowed) {
+    GstCaps *intersection;
+
+    /* check against calculated caps */
+    intersection = gst_caps_intersect (caps, allowed);
+
+    /* oops, empty intersection, caps don"t have anything in common */
+    if (!intersection) {
+      GST_CAT_INFO (GST_CAT_CAPS, "caps did not intersect with %s:%s's allowed caps",
                 GST_DEBUG_PAD_NAME (pad));
       gst_caps_debug (caps, "caps themselves (attemped to set)");
-      gst_caps_debug (gst_pad_template_get_caps (template),
-                      "pad template caps that did not agree with caps");
-      return GST_PAD_CONNECT_REFUSED;
+      gst_caps_debug (allowed,
+                      "allowed caps that did not agree with caps");
+      gst_caps_unref (allowed);
+      return GST_PAD_LINK_REFUSED;
     }
+    /* caps checks out fine, we can unref the intersection now */
+    gst_caps_unref (intersection);
+    gst_caps_unref (allowed);
     /* given that the caps are fixed, we know that their intersection with the
      * padtemplate caps is the same as caps itself */
   }
 
-  /* we need to notify the connect function */
-  if (notify && GST_RPAD_CONNECTFUNC (pad)) {
-    GstPadConnectReturn res;
+  /* we need to notify the link function */
+  if (notify && GST_RPAD_LINKFUNC (pad)) {
+    GstPadLinkReturn res;
     gchar *debug_string;
+    gboolean negotiating;
 
-    GST_INFO (GST_CAT_CAPS, "calling connect function on pad %s:%s",
+    GST_CAT_INFO (GST_CAT_CAPS, "calling link function on pad %s:%s",
             GST_DEBUG_PAD_NAME (pad));
 
-    /* call the connect function */
-    res = GST_RPAD_CONNECTFUNC (pad) (GST_PAD (pad), caps);
+    negotiating = GST_FLAG_IS_SET (pad, GST_PAD_NEGOTIATING);
+
+    /* set the NEGOTIATING flag if not already done */
+    if (!negotiating)
+      GST_FLAG_SET (pad, GST_PAD_NEGOTIATING);
+    
+    /* call the link function */
+    res = GST_RPAD_LINKFUNC (pad) (GST_PAD (pad), caps);
+
+    /* unset again after negotiating only if we set it  */
+    if (!negotiating)
+      GST_FLAG_UNSET (pad, GST_PAD_NEGOTIATING);
 
     switch (res) {
-      case GST_PAD_CONNECT_REFUSED:
+      case GST_PAD_LINK_REFUSED:
        debug_string = "REFUSED";
        break;
-      case GST_PAD_CONNECT_OK:
+      case GST_PAD_LINK_OK:
        debug_string = "OK";
        break;
-      case GST_PAD_CONNECT_DONE:
+      case GST_PAD_LINK_DONE:
        debug_string = "DONE";
        break;
-      case GST_PAD_CONNECT_DELAYED:
+      case GST_PAD_LINK_DELAYED:
        debug_string = "DELAYED";
        break;
       default:
-       g_warning ("unknown return code from connect function of pad %s:%s %d",
+       g_warning ("unknown return code from link function of pad %s:%s %d",
                    GST_DEBUG_PAD_NAME (pad), res);
-        return GST_PAD_CONNECT_REFUSED;
+        return GST_PAD_LINK_REFUSED;
     }
 
-    GST_INFO (GST_CAT_CAPS, 
-             "got reply %s (%d) from connect function on pad %s:%s",
+    GST_CAT_INFO (GST_CAT_CAPS, 
+             "got reply %s (%d) from link function on pad %s:%s",
               debug_string, res, GST_DEBUG_PAD_NAME (pad));
 
-    /* done means the connect function called another caps negotiate function
+    /* done means the link function called another caps negotiate function
      * on this pad that succeeded, we dont need to continue */
-    if (res == GST_PAD_CONNECT_DONE) {
-      GST_INFO (GST_CAT_CAPS, "pad %s:%s is done", GST_DEBUG_PAD_NAME (pad));
-      return GST_PAD_CONNECT_DONE;
+    if (res == GST_PAD_LINK_DONE) {
+      GST_CAT_INFO (GST_CAT_CAPS, "pad %s:%s is done", GST_DEBUG_PAD_NAME (pad));
+      return GST_PAD_LINK_DONE;
     }
-    if (res == GST_PAD_CONNECT_REFUSED) {
-      GST_INFO (GST_CAT_CAPS, "pad %s:%s doesn't accept caps",
+    if (res == GST_PAD_LINK_REFUSED) {
+      GST_CAT_INFO (GST_CAT_CAPS, "pad %s:%s doesn't accept caps",
                GST_DEBUG_PAD_NAME (pad));
-      return GST_PAD_CONNECT_REFUSED;
+      return GST_PAD_LINK_REFUSED;
     }
   }
   /* we can only set caps on the pad if they are fixed */
   if (GST_CAPS_IS_FIXED (caps)) {
 
-    GST_INFO (GST_CAT_CAPS, "setting caps on pad %s:%s",
+    GST_CAT_INFO (GST_CAT_CAPS, "setting caps on pad %s:%s",
               GST_DEBUG_PAD_NAME (pad));
     /* if we got this far all is ok, remove the old caps, set the new one */
-    oldcaps = GST_PAD_CAPS (pad);
-    if (caps) gst_caps_ref (caps);
-    GST_PAD_CAPS (pad) = caps;
-    if (oldcaps) gst_caps_unref (oldcaps);
+    gst_caps_replace_sink (&GST_PAD_CAPS (pad), caps);
 
     g_object_notify (G_OBJECT (pad), "caps");
   }
   else {
-    GST_INFO (GST_CAT_CAPS, 
+    GST_CAT_INFO (GST_CAT_CAPS, 
              "caps are not fixed on pad %s:%s, not setting them yet",
               GST_DEBUG_PAD_NAME (pad));
+
+    return GST_PAD_LINK_DELAYED;
   }
-  return GST_PAD_CONNECT_OK;
+  return GST_PAD_LINK_OK;
 }
 
 /**
@@ -1337,56 +1457,67 @@ gst_pad_try_set_caps_func (GstRealPad *pad, GstCaps *caps, gboolean notify)
  * @pad: a #GstPad to try to set the caps on.
  * @caps: the #GstCaps to set.
  *
- * Tries to set the caps on the given pad.
+ * Tries to set the caps on the given pad. Ownership is always taken 
+ * of the caps, so you will need to unref non-floating caps.
  *
- * Returns: A GstPadConnectReturn value indicating whether the caps
+ * Returns: A #GstPadLinkReturn value indicating whether the caps
  *             could be set.
  */
-GstPadConnectReturn
+GstPadLinkReturn
 gst_pad_try_set_caps (GstPad *pad, GstCaps *caps)
 {
   GstRealPad *peer, *realpad;
-  GstPadConnectReturn set_retval;
+  GstPadLinkReturn set_retval;
 
   realpad = GST_PAD_REALIZE (pad);
   peer = GST_RPAD_PEER (realpad);
 
-  GST_INFO (GST_CAT_CAPS, "trying to set caps %p on pad %s:%s",
+  GST_CAT_INFO (GST_CAT_CAPS, "trying to set caps %p on pad %s:%s",
             caps, GST_DEBUG_PAD_NAME (realpad));
 
   gst_caps_debug (caps, "caps that we are trying to set");
 
+  /* try to take ownership */
+  gst_caps_ref (caps);
+  gst_caps_sink (caps);
+
   /* setting non fixed caps on a pad is not allowed */
   if (!GST_CAPS_IS_FIXED (caps)) {
-  GST_INFO (GST_CAT_CAPS, 
-            "trying to set unfixed caps on pad %s:%s, not allowed",
-           GST_DEBUG_PAD_NAME (realpad));
+    GST_CAT_INFO (GST_CAT_CAPS, 
+              "trying to set unfixed caps on pad %s:%s, not allowed",
+             GST_DEBUG_PAD_NAME (realpad));
     g_warning ("trying to set non fixed caps on pad %s:%s, not allowed",
                GST_DEBUG_PAD_NAME (realpad));
+
     gst_caps_debug (caps, "unfixed caps");
-    return GST_PAD_CONNECT_DELAYED;
+    set_retval = GST_PAD_LINK_DELAYED;
+    goto done;
   }
 
   /* if we have a peer try to set the caps, notifying the peerpad
-   * if it has a connect function */
+   * if it has a link function */
   if (peer && ((set_retval = gst_pad_try_set_caps_func (peer, caps, TRUE)) <= 0))
   {
-    GST_INFO (GST_CAT_CAPS, "tried to set caps on peerpad %s:%s but couldn't, return value %d",
+    GST_CAT_INFO (GST_CAT_CAPS, "tried to set caps on peerpad %s:%s but couldn't, return value %d",
              GST_DEBUG_PAD_NAME (peer), set_retval);
-    return set_retval;
+    goto done;
   }
 
   /* then try to set our own caps, we don't need to be notified */
   if ((set_retval = gst_pad_try_set_caps_func (realpad, caps, FALSE)) <= 0)
   {
-    GST_INFO (GST_CAT_CAPS, "tried to set own caps on pad %s:%s but couldn't, return value %d",
+    GST_CAT_INFO (GST_CAT_CAPS, "tried to set own caps on pad %s:%s but couldn't, return value %d",
              GST_DEBUG_PAD_NAME (realpad), set_retval);
-    return set_retval;
+    goto done;
   }
-  GST_INFO (GST_CAT_CAPS, "succeeded setting caps %p on pad %s:%s, return value %d",
+  GST_CAT_INFO (GST_CAT_CAPS, "succeeded setting caps %p on pad %s:%s, return value %d",
            caps, GST_DEBUG_PAD_NAME (realpad), set_retval);
   g_assert (GST_PAD_CAPS (pad));
-                         
+
+done:                    
+  /* if we took ownership, the caps will be freed */
+  gst_caps_unref (caps);
+
   return set_retval;
 }
 
@@ -1400,8 +1531,8 @@ gst_pad_try_set_caps (GstPad *pad, GstCaps *caps)
  * 6. starts the caps negotiation.
  */
 static gboolean
-gst_pad_try_reconnect_filtered_func (GstRealPad *srcpad, GstRealPad *sinkpad, 
-                                     GstCaps *filtercaps, gboolean clear)
+gst_pad_try_relink_filtered_func (GstRealPad *srcpad, GstRealPad *sinkpad, 
+                                  GstCaps *filtercaps, gboolean clear)
 {
   GstCaps *srccaps, *sinkcaps;
   GstCaps *intersection = NULL;
@@ -1415,26 +1546,28 @@ gst_pad_try_reconnect_filtered_func (GstRealPad *srcpad, GstRealPad *sinkpad,
 
   /* optinally clear the caps */
   if (clear) {
-    GST_INFO (GST_CAT_PADS, 
-             "start reconnect filtered %s:%s and %s:%s, clearing caps",
+    GST_CAT_INFO (GST_CAT_PADS, 
+             "start relink filtered %s:%s and %s:%s, clearing caps",
               GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
 
-    GST_PAD_CAPS (GST_PAD (realsrc)) = NULL;
-    GST_PAD_CAPS (GST_PAD (realsink)) = NULL;
+    gst_caps_replace (&GST_PAD_CAPS (GST_PAD (realsrc)), NULL);
+    gst_caps_replace (&GST_PAD_CAPS (GST_PAD (realsink)), NULL);
+    gst_caps_replace (&GST_RPAD_FILTER (realsrc), NULL); 
+    gst_caps_replace (&GST_RPAD_FILTER (realsink), NULL); 
   }
   else {
-    GST_INFO (GST_CAT_PADS, "start reconnect filtered %s:%s and %s:%s",
+    GST_CAT_INFO (GST_CAT_PADS, "start relink filtered %s:%s and %s:%s",
         GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
   }
 
   srccaps = gst_pad_get_caps (GST_PAD (realsrc));
-  GST_DEBUG (GST_CAT_PADS, "dumping caps of pad %s:%s", 
+  GST_CAT_DEBUG (GST_CAT_PADS, "dumping caps of pad %s:%s", 
              GST_DEBUG_PAD_NAME (realsrc));
-  gst_caps_debug (srccaps, "caps of src pad (pre-reconnect)");
+  gst_caps_debug (srccaps, "caps of src pad (pre-relink)");
   sinkcaps = gst_pad_get_caps (GST_PAD (realsink));
-  GST_DEBUG (GST_CAT_PADS, "dumping caps of pad %s:%s", 
+  GST_CAT_DEBUG (GST_CAT_PADS, "dumping caps of pad %s:%s", 
              GST_DEBUG_PAD_NAME (realsink));
-  gst_caps_debug (sinkcaps, "caps of sink pad (pre-reconnect)");
+  gst_caps_debug (sinkcaps, "caps of sink pad (pre-relink)");
 
   /* first take the intersection of the pad caps */
   intersection = gst_caps_intersect (srccaps, sinkcaps);
@@ -1444,42 +1577,53 @@ gst_pad_try_reconnect_filtered_func (GstRealPad *srcpad, GstRealPad *sinkpad,
   if (!intersection && (srccaps || sinkcaps)) {
     /* the intersection is NULL but the pad caps were not both NULL,
      * this means they have no common format */
-    GST_INFO (GST_CAT_PADS, "pads %s:%s and %s:%s have no common type",
+    GST_CAT_INFO (GST_CAT_PADS, "pads %s:%s and %s:%s have no common type",
               GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
+    /* make sure any floating caps from gst_pad_get_caps are freed here */
+    gst_caps_sink (srccaps);
+    gst_caps_sink (sinkcaps);
     return FALSE;
-  } else if (intersection) {
-    GST_INFO (GST_CAT_PADS, "pads %s:%s and %s:%s intersected to %s caps",
-         GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink), 
-        ((intersection && GST_CAPS_IS_FIXED (intersection)) ? "fixed" : "variable"));
+  } else  {
+    GST_CAT_INFO (GST_CAT_PADS, "pads %s:%s and %s:%s intersected to %s caps",
+       GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink), 
+       (intersection ?
+          (GST_CAPS_IS_FIXED (intersection) ? "fixed" : "variable") :
+          "NULL"));
+
+    /* we don't need those anymore, as the caps can be floating */
+    gst_caps_sink (srccaps);
+    gst_caps_sink (sinkcaps);
 
     /* then filter this against the app filter */
     if (filtercaps) {
-      GstCaps *filtered_intersection = gst_caps_intersect (intersection, 
-                                                          filtercaps);
+      GstCaps *filtered_intersection;
+      
+      filtered_intersection = gst_caps_intersect (intersection, 
+                                                 filtercaps);
 
-      /* get rid of the old intersection here */
-      gst_caps_unref (intersection);
+      gst_caps_sink (intersection);
 
       if (!filtered_intersection) {
-        GST_INFO (GST_CAT_PADS, 
-                 "filtered connection between pads %s:%s and %s:%s is empty",
+        GST_CAT_INFO (GST_CAT_PADS, 
+                 "filtered link between pads %s:%s and %s:%s is empty",
                   GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
         return FALSE;
       }
       intersection = filtered_intersection;
 
       /* keep a reference to the app caps */
-      GST_RPAD_APPFILTER (realsink) = filtercaps;
-      GST_RPAD_APPFILTER (realsrc) = filtercaps;
+      gst_caps_replace_sink (&GST_RPAD_APPFILTER (realsink), filtercaps);
+      gst_caps_replace_sink (&GST_RPAD_APPFILTER (realsrc), filtercaps);
     }
   }
-  GST_DEBUG (GST_CAT_CAPS, "setting filter for connection to:");
-  gst_caps_debug (intersection, "filter for connection");
+  GST_CAT_DEBUG (GST_CAT_CAPS, "setting filter for link to:");
+  gst_caps_debug (intersection, "filter for link");
 
   /* both the app filter and the filter, while stored on both peer pads, 
    * are equal to the same thing on both */
-  GST_RPAD_FILTER (realsrc) = intersection; 
-  GST_RPAD_FILTER (realsink) = intersection; 
+  gst_caps_replace_sink (&GST_RPAD_FILTER (realsrc), intersection); 
+  gst_caps_replace_sink (&GST_RPAD_FILTER (realsink), intersection); 
+  gst_caps_sink (intersection);
 
   return gst_pad_perform_negotiate (GST_PAD (realsrc), GST_PAD (realsink));
 }
@@ -1499,6 +1643,9 @@ gst_pad_perform_negotiate (GstPad *srcpad, GstPad *sinkpad)
   GstCaps *intersection, *filtered_intersection;
   GstRealPad *realsrc, *realsink;
   GstCaps *srccaps, *sinkcaps, *filter;
+  gboolean res = TRUE;
+  GstElement *parent;
+  
 
   g_return_val_if_fail (srcpad != NULL, FALSE);
   g_return_val_if_fail (sinkpad != NULL, FALSE);
@@ -1509,63 +1656,91 @@ gst_pad_perform_negotiate (GstPad *srcpad, GstPad *sinkpad)
   g_return_val_if_fail (GST_RPAD_PEER (realsrc) != NULL, FALSE);
   g_return_val_if_fail (GST_RPAD_PEER (realsink) == realsrc, FALSE);
 
+  /* shortcut negotiation */
+  parent = GST_PAD_PARENT (realsrc);
+  if (parent && GST_STATE (parent) < GST_STATE_READY) {
+    GST_CAT_DEBUG (GST_CAT_CAPS, "parent %s of pad %s:%s is not READY",
+              GST_ELEMENT_NAME (parent), GST_DEBUG_PAD_NAME (realsrc));
+    return TRUE;
+  }
+  parent = GST_PAD_PARENT (realsink);
+  if (parent && GST_STATE (parent) < GST_STATE_READY) {
+    GST_CAT_DEBUG (GST_CAT_CAPS, "parent %s of pad %s:%s is not READY",
+              GST_ELEMENT_NAME (parent), GST_DEBUG_PAD_NAME (realsink));
+    return TRUE;
+  }
+
+  GST_CAT_INFO (GST_CAT_PADS, "perform negotiate for link %s:%s-%s:%s",
+              GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
+
   filter = GST_RPAD_APPFILTER (realsrc);
   if (filter) {
-    GST_INFO (GST_CAT_PADS, "dumping filter for connection %s:%s-%s:%s",
+    GST_CAT_INFO (GST_CAT_PADS, "dumping filter for link %s:%s-%s:%s",
               GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
-    gst_caps_debug (filter, "connection filter caps");
+    gst_caps_debug (filter, "link filter caps");
   }
 
   /* calculate the new caps here */
   srccaps = gst_pad_get_caps (GST_PAD (realsrc));
-  GST_DEBUG (GST_CAT_PADS, "dumping caps of pad %s:%s", 
+  GST_CAT_DEBUG (GST_CAT_PADS, "dumping caps of pad %s:%s", 
              GST_DEBUG_PAD_NAME (realsrc));
   gst_caps_debug (srccaps, 
                   "src caps, awaiting negotiation, after applying filter");
   sinkcaps = gst_pad_get_caps (GST_PAD (realsink));
-  GST_DEBUG (GST_CAT_PADS, "dumping caps of pad %s:%s", 
+  GST_CAT_DEBUG (GST_CAT_PADS, "dumping caps of pad %s:%s", 
              GST_DEBUG_PAD_NAME (realsink));
   gst_caps_debug (sinkcaps, 
                   "sink caps, awaiting negotiation, after applying filter");
   intersection = gst_caps_intersect (srccaps, sinkcaps);
   filtered_intersection = gst_caps_intersect (intersection, filter);
-  if (filtered_intersection) {
-    gst_caps_unref (intersection);
-    intersection = filtered_intersection;
-  }
+  gst_caps_unref (intersection);
 
   /* no negotiation is performed if the pads have filtercaps */
-  if (intersection) {
-    GstPadConnectReturn res;
+  if (filtered_intersection) {
+    GstPadLinkReturn link_res;
 
-    res = gst_pad_try_set_caps_func (realsrc, intersection, TRUE);
-    if (res == GST_PAD_CONNECT_REFUSED) 
-      return FALSE;
-    if (res == GST_PAD_CONNECT_DONE) 
-      return TRUE;
+    link_res = gst_pad_try_set_caps_func (realsrc, filtered_intersection, TRUE);
+    if (link_res == GST_PAD_LINK_REFUSED) 
+      goto error;
+    if (link_res == GST_PAD_LINK_DONE) 
+      goto success;
 
-    res = gst_pad_try_set_caps_func (realsink, intersection, TRUE);
-    if (res == GST_PAD_CONNECT_REFUSED) 
-      return FALSE;
-    if (res == GST_PAD_CONNECT_DONE) 
-      return TRUE;
+    link_res = gst_pad_try_set_caps_func (realsink, filtered_intersection, TRUE);
+    if (link_res == GST_PAD_LINK_REFUSED) 
+      goto error;
+    if (link_res == GST_PAD_LINK_DONE) 
+      goto success;
   }
-  return TRUE;
+  /* no filtered_intersection, some pads had caps and ther was a filter */
+  else if ((srccaps || sinkcaps) && filter) {
+    goto error;
+  }
+
+success:
+cleanup:
+  gst_caps_sink (srccaps);
+  gst_caps_sink (sinkcaps);
+  gst_caps_unref (filtered_intersection);
+  return res;
+
+error:
+  res = FALSE;
+  goto cleanup;
 }
 
 /**
- * gst_pad_try_reconnect_filtered:
- * @srcpad: the source #GstPad to reconnect.
- * @sinkpad: the sink #GstPad to reconnect.
- * @filtercaps: the #GstPad to use as a filter in the reconnection.
+ * gst_pad_try_relink_filtered:
+ * @srcpad: the source #GstPad to relink.
+ * @sinkpad: the sink #GstPad to relink.
+ * @filtercaps: the #GstPad to use as a filter in the relink.
  *
- * Tries to reconnect the given source and sink pad, constrained by the given
+ * Tries to relink the given source and sink pad, constrained by the given
  * capabilities.
  *
  * Returns: TRUE if the pads were succesfully renegotiated, FALSE otherwise.
  */
 gboolean
-gst_pad_try_reconnect_filtered (GstPad *srcpad, GstPad *sinkpad, 
+gst_pad_try_relink_filtered (GstPad *srcpad, GstPad *sinkpad, 
                                 GstCaps *filtercaps)
 {
   GstRealPad *realsrc, *realsink;
@@ -1579,24 +1754,24 @@ gst_pad_try_reconnect_filtered (GstPad *srcpad, GstPad *sinkpad,
   g_return_val_if_fail (GST_RPAD_PEER (realsrc) != NULL, FALSE);
   g_return_val_if_fail (GST_RPAD_PEER (realsink) == realsrc, FALSE);
   
-  return gst_pad_try_reconnect_filtered_func (realsrc, realsink, 
-                                              filtercaps, TRUE);
+  return gst_pad_try_relink_filtered_func (realsrc, realsink, 
+                                           filtercaps, TRUE);
 }
 
 /**
- * gst_pad_reconnect_filtered:
- * @srcpad: the source #GstPad to reconnect.
- * @sinkpad: the sink #GstPad to reconnect.
- * @filtercaps: the #GstPad to use as a filter in the reconnection.
+ * gst_pad_relink_filtered:
+ * @srcpad: the source #GstPad to relink.
+ * @sinkpad: the sink #GstPad to relink.
+ * @filtercaps: the #GstPad to use as a filter in the relink.
  *
- * Reconnects the given source and sink pad, constrained by the given
- * capabilities.  If the reconnection fails, the pads are disconnected
+ * Relinks the given source and sink pad, constrained by the given
+ * capabilities.  If the relink fails, the pads are unlinked
  * and FALSE is returned.
  *
- * Returns: TRUE if the pads were succesfully reconnected, FALSE otherwise.
+ * Returns: TRUE if the pads were succesfully relinked, FALSE otherwise.
  */
 gboolean
-gst_pad_reconnect_filtered (GstPad *srcpad, GstPad *sinkpad, 
+gst_pad_relink_filtered (GstPad *srcpad, GstPad *sinkpad, 
                             GstCaps *filtercaps)
 {
   GstRealPad *realsrc, *realsink;
@@ -1610,25 +1785,26 @@ gst_pad_reconnect_filtered (GstPad *srcpad, GstPad *sinkpad,
   g_return_val_if_fail (GST_RPAD_PEER (realsrc) != NULL, FALSE);
   g_return_val_if_fail (GST_RPAD_PEER (realsink) == realsrc, FALSE);
   
-  if (! gst_pad_try_reconnect_filtered_func (realsrc, realsink, 
-                                            filtercaps, TRUE)) {
-    gst_pad_disconnect (srcpad, GST_PAD (GST_PAD_PEER (srcpad)));
+  if (!gst_pad_try_relink_filtered_func (realsrc, realsink, 
+                                        filtercaps, TRUE)) 
+  {
+    gst_pad_unlink (srcpad, GST_PAD (GST_PAD_PEER (srcpad)));
     return FALSE;
   }
   return TRUE;
 }
 
 /**
- * gst_pad_proxy_connect:
+ * gst_pad_proxy_link:
  * @pad: a #GstPad to proxy to.
  * @caps: the #GstCaps to use in proxying.
  *
- * Proxies the connect function to the specified pad.
+ * Proxies the link function to the specified pad.
  *
  * Returns: TRUE if the peer pad accepted the caps, FALSE otherwise.
  */
-GstPadConnectReturn
-gst_pad_proxy_connect (GstPad *pad, GstCaps *caps)
+GstPadLinkReturn
+gst_pad_proxy_link (GstPad *pad, GstCaps *caps)
 {
   GstRealPad *peer, *realpad;
 
@@ -1636,15 +1812,25 @@ gst_pad_proxy_connect (GstPad *pad, GstCaps *caps)
 
   peer = GST_RPAD_PEER (realpad);
 
-  GST_INFO (GST_CAT_CAPS, "proxy connect to pad %s:%s",
+  GST_CAT_INFO (GST_CAT_CAPS, "proxy link to pad %s:%s",
             GST_DEBUG_PAD_NAME (realpad));
 
   if (peer && gst_pad_try_set_caps_func (peer, caps, TRUE) < 0)
-    return GST_PAD_CONNECT_REFUSED;
+    return GST_PAD_LINK_REFUSED;
   if (gst_pad_try_set_caps_func (realpad, caps, FALSE) < 0)
-    return GST_PAD_CONNECT_REFUSED;
+    return GST_PAD_LINK_REFUSED;
 
-  return GST_PAD_CONNECT_OK;
+  if (peer) {
+    gst_caps_debug (caps, "proxy link filter");
+
+    GST_CAT_INFO (GST_CAT_CAPS, "setting filter on %s:%s and %s:%s",
+              GST_DEBUG_PAD_NAME (peer), GST_DEBUG_PAD_NAME (realpad));
+
+    gst_caps_replace_sink (&GST_RPAD_FILTER (peer), caps); 
+    gst_caps_replace_sink (&GST_RPAD_FILTER (realpad), caps); 
+  }
+
+  return GST_PAD_LINK_OK;
 }
 
 /**
@@ -1653,7 +1839,9 @@ gst_pad_proxy_connect (GstPad *pad, GstCaps *caps)
  *
  * Gets the capabilities of this pad.
  *
- * Returns: the #GstCaps of this pad.
+ * Returns: the #GstCaps of this pad. This function potentially
+ * returns a floating caps, so use gst_caps_sink to get rid of
+ * it.
  */
 GstCaps*
 gst_pad_get_caps (GstPad *pad)
@@ -1665,24 +1853,31 @@ gst_pad_get_caps (GstPad *pad)
 
   realpad = GST_PAD_REALIZE (pad);
 
-  GST_DEBUG (GST_CAT_CAPS, "get pad caps of %s:%s (%p)",
+  GST_CAT_DEBUG (GST_CAT_CAPS, "get pad caps of %s:%s (%p)",
             GST_DEBUG_PAD_NAME (realpad), realpad);
 
+  /* note that we will not _ref the caps here as this function might be 
+   * called recursively */
   if (GST_PAD_CAPS (realpad)) {
-    GST_DEBUG (GST_CAT_CAPS, "using pad real caps %p", GST_PAD_CAPS (realpad));
+    GST_CAT_DEBUG (GST_CAT_CAPS, "using pad real caps %p", GST_PAD_CAPS (realpad));
     return GST_PAD_CAPS (realpad);
   }
   else if GST_RPAD_GETCAPSFUNC (realpad) {
-    GST_DEBUG (GST_CAT_CAPS, "using pad get function");
-    return GST_RPAD_GETCAPSFUNC (realpad) (GST_PAD_CAST (realpad), NULL);
+    GstCaps *caps;
+
+    GST_CAT_DEBUG (GST_CAT_CAPS, "using pad get function");
+    caps = GST_RPAD_GETCAPSFUNC (realpad) (GST_PAD_CAST (realpad), NULL);
+    if(caps)g_return_val_if_fail(caps->refcount > 0, NULL);
+
+    return caps;
   }
   else if (GST_PAD_PAD_TEMPLATE (realpad)) {
     GstPadTemplate *templ = GST_PAD_PAD_TEMPLATE (realpad);
-    GST_DEBUG (GST_CAT_CAPS, "using pad template %p with caps %p", 
+    GST_CAT_DEBUG (GST_CAT_CAPS, "using pad template %p with caps %p", 
               templ, GST_PAD_TEMPLATE_CAPS (templ));
     return GST_PAD_TEMPLATE_CAPS (templ);
   }
-  GST_DEBUG (GST_CAT_CAPS, "pad has no caps");
+  GST_CAT_DEBUG (GST_CAT_CAPS, "pad has no caps");
 
   return NULL;
 }
@@ -1693,7 +1888,8 @@ gst_pad_get_caps (GstPad *pad)
  *
  * Gets the template capabilities of this pad.
  *
- * Returns: the template #GstCaps of this pad.
+ * Returns: the template #GstCaps of this pad, unref the caps
+ * if you no longer need it.
  */
 GstCaps*
 gst_pad_get_pad_template_caps (GstPad *pad)
@@ -1702,7 +1898,7 @@ gst_pad_get_pad_template_caps (GstPad *pad)
   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
 
   if (GST_PAD_PAD_TEMPLATE (pad))
-    return GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (pad));
+    return gst_caps_ref (GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (pad)));
 
   return NULL;
 }
@@ -1714,7 +1910,8 @@ gst_pad_get_pad_template_caps (GstPad *pad)
  *
  * Gets the capability with the given name from this pad template.
  *
- * Returns: the #GstCaps, or NULL if not found or in case of an error.
+ * Returns: the #GstCaps, or NULL if not found or in case of an error. unref 
+ * the caps if you no longer need it.
  */
 GstCaps*
 gst_pad_template_get_caps_by_name (GstPadTemplate *templ, const gchar *name)
@@ -1727,7 +1924,7 @@ gst_pad_template_get_caps_by_name (GstPadTemplate *templ, const gchar *name)
   if (!caps) 
     return NULL;
 
-  return gst_caps_get_by_name (caps, name);
+  return gst_caps_ref (gst_caps_get_by_name (caps, name));
 }
 
 /**
@@ -1758,7 +1955,7 @@ gst_pad_check_compatibility (GstPad *srcpad, GstPad *sinkpad)
     }
   }
   else {
-    GST_DEBUG (GST_CAT_PADS, 
+    GST_CAT_DEBUG (GST_CAT_PADS, 
               "could not check capabilities of pads (%s:%s) and (%s:%s) %p %p",
               GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad), 
               GST_PAD_CAPS (srcpad), GST_PAD_CAPS (sinkpad));
@@ -1790,26 +1987,34 @@ gst_pad_get_peer (GstPad *pad)
  * Gets the capabilities of the allowed media types that can
  * flow through this pad.  The caller must free the resulting caps.
  *
- * Returns: a newly allocated copy of the allowed #GstCaps.
+ * Returns: the allowed #GstCaps of the pad link. unref the caps if
+ * you no longer need it.
  */
 GstCaps*
 gst_pad_get_allowed_caps (GstPad *pad)
 {
+  GstCaps *caps;
+  GstRealPad *realpad;
+
   g_return_val_if_fail (pad != NULL, NULL);
   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
 
-  GST_DEBUG (GST_CAT_PROPERTIES, "get allowed caps of %s:%s", 
+  realpad = GST_PAD_REALIZE (pad);
+
+  GST_CAT_DEBUG (GST_CAT_PROPERTIES, "get allowed caps of %s:%s", 
              GST_DEBUG_PAD_NAME (pad));
 
-  return gst_caps_copy (GST_RPAD_FILTER (pad));
+  caps = gst_caps_ref (GST_RPAD_FILTER (realpad));
+
+  return caps;
 }
 
 /**
  * gst_pad_recalc_allowed_caps:
  * @pad: a #GstPad to recalculate the capablities of.
  *
- * Attempts to reconnect the pad to its peer through its filter, 
- * set with gst_pad_[re]connect_filtered. This function is useful when a
+ * Attempts to relink the pad to its peer through its filter, 
+ * set with gst_pad_[re]link_filtered. This function is useful when a
  * plug-in has new capabilities on a pad and wants to notify the peer.
  *
  * Returns: TRUE on success, FALSE otherwise.
@@ -1822,22 +2027,68 @@ gst_pad_recalc_allowed_caps (GstPad *pad)
   g_return_val_if_fail (pad != NULL, FALSE);
   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
 
-  GST_DEBUG (GST_CAT_PROPERTIES, "set allowed caps of %s:%s", 
+  GST_CAT_DEBUG (GST_CAT_PROPERTIES, "set allowed caps of %s:%s", 
              GST_DEBUG_PAD_NAME (pad));
 
+
   peer = GST_RPAD_PEER (pad);
   if (peer)
-    return gst_pad_try_reconnect_filtered (pad, GST_PAD (peer), 
-                                          GST_RPAD_APPFILTER (pad));
+    return gst_pad_try_relink_filtered (pad, GST_PAD (peer), 
+                                       GST_RPAD_APPFILTER (pad));
 
   return TRUE;
 }
 
 /**
+ * gst_pad_recover_caps_error:
+ * @pad: a #GstPad that had a failed capsnego
+ * @allowed: possible caps for the link
+ *
+ * Attempt to recover from a failed caps negotiation. This function
+ * is typically called by a plugin that exhausted its list of caps
+ * and wants the application to resolve the issue. The application
+ * should connect to the pad's caps_nego_failed signal and should
+ * resolve the issue by connecting another element for example.
+ *
+ * Returns: TRUE when the issue was resolved, dumps detailed information
+ * on the console and returns FALSE otherwise.
+ */
+gboolean
+gst_pad_recover_caps_error (GstPad *pad, GstCaps *allowed)
+{
+  GstElement *parent;
+  
+  g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
+
+  /* see if someone can resolve this */
+  if (g_signal_has_handler_pending (G_OBJECT (pad), 
+       gst_real_pad_signals[REAL_CAPS_NEGO_FAILED], 0, FALSE))
+  {
+    /* clear pad caps first */
+    gst_caps_replace (&GST_PAD_CAPS (pad), NULL);
+
+    /* lets hope some signal manages to set the caps again */
+    g_signal_emit (G_OBJECT (pad), gst_real_pad_signals[REAL_CAPS_NEGO_FAILED], 0, allowed);
+
+    /* if the pad has caps now or is disabled, it's ok */
+    if (GST_PAD_CAPS (pad) != NULL || !GST_PAD_IS_ACTIVE (pad))
+      return TRUE;
+  }
+
+  /* report error */
+  parent = gst_pad_get_parent (pad);
+  gst_element_error (parent, "negotiation failed on pad %s:%s",
+                 GST_DEBUG_PAD_NAME (pad));
+
+  return FALSE;
+}
+
+/**
  * gst_pad_get_bufferpool:
  * @pad: a #GstPad to get the bufferpool from.
  *
- * Gets the bufferpool of the peer pad of the given pad.
+ * Gets the bufferpool of the peer pad of the given pad.Note that
+ * a bufferpool can only be obtained from a srcpad.
  *
  * Returns: the #GstBufferPool, or NULL in case of an error.
  */
@@ -1848,22 +2099,23 @@ gst_pad_get_bufferpool (GstPad *pad)
 
   g_return_val_if_fail (pad != NULL, NULL);
   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
+  g_return_val_if_fail (GST_PAD_IS_SRC (pad), NULL);
    
   peer = GST_RPAD_PEER (pad);
 
   if (!peer)
     return NULL;
 
-  GST_DEBUG_ENTER ("(%s:%s)", GST_DEBUG_PAD_NAME (pad));
+  GST_CAT_DEBUG (GST_CAT_BUFFER, "(%s:%s): getting bufferpool", GST_DEBUG_PAD_NAME (pad));
 
   if (peer->bufferpoolfunc) {
-    GST_DEBUG (GST_CAT_PADS, 
+    GST_CAT_DEBUG (GST_CAT_PADS, 
               "calling bufferpoolfunc &%s (@%p) of peer pad %s:%s",
                GST_DEBUG_FUNCPTR_NAME (peer->bufferpoolfunc), 
               &peer->bufferpoolfunc, GST_DEBUG_PAD_NAME (((GstPad*) peer)));
     return (peer->bufferpoolfunc) (((GstPad*) peer));
   } else {
-    GST_DEBUG (GST_CAT_PADS, "no bufferpoolfunc for peer pad %s:%s at %p",
+    GST_CAT_DEBUG (GST_CAT_PADS, "no bufferpoolfunc for peer pad %s:%s at %p",
               GST_DEBUG_PAD_NAME (((GstPad*) peer)), &peer->bufferpoolfunc);
     return NULL;
   }
@@ -1874,20 +2126,13 @@ gst_real_pad_dispose (GObject *object)
 {
   GstPad *pad = GST_PAD (object);
   
-  /* No connected pad can ever be disposed.
-   * It has to have a parent to be connected 
+  /* No linked pad can ever be disposed.
+   * It has to have a parent to be linked 
    * and a parent would hold a reference */
   g_assert (GST_PAD_PEER (pad) == NULL);
 
-  GST_DEBUG (GST_CAT_REFCOUNTING, "dispose %s:%s", GST_DEBUG_PAD_NAME(pad));
+  GST_CAT_DEBUG (GST_CAT_REFCOUNTING, "dispose %s:%s", GST_DEBUG_PAD_NAME(pad));
 
-  if (GST_PAD_PAD_TEMPLATE (pad)){
-    GST_DEBUG (GST_CAT_REFCOUNTING, "unreffing padtemplate'%s'", 
-              GST_OBJECT_NAME (GST_PAD_PAD_TEMPLATE (pad)));
-    gst_object_unref (GST_OBJECT (GST_PAD_PAD_TEMPLATE (pad)));
-    GST_PAD_PAD_TEMPLATE (pad) = NULL;
-  }
-  
   /* we destroy the ghostpads, because they are nothing without the real pad */
   if (GST_REAL_PAD (pad)->ghostpads) {
     GList *orig, *ghostpads;
@@ -1898,7 +2143,7 @@ gst_real_pad_dispose (GObject *object)
       GstPad *ghostpad = GST_PAD (ghostpads->data);
 
       if (GST_IS_ELEMENT (GST_OBJECT_PARENT (ghostpad))){
-        GST_DEBUG (GST_CAT_REFCOUNTING, "removing ghost pad from element '%s'", 
+        GST_CAT_DEBUG (GST_CAT_REFCOUNTING, "removing ghost pad from element '%s'", 
                   GST_OBJECT_NAME (GST_OBJECT_PARENT (ghostpad)));
 
         gst_element_remove_ghost_pad (GST_ELEMENT (GST_OBJECT_PARENT (ghostpad)), GST_PAD (ghostpad));
@@ -1909,8 +2154,11 @@ gst_real_pad_dispose (GObject *object)
     g_list_free (GST_REAL_PAD(pad)->ghostpads);
   }
 
+  gst_caps_replace (&GST_PAD_CAPS (pad), NULL);
+  gst_caps_replace (&GST_RPAD_APPFILTER (pad), NULL);
+
   if (GST_IS_ELEMENT (GST_OBJECT_PARENT (pad))) {
-    GST_DEBUG (GST_CAT_REFCOUNTING, "removing pad from element '%s'",
+    GST_CAT_DEBUG (GST_CAT_REFCOUNTING, "removing pad from element '%s'",
                GST_OBJECT_NAME (GST_OBJECT (GST_ELEMENT (GST_OBJECT_PARENT (pad)))));
     
     gst_element_remove_pad (GST_ELEMENT (GST_OBJECT_PARENT (pad)), pad);
@@ -1923,15 +2171,15 @@ gst_real_pad_dispose (GObject *object)
 #ifndef GST_DISABLE_LOADSAVE
 /* FIXME: why isn't this on a GstElement ? */
 /**
- * gst_pad_load_and_connect:
+ * gst_pad_load_and_link:
  * @self: an #xmlNodePtr to read the description from.
  * @parent: the #GstObject element that owns the pad.
  *
- * Reads the pad definition from the XML node and connects the given pad
+ * Reads the pad definition from the XML node and links the given pad
  * in the element to a pad of an element up in the hierarchy.
  */
 void
-gst_pad_load_and_connect (xmlNodePtr self, GstObject *parent)
+gst_pad_load_and_link (xmlNodePtr self, GstObject *parent)
 {
   xmlNodePtr field = self->xmlChildrenNode;
   GstPad *pad = NULL, *targetpad;
@@ -1957,8 +2205,8 @@ gst_pad_load_and_connect (xmlNodePtr self, GstObject *parent)
   split = g_strsplit (peer, ".", 2);
 
   if (split[0] == NULL || split[1] == NULL) {
-    GST_DEBUG (GST_CAT_XML, 
-              "Could not parse peer '%s' for pad %s:%s, leaving unconnected",
+    GST_CAT_DEBUG (GST_CAT_XML, 
+              "Could not parse peer '%s' for pad %s:%s, leaving unlinked",
                peer, GST_DEBUG_PAD_NAME (pad));
     return;
   }
@@ -1980,7 +2228,7 @@ gst_pad_load_and_connect (xmlNodePtr self, GstObject *parent)
 
   if (targetpad == NULL) goto cleanup;
 
-  gst_pad_connect (pad, targetpad);
+  gst_pad_link (pad, targetpad);
 
 cleanup:
   g_strfreev (split);
@@ -2024,12 +2272,10 @@ gst_pad_save_thyself (GstObject *object, xmlNodePtr parent)
 }
 
 /* FIXME: shouldn't pad and ghost be switched ?
- * FIXME: shouldn't the bin argument be dumped ?
  */
 /**
  * gst_ghost_pad_save_thyself:
  * @pad: a ghost #GstPad to save.
- * @bin: the #bin
  * @parent: the parent #xmlNodePtr to save the description in.
  *
  * Saves the ghost pad into an xml representation.
@@ -2063,30 +2309,40 @@ gst_ghost_pad_save_thyself (GstPad *pad, xmlNodePtr parent)
 void 
 gst_pad_push (GstPad *pad, GstBuffer *buf) 
 {
-  GstRealPad *peer = GST_RPAD_PEER (pad);
+  GstRealPad *peer;
+  GstData *data = GST_DATA(buf);
 
-  GST_DEBUG_ENTER ("(%s:%s)", GST_DEBUG_PAD_NAME (pad));
+  g_assert (GST_IS_PAD (pad));
+  GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, pad, "pushing");
 
   g_return_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SRC);
 
-  if (!gst_probe_dispatcher_dispatch (&(GST_REAL_PAD (pad)->probedisp), GST_DATA (buf)))
+  if (!gst_probe_dispatcher_dispatch (&(GST_REAL_PAD (pad)->probedisp), &data))
     return;
 
+  peer = GST_RPAD_PEER (pad);
+
   if (!peer) {
-    g_warning ("push on pad %s:%s but it is unconnected", 
+    g_warning ("push on pad %s:%s but it is unlinked", 
               GST_DEBUG_PAD_NAME (pad));
   }
   else {
+    if (!GST_IS_EVENT (data) && !GST_PAD_IS_ACTIVE (peer)) {
+      g_warning ("push on peer of pad %s:%s but peer is not active", 
+                GST_DEBUG_PAD_NAME (pad));
+      return;
+    }
+
     if (peer->chainhandler) {
-      if (buf) {
-        GST_DEBUG (GST_CAT_DATAFLOW, 
+      if (data) {
+        GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, pad,
                   "calling chainhandler &%s of peer pad %s:%s",
                    GST_DEBUG_FUNCPTR_NAME (peer->chainhandler), 
                   GST_DEBUG_PAD_NAME (GST_PAD (peer)));
-        if (!gst_probe_dispatcher_dispatch (&peer->probedisp, GST_DATA (buf)))
+        if (!gst_probe_dispatcher_dispatch (&peer->probedisp, &data))
           return;
 
-        (peer->chainhandler) (GST_PAD_CAST (peer), buf);
+        (peer->chainhandler) (GST_PAD_CAST (peer), (GstBuffer *)data);
        return;
       }
       else {
@@ -2101,7 +2357,7 @@ gst_pad_push (GstPad *pad, GstBuffer *buf)
     }
   }
   /* clean up the mess here */
-  if (buf != NULL) gst_data_unref (GST_DATA (buf));
+  if (data != NULL) gst_data_unref (data);
 }
 
 /**
@@ -2116,50 +2372,51 @@ GstBuffer*
 gst_pad_pull (GstPad *pad) 
 {
   GstRealPad *peer;
-
-  peer = GST_RPAD_PEER (pad);
   
-  GST_DEBUG_ENTER("(%s:%s)",GST_DEBUG_PAD_NAME(pad));
+  GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, pad, "pulling");
+
+  g_return_val_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SINK, 
+                       GST_BUFFER (gst_event_new (GST_EVENT_INTERRUPT)));
 
-  g_return_val_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SINK, NULL);
+  peer = GST_RPAD_PEER (pad);
 
   if (!peer) {
     gst_element_error (GST_PAD_PARENT (pad), 
-                      "pull on pad %s:%s but it was unconnected", 
+                      "pull on pad %s:%s but it was unlinked", 
                       GST_ELEMENT_NAME (GST_PAD_PARENT (pad)), 
                       GST_PAD_NAME (pad), NULL);
   }
   else {
+restart:
     if (peer->gethandler) {
-      GstBuffer *buf;
+      GstData *data;
 
-      GST_DEBUG (GST_CAT_DATAFLOW, "calling gethandler %s of peer pad %s:%s",
-                 GST_DEBUG_FUNCPTR_NAME (peer->gethandler), 
-                GST_DEBUG_PAD_NAME (peer));
+      GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, pad, 
+                         "calling gethandler %s of peer pad %s:%s",
+                                 GST_DEBUG_FUNCPTR_NAME (peer->gethandler), 
+                         GST_DEBUG_PAD_NAME (peer));
 
-      buf = (peer->gethandler) (GST_PAD_CAST (peer));
+      data = GST_DATA((peer->gethandler) (GST_PAD_CAST (peer)));
 
-      if (buf) {
-        if (!gst_probe_dispatcher_dispatch (&peer->probedisp, GST_DATA (buf)))
-          return NULL;
-
-        return buf;
+      if (data) {
+        if (!gst_probe_dispatcher_dispatch (&peer->probedisp, &data))
+          goto restart;
+        return GST_BUFFER(data);
       }
 
       /* no null buffers allowed */
       gst_element_error (GST_PAD_PARENT (pad), 
                         "NULL buffer during pull on %s:%s", 
-                        GST_DEBUG_PAD_NAME (pad), NULL);
+                        GST_DEBUG_PAD_NAME (pad));
          
     } else {
       gst_element_error (GST_PAD_PARENT (pad), 
                         "internal error: pull on pad %s:%s "
                         "but the peer pad %s:%s has no gethandler", 
-                        GST_DEBUG_PAD_NAME (pad), GST_DEBUG_PAD_NAME (peer),
-                        NULL);
+                        GST_DEBUG_PAD_NAME (pad), GST_DEBUG_PAD_NAME (peer));
     }
   }
-  return NULL;
+  return GST_BUFFER (gst_event_new (GST_EVENT_INTERRUPT));
 }
 
 /**
@@ -2222,6 +2479,7 @@ gst_pad_selectv (GstPad *pad, ...)
  */
 static void            gst_pad_template_class_init     (GstPadTemplateClass *klass);
 static void            gst_pad_template_init           (GstPadTemplate *templ);
+static void            gst_pad_template_dispose        (GObject *object);
 
 GType
 gst_pad_template_get_type (void)
@@ -2259,6 +2517,8 @@ gst_pad_template_class_init (GstPadTemplateClass *klass)
                  NULL, NULL, gst_marshal_VOID__POINTER, G_TYPE_NONE, 1,
                   G_TYPE_POINTER);
 
+  gobject_class->dispose = gst_pad_template_dispose;
+
   gstobject_class->path_string_separator = "*";
 }
 
@@ -2267,6 +2527,17 @@ gst_pad_template_init (GstPadTemplate *templ)
 {
 }
 
+static void
+gst_pad_template_dispose (GObject *object)
+{
+  GstPadTemplate *templ = GST_PAD_TEMPLATE (object);
+
+  g_free (GST_PAD_TEMPLATE_NAME_TEMPLATE (templ));
+  gst_caps_unref (GST_PAD_TEMPLATE_CAPS (templ));
+
+  G_OBJECT_CLASS (padtemplate_parent_class)->dispose (object);
+}
+
 /* ALWAYS padtemplates cannot have conversion specifications, it doesn't make
  * sense.
  * SOMETIMES padtemplates can do whatever they want, they are provided by the
@@ -2309,12 +2580,12 @@ name_is_valid (const gchar *name, GstPadPresence presence)
 }
 
 /**
- * gst_pad_template_new:
+ * gst_pad_template_newv:
  * @name_template: the name template.
  * @direction: the #GstPadDirection of the template.
  * @presence: the #GstPadPresence of the pad.
  * @caps: a #GstCaps set for the template.
- * @...: a NULL-terminated list of #GstCaps.
+ * @var_args: a NULL-terminated list of #GstCaps.
  *
  * Creates a new pad template with a name according to the given template
  * and with the given arguments.
@@ -2322,12 +2593,11 @@ name_is_valid (const gchar *name, GstPadPresence presence)
  * Returns: a new #GstPadTemplate.
  */
 GstPadTemplate*
-gst_pad_template_new (const gchar *name_template,
-                    GstPadDirection direction, GstPadPresence presence,
-                    GstCaps *caps, ...)
+gst_pad_template_newv (const gchar *name_template,
+                      GstPadDirection direction, GstPadPresence presence,
+                      GstCaps *caps, va_list var_args)
 {
   GstPadTemplate *new;
-  va_list var_args;
   GstCaps *thecaps = NULL;
 
   g_return_val_if_fail (name_template != NULL, NULL);
@@ -2343,16 +2613,49 @@ gst_pad_template_new (const gchar *name_template,
   GST_PAD_TEMPLATE_DIRECTION (new) = direction;
   GST_PAD_TEMPLATE_PRESENCE (new) = presence;
 
-  va_start (var_args, caps);
-
+  GST_FLAG_SET (GST_OBJECT (new), GST_PAD_TEMPLATE_FIXED);
   while (caps) {
-    new->fixed &= caps->fixed;
-    thecaps = gst_caps_append (thecaps, gst_caps_ref (caps));
+    if (!GST_CAPS_IS_FIXED (caps)) {
+      GST_FLAG_UNSET (GST_OBJECT (new), GST_PAD_TEMPLATE_FIXED);
+    }
+    thecaps = gst_caps_append (thecaps, caps);
     caps = va_arg (var_args, GstCaps*);
   }
-  va_end (var_args);
   
   GST_PAD_TEMPLATE_CAPS (new) = thecaps;
+  gst_caps_ref (thecaps);
+  gst_caps_sink (thecaps);
+
+  return new;
+}
+
+/**
+ * gst_pad_template_new:
+ * @name_template: the name template.
+ * @direction: the #GstPadDirection of the template.
+ * @presence: the #GstPadPresence of the pad.
+ * @caps: a #GstCaps set for the template.
+ * @...: a NULL-terminated list of #GstCaps.
+ *
+ * Creates a new pad template with a name according to the given template
+ * and with the given arguments.
+ *
+ * Returns: a new #GstPadTemplate.
+ */
+GstPadTemplate*
+gst_pad_template_new (const gchar *name_template,
+                    GstPadDirection direction, GstPadPresence presence,
+                    GstCaps *caps, ...)
+{
+  GstPadTemplate *new;
+  va_list var_args;
+
+  va_start (var_args, caps);
+
+  new = gst_pad_template_newv (name_template, direction, presence, 
+                               caps, var_args);
+
+  va_end (var_args);
 
   return new;
 }
@@ -2363,14 +2666,15 @@ gst_pad_template_new (const gchar *name_template,
  *
  * Gets the capabilities of the pad template.
  *
- * Returns: the #GstCaps of the pad template.
+ * Returns: the #GstCaps of the pad template. unref the caps
+ * after use.
  */
 GstCaps*
 gst_pad_template_get_caps (GstPadTemplate *templ)
 {
   g_return_val_if_fail (templ != NULL, NULL);
 
-  return GST_PAD_TEMPLATE_CAPS (templ);
+  return gst_caps_ref (GST_PAD_TEMPLATE_CAPS (templ));
 }
 
 /**
@@ -2405,8 +2709,9 @@ gst_pad_get_element_private (GstPad *pad)
 /***** ghost pads *****/
 GType _gst_ghost_pad_type = 0;
 
-static void     gst_ghost_pad_class_init         (GstGhostPadClass *klass);
-static void     gst_ghost_pad_init               (GstGhostPad *pad);
+static void     gst_ghost_pad_class_init        (GstGhostPadClass *klass);
+static void     gst_ghost_pad_init              (GstGhostPad *pad);
+static void     gst_ghost_pad_dispose          (GObject *object);
 
 static GstPad *ghost_pad_parent_class = NULL;
 /* static guint gst_ghost_pad_signals[LAST_SIGNAL] = { 0 }; */
@@ -2437,12 +2742,24 @@ gst_ghost_pad_class_init (GstGhostPadClass *klass)
   gobject_class = (GObjectClass*) klass;
 
   ghost_pad_parent_class = g_type_class_ref (GST_TYPE_PAD);
+
+  gobject_class->dispose = GST_DEBUG_FUNCPTR (gst_ghost_pad_dispose);
 }
 
 static void
 gst_ghost_pad_init (GstGhostPad *pad)
 {
-  pad->realpad = NULL;
+  /* zeroed by glib */
+}
+static void
+gst_ghost_pad_dispose (GObject *object)
+{
+  GstGhostPad *pad = GST_GHOST_PAD (object);
+
+  if (pad->realpad)
+    gst_pad_remove_ghost_pad((GstPad *) pad->realpad, (GstPad *) pad);
+
+  G_OBJECT_CLASS (ghost_pad_parent_class)->dispose (object);
 }
 
 /**
@@ -2475,24 +2792,24 @@ gst_ghost_pad_new (const gchar *name,
     realpad = GST_PAD_REALIZE (realpad);
   }
   GST_GPAD_REALPAD (ghostpad) = realpad;
-  GST_PAD_PAD_TEMPLATE (ghostpad) = GST_PAD_PAD_TEMPLATE (pad);
+  gst_pad_set_pad_template (GST_PAD (ghostpad), GST_PAD_PAD_TEMPLATE (pad));
 
   /* add ourselves to the real pad's list of ghostpads */
   gst_pad_add_ghost_pad (pad, GST_PAD (ghostpad));
 
   /* FIXME need to ref the real pad here... ? */
 
-  GST_DEBUG (GST_CAT_PADS, "created ghost pad \"%s\"", 
+  GST_CAT_DEBUG (GST_CAT_PADS, "created ghost pad \"%s\"", 
              gst_pad_get_name (GST_PAD (ghostpad)));
 
   return GST_PAD (ghostpad);
 }
 
 /**
- * gst_pad_get_internal_connections_default:
- * @pad: the #GstPad to get the internal connections of.
+ * gst_pad_get_internal_links_default:
+ * @pad: the #GstPad to get the internal links of.
  *
- * Gets a list of pads to which the given pad is connected to
+ * Gets a list of pads to which the given pad is linked to
  * inside of the parent element.
  * This is the default handler, and thus returns a list of all of the
  * pads inside the parent element with opposite direction.
@@ -2501,7 +2818,7 @@ gst_ghost_pad_new (const gchar *name,
  * Returns: a newly allocated #GList of pads.
  */
 GList*
-gst_pad_get_internal_connections_default (GstPad *pad)
+gst_pad_get_internal_links_default (GstPad *pad)
 {
   GList *res = NULL;
   GstElement *parent;
@@ -2531,17 +2848,17 @@ gst_pad_get_internal_connections_default (GstPad *pad)
 }
 
 /**
- * gst_pad_get_internal_connections:
- * @pad: the #GstPad to get the internal connections of.
+ * gst_pad_get_internal_links:
+ * @pad: the #GstPad to get the internal links of.
  *
- * Gets a list of pads to which the given pad is connected to
+ * Gets a list of pads to which the given pad is linked to
  * inside of the parent element.
  * The caller must free this list after use.
  *
  * Returns: a newly allocated #GList of pads.
  */
 GList*
-gst_pad_get_internal_connections (GstPad *pad)
+gst_pad_get_internal_links (GstPad *pad)
 {
   GList *res = NULL;
   GstRealPad *rpad;
@@ -2550,8 +2867,8 @@ gst_pad_get_internal_connections (GstPad *pad)
 
   rpad = GST_PAD_REALIZE (pad);
 
-  if (GST_RPAD_INTCONNFUNC (rpad))
-    res = GST_RPAD_INTCONNFUNC (rpad) (GST_PAD_CAST (rpad));
+  if (GST_RPAD_INTLINKFUNC (rpad))
+    res = GST_RPAD_INTLINKFUNC (rpad) (GST_PAD_CAST (rpad));
 
   return res;
 }
@@ -2561,15 +2878,16 @@ static gboolean
 gst_pad_event_default_dispatch (GstPad *pad, GstElement *element, 
                                 GstEvent *event)
 {
-  GList *pads = element->pads;
+  GList *orig, *pads;
+
+  orig = pads = gst_pad_get_internal_links (pad);
 
   while (pads) {
     GstPad *eventpad = GST_PAD (pads->data);
     pads = g_list_next (pads);
 
-    /* for all pads in the opposite direction that are connected */
-    if (GST_PAD_DIRECTION (eventpad) != GST_PAD_DIRECTION (pad) 
-     && GST_PAD_IS_USABLE (eventpad)) {
+    /* for all pads in the opposite direction that are linked */
+    if (GST_PAD_IS_LINKED (eventpad)) {
       if (GST_PAD_DIRECTION (eventpad) == GST_PAD_SRC) {
        /* increase the refcount */
         gst_event_ref (event);
@@ -2580,11 +2898,13 @@ gst_pad_event_default_dispatch (GstPad *pad, GstElement *element,
 
        /* we only send the event on one pad, multi-sinkpad elements 
         * should implement a handler */
+        g_list_free (orig);
         return gst_pad_send_event (peerpad, event);
       }
     }
   }
   gst_event_unref (event);
+  g_list_free (orig);
   return TRUE;
 }
 
@@ -2611,11 +2931,17 @@ gst_pad_event_default (GstPad *pad, GstEvent *event)
     case GST_EVENT_EOS:
       gst_pad_event_default_dispatch (pad, element, event);
       gst_element_set_eos (element);
-      /* we have to try to schedule another element 
-       * because this one is disabled */
-      gst_element_yield (element);
       break;
     case GST_EVENT_DISCONTINUOUS:
+    {
+      guint64 time;
+             
+      if (gst_event_discont_get_value (event, GST_FORMAT_TIME, &time)) {
+       if (gst_element_requires_clock (element) && element->clock) {
+         gst_clock_handle_discont (element->clock, time); 
+       }
+      }
+    }
     case GST_EVENT_FLUSH:
     default:
       return gst_pad_event_default_dispatch (pad, element, event);
@@ -2630,7 +2956,7 @@ gst_pad_event_default (GstPad *pad, GstEvent *event)
  * @data: gpointer user data passed to the dispatcher function.
  *
  * Invokes the given dispatcher function on all pads that are 
- * internally connected to the given pad. 
+ * internally linked to the given pad. 
  * The GstPadDispatcherFunction should return TRUE when no further pads 
  * need to be processed.
  *
@@ -2646,13 +2972,13 @@ gst_pad_dispatcher (GstPad *pad, GstPadDispatcherFunction dispatch,
   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
   g_return_val_if_fail (data, FALSE);
 
-  orig = int_pads = gst_pad_get_internal_connections (pad);
+  orig = int_pads = gst_pad_get_internal_links (pad);
 
   while (int_pads) {
     GstRealPad *int_rpad = GST_PAD_REALIZE (int_pads->data);
     GstRealPad *int_peer = GST_RPAD_PEER (int_rpad);
 
-    if (int_peer && GST_PAD_IS_USABLE (int_peer)) {
+    if (int_peer) {
       res = dispatch (GST_PAD_CAST (int_peer), data);
       if (res)
         break;
@@ -2685,21 +3011,16 @@ gst_pad_send_event (GstPad *pad, GstEvent *event)
 
   rpad = GST_PAD_REALIZE (pad);
 
-  /* don't send events on usuable pads */
-  if (GST_PAD_IS_SINK (rpad) && !GST_PAD_IS_USABLE (rpad)) 
-    return FALSE;
-
   if (GST_EVENT_SRC (event) == NULL)
     GST_EVENT_SRC (event) = gst_object_ref (GST_OBJECT (rpad));
 
-  GST_DEBUG (GST_CAT_EVENT, "have event %d on pad %s:%s",
+  GST_CAT_DEBUG (GST_CAT_EVENT, "have event %d on pad %s:%s",
                  GST_EVENT_TYPE (event), GST_DEBUG_PAD_NAME (rpad));
 
-  if (GST_RPAD_EVENTFUNC (rpad))
-    success = GST_RPAD_EVENTFUNC (rpad) (GST_PAD_CAST (rpad), event);
+  if (GST_RPAD_EVENTHANDLER (rpad))
+    success = GST_RPAD_EVENTHANDLER (rpad) (GST_PAD_CAST (rpad), event);
   else {
-    GST_DEBUG (GST_CAT_EVENT, "there's no event function for pad %s:%s", 
-              GST_DEBUG_PAD_NAME (rpad));
+    g_warning ("pad %s:%s has no event handler", GST_DEBUG_PAD_NAME (rpad));
     gst_event_unref (event);
   }
 
@@ -2731,7 +3052,7 @@ gst_pad_convert_dispatcher (GstPad *pad, GstPadConvertData *data)
  *
  * Invokes the default converter on a pad. 
  * This will forward the call to the pad obtained 
- * using the internal connection of
+ * using the internal link of
  * the element.
  *
  * Returns: TRUE if the conversion could be performed.
@@ -2796,7 +3117,7 @@ gst_pad_convert (GstPad *pad,
 
 typedef struct 
 {
-  GstPadQueryType type;
+  GstQueryType           type;
   GstFormat     *format;
   gint64        *value;
 } GstPadQueryData;
@@ -2810,7 +3131,7 @@ gst_pad_query_dispatcher (GstPad *pad, GstPadQueryData *data)
 /**
  * gst_pad_query_default:
  * @pad: a #GstPad to invoke the default query on.
- * @type: the #GstPadQueryType of the query to perform.
+ * @type: the #GstQueryType of the query to perform.
  * @format: a pointer to the #GstFormat of the result.
  * @value: a pointer to the result.
  *
@@ -2819,7 +3140,7 @@ gst_pad_query_dispatcher (GstPad *pad, GstPadQueryData *data)
  * Returns: TRUE if the query could be performed.
  */
 gboolean
-gst_pad_query_default (GstPad *pad, GstPadQueryType type,
+gst_pad_query_default (GstPad *pad, GstQueryType type,
                       GstFormat *format,  gint64 *value)
 {
   GstPadQueryData data;
@@ -2839,16 +3160,20 @@ gst_pad_query_default (GstPad *pad, GstPadQueryType type,
 /**
  * gst_pad_query:
  * @pad: a #GstPad to invoke the default query on.
- * @type: the #GstPadQueryType of the query to perform.
- * @format: a pointer to the #GstFormat of the result.
+ * @type: the #GstQueryType of the query to perform.
+ * @format: a pointer to the #GstFormat asked for.
+ *          On return contains the #GstFormat used.
  * @value: a pointer to the result.
  *
- * Queries a pad for one of the available properties.
+ * Queries a pad for one of the available properties. The format will be
+ * adjusted to the actual format used when specifying formats such as 
+ * GST_FORMAT_DEFAULT.
+ * FIXME: Tell if the format can be adjusted when specifying a definite format.
  *
  * Returns: TRUE if the query could be performed.
  */
 gboolean
-gst_pad_query (GstPad *pad, GstPadQueryType type,
+gst_pad_query (GstPad *pad, GstQueryType type,
               GstFormat *format, gint64 *value) 
 {
   GstRealPad *rpad;
@@ -2867,25 +3192,6 @@ gst_pad_query (GstPad *pad, GstPadQueryType type,
   return FALSE;
 }
 
-gboolean
-gst_pad_handles_format (GstPad *pad, GstFormat format)
-{
-  const GstFormat *formats;
-
-  formats = gst_pad_get_formats (pad);
-  if (!formats)
-    return FALSE;
-
-  while (*formats) {
-    if (*formats == format)
-      return TRUE;
-
-    formats++;
-  }
-
-  return FALSE;
-}
-
 static gboolean
 gst_pad_get_formats_dispatcher (GstPad *pad, const GstFormat **data)
 {
@@ -2894,6 +3200,14 @@ gst_pad_get_formats_dispatcher (GstPad *pad, const GstFormat **data)
   return TRUE;
 }
 
+/**
+ * gst_pad_get_formats_default:
+ * @pad: a #GstPad to query
+ *
+ * Invoke the default format dispatcher for the pad.
+ *
+ * Returns: An array of GstFormats ended with a 0 value.
+ */
 const GstFormat*
 gst_pad_get_formats_default (GstPad *pad)
 {
@@ -2905,6 +3219,14 @@ gst_pad_get_formats_default (GstPad *pad)
   return result;
 }
 
+/**
+ * gst_pad_get_formats:
+ * @pad: a #GstPad to query
+ *
+ * Gets the list of supported formats from the pad.
+ *
+ * Returns: An array of GstFormats ended with a 0 value.
+ */
 const GstFormat*
 gst_pad_get_formats (GstPad *pad)
 {
@@ -2919,4 +3241,3 @@ gst_pad_get_formats (GstPad *pad)
 
   return NULL;
 }
-