summaryrefslogtreecommitdiffstats
path: root/sys/oss
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 /sys/oss
parentbe876ae57756d21690adfc29cc16c1791643be23 (diff)
PadConnect -> PadLink
Original commit message from CVS: PadConnect -> PadLink
Diffstat (limited to 'sys/oss')
-rw-r--r--sys/oss/gstosssink.c4
-rw-r--r--sys/oss/gstosssrc.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/oss/gstosssink.c b/sys/oss/gstosssink.c
index 56b95e9a..63950051 100644
--- a/sys/oss/gstosssink.c
+++ b/sys/oss/gstosssink.c
@@ -55,7 +55,7 @@ static gboolean gst_osssink_query (GstElement *element, GstQueryType type,
static gboolean gst_osssink_sink_query (GstPad *pad, GstQueryType type,
GstFormat *format, gint64 *value);
-static GstPadConnectReturn gst_osssink_sinkconnect (GstPad *pad, GstCaps *caps);
+static GstPadLinkReturn gst_osssink_sinkconnect (GstPad *pad, GstCaps *caps);
static void gst_osssink_set_property (GObject *object, guint prop_id, const GValue *value,
GParamSpec *pspec);
@@ -230,7 +230,7 @@ gst_osssink_init (GstOssSink *osssink)
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_osssink_sinkconnect (GstPad *pad, GstCaps *caps)
{
GstOssSink *osssink = GST_OSSSINK (gst_pad_get_parent (pad));
diff --git a/sys/oss/gstosssrc.c b/sys/oss/gstosssrc.c
index a1cc8337..eed94888 100644
--- a/sys/oss/gstosssrc.c
+++ b/sys/oss/gstosssrc.c
@@ -85,7 +85,7 @@ GST_PAD_TEMPLATE_FACTORY (osssrc_src_factory,
static void gst_osssrc_class_init (GstOssSrcClass *klass);
static void gst_osssrc_init (GstOssSrc *osssrc);
-static GstPadConnectReturn gst_osssrc_srcconnect (GstPad *pad, GstCaps *caps);
+static GstPadLinkReturn gst_osssrc_srcconnect (GstPad *pad, GstCaps *caps);
static const GstFormat* gst_osssrc_get_formats (GstPad *pad);
static gboolean gst_osssrc_convert (GstPad *pad,
GstFormat src_format, gint64 src_value,
@@ -183,7 +183,7 @@ gst_osssrc_init (GstOssSrc *osssrc)
osssrc->curoffset = 0;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_osssrc_srcconnect (GstPad *pad, GstCaps *caps)
{
GstOssSrc *src;