summaryrefslogtreecommitdiffstats
path: root/gst/passthrough
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 /gst/passthrough
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 'gst/passthrough')
-rw-r--r--gst/passthrough/gstpassthrough.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/passthrough/gstpassthrough.c b/gst/passthrough/gstpassthrough.c
index f92790e0..1b45f156 100644
--- a/gst/passthrough/gstpassthrough.c
+++ b/gst/passthrough/gstpassthrough.c
@@ -90,7 +90,7 @@ static void passthrough_init (GstPassthrough *filter);
static void passthrough_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
static void passthrough_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
-static GstPadConnectReturn passthrough_connect_sink (GstPad *pad, GstCaps *caps);
+static GstPadLinkReturn passthrough_connect_sink (GstPad *pad, GstCaps *caps);
static void passthrough_chain (GstPad *pad, GstBuffer *buf);
static void inline passthrough_fast_float_chain (gfloat* data, guint numsamples);
@@ -109,7 +109,7 @@ passthrough_get_bufferpool (GstPad *pad)
return gst_pad_get_bufferpool (filter->srcpad);
}
-static GstPadConnectReturn
+static GstPadLinkReturn
passthrough_connect_sink (GstPad *pad, GstCaps *caps)
{
const gchar *format;