summaryrefslogtreecommitdiffstats
path: root/ext
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 /ext
parentbe876ae57756d21690adfc29cc16c1791643be23 (diff)
PadConnect -> PadLink
Original commit message from CVS: PadConnect -> PadLink
Diffstat (limited to 'ext')
-rw-r--r--ext/aalib/gstaasink.c2
-rw-r--r--ext/esd/esdsink.c4
-rw-r--r--ext/flac/gstflacenc.c4
-rw-r--r--ext/ladspa/gstladspa.c8
-rw-r--r--ext/libpng/gstpngenc.c2
-rw-r--r--ext/shout2/gstshout2.c4
-rw-r--r--ext/speex/gstspeexdec.c4
-rw-r--r--ext/speex/gstspeexenc.c4
8 files changed, 16 insertions, 16 deletions
diff --git a/ext/aalib/gstaasink.c b/ext/aalib/gstaasink.c
index 6ff5eb47..8dff99a3 100644
--- a/ext/aalib/gstaasink.c
+++ b/ext/aalib/gstaasink.c
@@ -235,7 +235,7 @@ gst_aasink_class_init (GstAASinkClass *klass)
gstelement_class->set_clock = gst_aasink_set_clock;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_aasink_sinkconnect (GstPad *pad, GstCaps *caps)
{
GstAASink *aasink;
diff --git a/ext/esd/esdsink.c b/ext/esd/esdsink.c
index 8c1daae0..43fe8589 100644
--- a/ext/esd/esdsink.c
+++ b/ext/esd/esdsink.c
@@ -87,7 +87,7 @@ static gboolean gst_esdsink_open_audio (GstEsdsink *sink);
static void gst_esdsink_close_audio (GstEsdsink *sink);
static GstElementStateReturn gst_esdsink_change_state (GstElement *element);
static gboolean gst_esdsink_sync_parms (GstEsdsink *esdsink);
-static GstPadConnectReturn gst_esdsink_sinkconnect (GstPad *pad, GstCaps *caps);
+static GstPadLinkReturn gst_esdsink_sinkconnect (GstPad *pad, GstCaps *caps);
static void gst_esdsink_chain (GstPad *pad, GstBuffer *buf);
@@ -218,7 +218,7 @@ gst_esdsink_sync_parms (GstEsdsink *esdsink)
return gst_esdsink_open_audio (esdsink);
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_esdsink_sinkconnect (GstPad *pad, GstCaps *caps)
{
GstEsdsink *esdsink;
diff --git a/ext/flac/gstflacenc.c b/ext/flac/gstflacenc.c
index 73b7a08c..fec7d609 100644
--- a/ext/flac/gstflacenc.c
+++ b/ext/flac/gstflacenc.c
@@ -65,7 +65,7 @@ static void gst_flacenc_init (FlacEnc *flacenc);
static void gst_flacenc_class_init (FlacEncClass *klass);
static void gst_flacenc_dispose (GObject *object);
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_flacenc_sinkconnect (GstPad *pad, GstCaps *caps);
static void gst_flacenc_chain (GstPad *pad, GstBuffer *buf);
@@ -298,7 +298,7 @@ gst_flacenc_dispose (GObject *object)
G_OBJECT_CLASS (parent_class)->dispose (object);
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_flacenc_sinkconnect (GstPad *pad, GstCaps *caps)
{
FlacEnc *flacenc;
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);
diff --git a/ext/libpng/gstpngenc.c b/ext/libpng/gstpngenc.c
index 101396c0..78c27c57 100644
--- a/ext/libpng/gstpngenc.c
+++ b/ext/libpng/gstpngenc.c
@@ -108,7 +108,7 @@ gst_pngenc_class_init (GstPngEncClass * klass)
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_pngenc_sinkconnect (GstPad * pad, GstCaps * caps)
{
GstPngEnc *pngenc;
diff --git a/ext/shout2/gstshout2.c b/ext/shout2/gstshout2.c
index 45541ad0..4a056ab5 100644
--- a/ext/shout2/gstshout2.c
+++ b/ext/shout2/gstshout2.c
@@ -83,7 +83,7 @@ static void gst_shout2send_class_init (GstShout2sendClass *klass);
static void gst_shout2send_init (GstShout2send *shout2send);
static void gst_shout2send_chain (GstPad *pad, GstBuffer *buf);
-static GstPadConnectReturn gst_shout2send_connect (GstPad *pad, GstCaps *caps);
+static GstPadLinkReturn gst_shout2send_connect (GstPad *pad, GstCaps *caps);
static void gst_shout2send_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
static void gst_shout2send_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
@@ -353,7 +353,7 @@ gst_shout2send_get_property (GObject *object, guint prop_id, GValue *value, GPar
}
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_shout2send_connect (GstPad *pad, GstCaps *caps)
{
diff --git a/ext/speex/gstspeexdec.c b/ext/speex/gstspeexdec.c
index 062c68e2..924f0b02 100644
--- a/ext/speex/gstspeexdec.c
+++ b/ext/speex/gstspeexdec.c
@@ -49,7 +49,7 @@ static void gst_speexdec_class_init (GstSpeexDec *klass);
static void gst_speexdec_init (GstSpeexDec *speexdec);
static void gst_speexdec_chain (GstPad *pad, GstBuffer *buf);
-static GstPadConnectReturn gst_speexdec_sinkconnect (GstPad *pad, GstCaps *caps);
+static GstPadLinkReturn gst_speexdec_sinkconnect (GstPad *pad, GstCaps *caps);
static GstElementClass *parent_class = NULL;
/*static guint gst_speexdec_signals[LAST_SIGNAL] = { 0 }; */
@@ -100,7 +100,7 @@ gst_speexdec_init (GstSpeexDec *speexdec)
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_speexdec_sinkconnect (GstPad *pad, GstCaps *caps)
{
GstSpeexDec *speexdec;
diff --git a/ext/speex/gstspeexenc.c b/ext/speex/gstspeexenc.c
index a3f33e19..006700bd 100644
--- a/ext/speex/gstspeexenc.c
+++ b/ext/speex/gstspeexenc.c
@@ -50,7 +50,7 @@ static void gst_speexenc_class_init (GstSpeexEnc *klass);
static void gst_speexenc_init (GstSpeexEnc *speexenc);
static void gst_speexenc_chain (GstPad *pad,GstBuffer *buf);
-static GstPadConnectReturn gst_speexenc_sinkconnect (GstPad *pad, GstCaps *caps);
+static GstPadLinkReturn gst_speexenc_sinkconnect (GstPad *pad, GstCaps *caps);
static GstElementClass *parent_class = NULL;
static guint gst_speexenc_signals[LAST_SIGNAL] = { 0 };
@@ -114,7 +114,7 @@ gst_speexenc_init (GstSpeexEnc *speexenc)
speexenc->n_packets = 20;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_speexenc_sinkconnect (GstPad *pad, GstCaps *caps)
{
GstSpeexEnc *speexenc;