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/hermes | |
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/hermes')
-rw-r--r-- | ext/hermes/gstcolorspace.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/hermes/gstcolorspace.c b/ext/hermes/gstcolorspace.c index 933571a5..484c7e3c 100644 --- a/ext/hermes/gstcolorspace.c +++ b/ext/hermes/gstcolorspace.c @@ -91,11 +91,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 @@ -286,7 +286,7 @@ gst_colorspace_getcaps (GstPad *pad, GstCaps *caps) return result; } -static GstPadConnectReturn +static GstPadLinkReturn gst_colorspace_sinkconnect (GstPad *pad, GstCaps *caps) { GstColorspace *space; @@ -316,13 +316,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; |