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
commit8e3c533fcf5c7dfc365871c3601008a0cb06ce42 (patch)
treee0073ff6181158d646c682d8b30ea5ac576a6d0b /gst
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')
-rw-r--r--gst/chart/gstchart.c4
-rw-r--r--gst/deinterlace/gstdeinterlace.c2
-rw-r--r--gst/filter/gstbpwsinc.c6
-rw-r--r--gst/filter/gstiir.c6
-rw-r--r--gst/filter/gstlpwsinc.c6
-rw-r--r--gst/mixmatrix/mixmatrix.c4
-rw-r--r--gst/passthrough/gstpassthrough.c4
-rw-r--r--gst/playondemand/gstplayondemand.c4
-rw-r--r--gst/smooth/gstsmooth.c2
-rw-r--r--gst/speed/gstspeed.c2
-rw-r--r--gst/videocrop/gstvideocrop.c4
-rw-r--r--gst/virtualdub/gstxsharpen.c2
-rw-r--r--gst/y4m/gsty4mencode.c2
13 files changed, 24 insertions, 24 deletions
diff --git a/gst/chart/gstchart.c b/gst/chart/gstchart.c
index bbe57e86..da8954ec 100644
--- a/gst/chart/gstchart.c
+++ b/gst/chart/gstchart.c
@@ -164,7 +164,7 @@ static void gst_chart_get_property (GObject *object, guint prop_id, GValue *valu
static void gst_chart_chain (GstPad *pad, GstBuffer *buf);
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_chart_sinkconnect (GstPad *pad, GstCaps *caps);
static GstElementClass *parent_class = NULL;
@@ -231,7 +231,7 @@ gst_chart_init (GstChart *chart)
chart->samples_since_last_frame = 0;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_chart_sinkconnect (GstPad *pad, GstCaps *caps)
{
GstChart *chart;
diff --git a/gst/deinterlace/gstdeinterlace.c b/gst/deinterlace/gstdeinterlace.c
index 6ed84123..1ff62880 100644
--- a/gst/deinterlace/gstdeinterlace.c
+++ b/gst/deinterlace/gstdeinterlace.c
@@ -138,7 +138,7 @@ gst_deinterlace_class_init (GstDeInterlaceClass *klass)
gobject_class->get_property = gst_deinterlace_get_property;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_deinterlace_sinkconnect (GstPad *pad, GstCaps *caps)
{
GstDeInterlace *filter;
diff --git a/gst/filter/gstbpwsinc.c b/gst/filter/gstbpwsinc.c
index 89c95f93..7ee8680b 100644
--- a/gst/filter/gstbpwsinc.c
+++ b/gst/filter/gstbpwsinc.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/filter/gstiir.c b/gst/filter/gstiir.c
index 7f447f77..9b4deb88 100644
--- a/gst/filter/gstiir.c
+++ b/gst/filter/gstiir.c
@@ -87,7 +87,7 @@ static void gst_iir_get_property (GObject * object, guint prop_id,
GValue * value, GParamSpec * pspec);
static void gst_iir_chain (GstPad * pad, GstBuffer * buf);
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_iir_sink_connect (GstPad * pad, GstCaps * caps);
static GstElementClass *parent_class = NULL;
@@ -161,11 +161,11 @@ gst_iir_init (GstIIR * filter)
filter->state = NULL;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_iir_sink_connect (GstPad * pad, GstCaps * caps)
{
GstIIR *filter;
- GstPadConnectReturn set_retval;
+ GstPadLinkReturn set_retval;
filter = GST_IIR (gst_pad_get_parent (pad));
diff --git a/gst/filter/gstlpwsinc.c b/gst/filter/gstlpwsinc.c
index 6be8e1ad..74cea70e 100644
--- a/gst/filter/gstlpwsinc.c
+++ b/gst/filter/gstlpwsinc.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/mixmatrix/mixmatrix.c b/gst/mixmatrix/mixmatrix.c
index cc644860..9d76cc76 100644
--- a/gst/mixmatrix/mixmatrix.c
+++ b/gst/mixmatrix/mixmatrix.c
@@ -105,7 +105,7 @@ static void gst_mixmatrix_set_property (GObject *object, guint prop_id, const GV
static void gst_mixmatrix_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
static GstPad * gst_mixmatrix_request_new_pad (GstElement *element, GstPadTemplate *temp, const gchar *name);
-static GstPadConnectReturn gst_mixmatrix_connect (GstPad *pad, GstCaps *caps);
+static GstPadLinkReturn gst_mixmatrix_connect (GstPad *pad, GstCaps *caps);
static void gst_mixmatrix_loop (GstElement *element);
@@ -300,7 +300,7 @@ gst_mixmatrix_set_all_caps (GstMixMatrix *mix)
}
*/
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_mixmatrix_connect (GstPad *pad, GstCaps *caps)
{
GstMixMatrix *mix = GST_MIXMATRIX(GST_PAD_PARENT(pad));
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;
diff --git a/gst/playondemand/gstplayondemand.c b/gst/playondemand/gstplayondemand.c
index 7d9959cd..1784cb86 100644
--- a/gst/playondemand/gstplayondemand.c
+++ b/gst/playondemand/gstplayondemand.c
@@ -111,7 +111,7 @@ static void play_on_demand_get_property (GObject *object,
GValue *value,
GParamSpec *pspec);
-static GstPadConnectReturn play_on_demand_pad_connect (GstPad *pad, GstCaps *caps);
+static GstPadLinkReturn play_on_demand_pad_connect (GstPad *pad, GstCaps *caps);
static void play_on_demand_loop (GstElement *elem);
@@ -135,7 +135,7 @@ play_on_demand_get_bufferpool (GstPad *pad)
return gst_pad_get_bufferpool(filter->srcpad);
}
-static GstPadConnectReturn
+static GstPadLinkReturn
play_on_demand_pad_connect (GstPad *pad, GstCaps *caps)
{
const gchar *format;
diff --git a/gst/smooth/gstsmooth.c b/gst/smooth/gstsmooth.c
index 0a130024..434078c7 100644
--- a/gst/smooth/gstsmooth.c
+++ b/gst/smooth/gstsmooth.c
@@ -128,7 +128,7 @@ gst_smooth_class_init (GstSmoothClass *klass)
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_smooth_sinkconnect (GstPad *pad, GstCaps *caps)
{
GstSmooth *filter;
diff --git a/gst/speed/gstspeed.c b/gst/speed/gstspeed.c
index d883b6e4..01d2a96d 100644
--- a/gst/speed/gstspeed.c
+++ b/gst/speed/gstspeed.c
@@ -111,7 +111,7 @@ static void speed_loop (GstElement *element);
static GstElementClass *parent_class = NULL;
/*static guint gst_filter_signals[LAST_SIGNAL] = { 0 }; */
-static GstPadConnectReturn
+static GstPadLinkReturn
speed_connect (GstPad *pad, GstCaps *caps)
{
GstSpeed *filter;
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/virtualdub/gstxsharpen.c b/gst/virtualdub/gstxsharpen.c
index f7368973..d289338b 100644
--- a/gst/virtualdub/gstxsharpen.c
+++ b/gst/virtualdub/gstxsharpen.c
@@ -131,7 +131,7 @@ gst_xsharpen_class_init (GstXsharpenClass * klass)
gobject_class->get_property = gst_xsharpen_get_property;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_xsharpen_sinkconnect (GstPad * pad, GstCaps * caps)
{
GstXsharpen *sharpen;
diff --git a/gst/y4m/gsty4mencode.c b/gst/y4m/gsty4mencode.c
index 6a24b18c..442ce0aa 100644
--- a/gst/y4m/gsty4mencode.c
+++ b/gst/y4m/gsty4mencode.c
@@ -116,7 +116,7 @@ gst_lavencode_class_init (GstLavEncodeClass *klass)
gobject_class->get_property = gst_lavencode_get_property;
}
-static GstPadConnectReturn
+static GstPadLinkReturn
gst_lavencode_sinkconnect (GstPad *pad, GstCaps *caps)
{
GstLavEncode *filter;