summaryrefslogtreecommitdiffstats
path: root/gst/filter
diff options
context:
space:
mode:
Diffstat (limited to 'gst/filter')
-rw-r--r--gst/filter/gstbpwsinc.c6
-rw-r--r--gst/filter/gstiir.c6
-rw-r--r--gst/filter/gstlpwsinc.c6
3 files changed, 9 insertions, 9 deletions
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);