summaryrefslogtreecommitdiffstats
path: root/ext/ladspa
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2003-01-10 13:38:32 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2003-01-10 13:38:32 +0000
commitc2a01f482c7ff39d41e20264df2ca92cd60bc883 (patch)
tree3343e5e11d828e153c01027b6751df772deea4d3 /ext/ladspa
parentbe876ae57756d21690adfc29cc16c1791643be23 (diff)
PadConnect -> PadLink
Original commit message from CVS: PadConnect -> PadLink
Diffstat (limited to 'ext/ladspa')
-rw-r--r--ext/ladspa/gstladspa.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/ladspa/gstladspa.c b/ext/ladspa/gstladspa.c
index 02b4609c..7f941b81 100644
--- a/ext/ladspa/gstladspa.c
+++ b/ext/ladspa/gstladspa.c
@@ -72,8 +72,8 @@ static void gst_ladspa_class_init (GstLADSPAClass *klass);
static void gst_ladspa_init (GstLADSPA *ladspa);
static void gst_ladspa_update_int(const GValue *value, gpointer data);
-static GstPadConnectReturn gst_ladspa_connect (GstPad *pad, GstCaps *caps);
-static GstPadConnectReturn gst_ladspa_connect_get (GstPad *pad, GstCaps *caps);
+static GstPadLinkReturn gst_ladspa_connect (GstPad *pad, GstCaps *caps);
+static GstPadLinkReturn gst_ladspa_connect_get (GstPad *pad, GstCaps *caps);
static void gst_ladspa_force_src_caps (GstLADSPA *ladspa, GstPad *pad);
static void gst_ladspa_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
@@ -482,7 +482,7 @@ gst_ladspa_update_int(const GValue *value, gpointer data)
*target = (gfloat)g_value_get_int(value);
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_ladspa_connect (GstPad *pad, GstCaps *caps)
{
GstLADSPA *ladspa = (GstLADSPA *) GST_PAD_PARENT (pad);
@@ -516,7 +516,7 @@ gst_ladspa_connect (GstPad *pad, GstCaps *caps)
return GST_PAD_LINK_OK;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_ladspa_connect_get (GstPad *pad, GstCaps *caps)
{
GstLADSPA *ladspa = (GstLADSPA*)GST_OBJECT_PARENT (pad);