diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2003-01-10 13:38:32 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2003-01-10 13:38:32 +0000 |
commit | 8e3c533fcf5c7dfc365871c3601008a0cb06ce42 (patch) | |
tree | e0073ff6181158d646c682d8b30ea5ac576a6d0b /ext/ladspa | |
parent | 177c0e8da2b074fb797c16f674dcd6544579e454 (diff) | |
download | gst-plugins-bad-8e3c533fcf5c7dfc365871c3601008a0cb06ce42.tar.gz gst-plugins-bad-8e3c533fcf5c7dfc365871c3601008a0cb06ce42.tar.bz2 gst-plugins-bad-8e3c533fcf5c7dfc365871c3601008a0cb06ce42.zip |
PadConnect -> PadLink
Original commit message from CVS:
PadConnect -> PadLink
Diffstat (limited to 'ext/ladspa')
-rw-r--r-- | ext/ladspa/gstladspa.c | 8 |
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); |