summaryrefslogtreecommitdiffstats
path: root/ext/lcs
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
commit8e3c533fcf5c7dfc365871c3601008a0cb06ce42 (patch)
treee0073ff6181158d646c682d8b30ea5ac576a6d0b /ext/lcs
parent177c0e8da2b074fb797c16f674dcd6544579e454 (diff)
downloadgst-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/lcs')
-rw-r--r--ext/lcs/gstcolorspace.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/lcs/gstcolorspace.c b/ext/lcs/gstcolorspace.c
index 43591fcb..ff9e43b0 100644
--- a/ext/lcs/gstcolorspace.c
+++ b/ext/lcs/gstcolorspace.c
@@ -129,11 +129,11 @@ static void gst_colorspace_set_property (GObject *object, guint prop_id,
static void gst_colorspace_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec);
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_colorspace_sinkconnect (GstPad *pad, GstCaps *caps);
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_colorspace_srcconnect (GstPad *pad, GstCaps *caps);
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_colorspace_srcconnect_func (GstPad *pad, GstCaps *caps, gboolean newcaps);
static void gst_colorspace_chain (GstPad *pad, GstBuffer *buf);
static GstElementStateReturn
@@ -243,7 +243,7 @@ gst_colorspace_getcaps (GstPad *pad, GstCaps *caps)
return result;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_colorspace_sinkconnect (GstPad *pad, GstCaps *caps)
{
GstColorspace *space;
@@ -273,13 +273,13 @@ gst_colorspace_sinkconnect (GstPad *pad, GstCaps *caps)
return GST_PAD_LINK_OK;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_colorspace_srcconnect (GstPad *pad, GstCaps *caps)
{
return gst_colorspace_srcconnect_func (pad, caps, TRUE);
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_colorspace_srcconnect_func (GstPad *pad, GstCaps *caps, gboolean newcaps)
{
GstColorspace *space;