summaryrefslogtreecommitdiffstats
path: root/gst
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 /gst
parentbe876ae57756d21690adfc29cc16c1791643be23 (diff)
PadConnect -> PadLink
Original commit message from CVS: PadConnect -> PadLink
Diffstat (limited to 'gst')
-rw-r--r--gst/audiofx/audiowsincband.c6
-rw-r--r--gst/audiofx/audiowsinclimit.c6
-rw-r--r--gst/avi/gstavimux.c2
-rw-r--r--gst/cutter/gstcutter.c2
-rw-r--r--gst/effectv/gstaging.c2
-rw-r--r--gst/effectv/gstdice.c2
-rw-r--r--gst/effectv/gstedge.c2
-rw-r--r--gst/effectv/gstquark.c2
-rw-r--r--gst/effectv/gstrev.c2
-rw-r--r--gst/effectv/gstshagadelic.c2
-rw-r--r--gst/effectv/gstvertigo.c2
-rw-r--r--gst/effectv/gstwarp.c2
-rw-r--r--gst/goom/gstgoom.c4
-rw-r--r--gst/law/mulaw-decode.c2
-rw-r--r--gst/level/gstlevel.c2
-rw-r--r--gst/monoscope/gstmonoscope.c4
-rw-r--r--gst/udp/gstudpsink.c2
-rw-r--r--gst/videocrop/gstvideocrop.c4
-rw-r--r--gst/wavenc/gstwavenc.c2
19 files changed, 26 insertions, 26 deletions
diff --git a/gst/audiofx/audiowsincband.c b/gst/audiofx/audiowsincband.c
index 89c95f93..7ee8680b 100644
--- a/gst/audiofx/audiowsincband.c
+++ b/gst/audiofx/audiowsincband.c
@@ -102,7 +102,7 @@ static void gst_bpwsinc_get_property (GObject * object, guint prop_id,
GValue * value, GParamSpec * pspec);
static void gst_bpwsinc_chain (GstPad * pad, GstBuffer * buf);
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_bpwsinc_sink_connect (GstPad * pad, GstCaps * caps);
static GstElementClass *parent_class = NULL;
@@ -174,14 +174,14 @@ gst_bpwsinc_init (GstBPWSinc * filter)
filter->kernel = NULL;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_bpwsinc_sink_connect (GstPad * pad, GstCaps * caps)
{
int i = 0;
double sum = 0.0;
int len = 0;
double *kernel_lp, *kernel_hp;
- GstPadConnectReturn set_retval;
+ GstPadLinkReturn set_retval;
GstBPWSinc *filter = GST_BPWSINC (gst_pad_get_parent (pad));
diff --git a/gst/audiofx/audiowsinclimit.c b/gst/audiofx/audiowsinclimit.c
index 6be8e1ad..74cea70e 100644
--- a/gst/audiofx/audiowsinclimit.c
+++ b/gst/audiofx/audiowsinclimit.c
@@ -99,7 +99,7 @@ static void gst_lpwsinc_get_property (GObject * object, guint prop_id,
GValue * value, GParamSpec * pspec);
static void gst_lpwsinc_chain (GstPad * pad, GstBuffer * buf);
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_lpwsinc_sink_connect (GstPad * pad, GstCaps * caps);
static GstElementClass *parent_class = NULL;
@@ -165,14 +165,14 @@ gst_lpwsinc_init (GstLPWSinc * filter)
filter->kernel = NULL;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_lpwsinc_sink_connect (GstPad * pad, GstCaps * caps)
{
int i = 0;
double sum = 0.0;
int len = 0;
GstLPWSinc *filter = GST_LPWSINC (gst_pad_get_parent (pad));
- GstPadConnectReturn set_retval;
+ GstPadLinkReturn set_retval;
g_assert (GST_IS_PAD (pad));
g_assert (caps != NULL);
diff --git a/gst/avi/gstavimux.c b/gst/avi/gstavimux.c
index f66ea1d8..e1821c07 100644
--- a/gst/avi/gstavimux.c
+++ b/gst/avi/gstavimux.c
@@ -293,7 +293,7 @@ gst_avimux_init (GstAviMux *avimux)
gst_element_set_loop_function(GST_ELEMENT(avimux), gst_avimux_loop);
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_avimux_sinkconnect (GstPad *pad, GstCaps *vscaps)
{
GstAviMux *avimux;
diff --git a/gst/cutter/gstcutter.c b/gst/cutter/gstcutter.c
index 7627ff85..103f4d06 100644
--- a/gst/cutter/gstcutter.c
+++ b/gst/cutter/gstcutter.c
@@ -108,7 +108,7 @@ gst_cutter_get_type(void) {
return cutter_type;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_cutter_connect (GstPad *pad, GstCaps *caps)
{
GstCutter *filter;
diff --git a/gst/effectv/gstaging.c b/gst/effectv/gstaging.c
index 070c5f19..e60b49ec 100644
--- a/gst/effectv/gstaging.c
+++ b/gst/effectv/gstaging.c
@@ -149,7 +149,7 @@ gst_agingtv_class_init (GstAgingTVClass * klass)
gobject_class->get_property = gst_agingtv_get_property;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_agingtv_sinkconnect (GstPad * pad, GstCaps * caps)
{
GstAgingTV *filter;
diff --git a/gst/effectv/gstdice.c b/gst/effectv/gstdice.c
index 6f1e9f20..4286f07e 100644
--- a/gst/effectv/gstdice.c
+++ b/gst/effectv/gstdice.c
@@ -155,7 +155,7 @@ gst_dicetv_class_init (GstDiceTVClass * klass)
gobject_class->get_property = gst_dicetv_get_property;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_dicetv_sinkconnect (GstPad * pad, GstCaps * caps)
{
GstDiceTV *filter;
diff --git a/gst/effectv/gstedge.c b/gst/effectv/gstedge.c
index cc18aa20..4d25fddd 100644
--- a/gst/effectv/gstedge.c
+++ b/gst/effectv/gstedge.c
@@ -129,7 +129,7 @@ gst_edgetv_class_init (GstEdgeTVClass * klass)
gobject_class->get_property = gst_edgetv_get_property;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_edgetv_sinkconnect (GstPad * pad, GstCaps * caps)
{
GstEdgeTV *filter;
diff --git a/gst/effectv/gstquark.c b/gst/effectv/gstquark.c
index ac6ae719..c48cddad 100644
--- a/gst/effectv/gstquark.c
+++ b/gst/effectv/gstquark.c
@@ -154,7 +154,7 @@ gst_quarktv_class_init (GstQuarkTVClass * klass)
gstelement_class->change_state = gst_quarktv_change_state;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_quarktv_sinkconnect (GstPad * pad, GstCaps * caps)
{
GstQuarkTV *filter;
diff --git a/gst/effectv/gstrev.c b/gst/effectv/gstrev.c
index 49cbfb23..870e47a9 100644
--- a/gst/effectv/gstrev.c
+++ b/gst/effectv/gstrev.c
@@ -168,7 +168,7 @@ gst_revtv_class_init (GstRevTVClass * klass)
gobject_class->get_property = gst_revtv_get_property;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_revtv_sinkconnect (GstPad * pad, GstCaps * caps)
{
GstRevTV *filter;
diff --git a/gst/effectv/gstshagadelic.c b/gst/effectv/gstshagadelic.c
index 63cc0a03..38fbb7a3 100644
--- a/gst/effectv/gstshagadelic.c
+++ b/gst/effectv/gstshagadelic.c
@@ -138,7 +138,7 @@ gst_shagadelictv_class_init (GstShagadelicTVClass * klass)
gobject_class->get_property = gst_shagadelictv_get_property;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_shagadelictv_sinkconnect (GstPad * pad, GstCaps * caps)
{
GstShagadelicTV *filter;
diff --git a/gst/effectv/gstvertigo.c b/gst/effectv/gstvertigo.c
index d40c89b9..0c5d507f 100644
--- a/gst/effectv/gstvertigo.c
+++ b/gst/effectv/gstvertigo.c
@@ -172,7 +172,7 @@ gst_vertigotv_reset_handler (GstElement *element)
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_vertigotv_sinkconnect (GstPad * pad, GstCaps * caps)
{
GstVertigoTV *filter;
diff --git a/gst/effectv/gstwarp.c b/gst/effectv/gstwarp.c
index 939ca150..e82dcaad 100644
--- a/gst/effectv/gstwarp.c
+++ b/gst/effectv/gstwarp.c
@@ -145,7 +145,7 @@ gst_warptv_class_init (GstWarpTVClass * klass)
gobject_class->get_property = gst_warptv_get_property;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_warptv_sinkconnect (GstPad * pad, GstCaps * caps)
{
GstWarpTV *filter;
diff --git a/gst/goom/gstgoom.c b/gst/goom/gstgoom.c
index 0e7f3bb5..ce12d044 100644
--- a/gst/goom/gstgoom.c
+++ b/gst/goom/gstgoom.c
@@ -130,7 +130,7 @@ static void gst_goom_get_property (GObject *object, guint prop_id,
static void gst_goom_chain (GstPad *pad, GstBuffer *buf);
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_goom_sinkconnect (GstPad *pad, GstCaps *caps);
static GstElementClass *parent_class = NULL;
@@ -207,7 +207,7 @@ gst_goom_init (GstGOOM *goom)
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_goom_sinkconnect (GstPad *pad, GstCaps *caps)
{
GstGOOM *goom;
diff --git a/gst/law/mulaw-decode.c b/gst/law/mulaw-decode.c
index b36325f0..48de557e 100644
--- a/gst/law/mulaw-decode.c
+++ b/gst/law/mulaw-decode.c
@@ -47,7 +47,7 @@ static GstElementClass *parent_class = NULL;
/*static guint gst_stereo_signals[LAST_SIGNAL] = { 0 };*/
-static GstPadConnectReturn
+static GstPadLinkReturn
mulawdec_connect_sink (GstPad *pad, GstCaps *caps)
{
GstCaps *newcaps;
diff --git a/gst/level/gstlevel.c b/gst/level/gstlevel.c
index 55e9ff5b..c762d8e1 100644
--- a/gst/level/gstlevel.c
+++ b/gst/level/gstlevel.c
@@ -120,7 +120,7 @@ gst_level_get_type (void)
return level_type;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_level_connect (GstPad *pad, GstCaps *caps)
{
GstLevel *filter;
diff --git a/gst/monoscope/gstmonoscope.c b/gst/monoscope/gstmonoscope.c
index d10ece2f..8bc90882 100644
--- a/gst/monoscope/gstmonoscope.c
+++ b/gst/monoscope/gstmonoscope.c
@@ -133,7 +133,7 @@ static void gst_monoscope_get_property (GObject *object, guint prop_id,
static void gst_monoscope_chain (GstPad *pad, GstBuffer *buf);
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_monoscope_sinkconnect (GstPad *pad, GstCaps *caps);
static GstElementClass *parent_class = NULL;
@@ -210,7 +210,7 @@ gst_monoscope_init (GstMonoscope *monoscope)
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_monoscope_sinkconnect (GstPad *pad, GstCaps *caps)
{
GstMonoscope *monoscope;
diff --git a/gst/udp/gstudpsink.c b/gst/udp/gstudpsink.c
index b1071034..c1afce42 100644
--- a/gst/udp/gstudpsink.c
+++ b/gst/udp/gstudpsink.c
@@ -140,7 +140,7 @@ gst_udpsink_class_init (GstUDPSink *klass)
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_udpsink_sinkconnect (GstPad *pad, GstCaps *caps)
{
GstUDPSink *udpsink;
diff --git a/gst/videocrop/gstvideocrop.c b/gst/videocrop/gstvideocrop.c
index 2ee1fce9..0a3fb1a5 100644
--- a/gst/videocrop/gstvideocrop.c
+++ b/gst/videocrop/gstvideocrop.c
@@ -110,7 +110,7 @@ static void gst_video_crop_set_property (GObject *object, guint prop_id,
static void gst_video_crop_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec);
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_video_crop_sink_connect (GstPad *pad, GstCaps *caps);
static void gst_video_crop_chain (GstPad *pad, GstBuffer *buffer);
@@ -253,7 +253,7 @@ gst_video_crop_get_property (GObject *object, guint prop_id, GValue *value, GPar
}
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_video_crop_sink_connect (GstPad *pad, GstCaps *caps)
{
GstVideoCrop *video_crop;
diff --git a/gst/wavenc/gstwavenc.c b/gst/wavenc/gstwavenc.c
index 336811fc..a61ca5a2 100644
--- a/gst/wavenc/gstwavenc.c
+++ b/gst/wavenc/gstwavenc.c
@@ -207,7 +207,7 @@ gst_wavenc_setup (GstWavEnc *wavenc)
return TRUE;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_wavenc_sinkconnect (GstPad *pad,
GstCaps *caps)
{