From c07813ac2ca2a969ac4f46b7f2bcaee731f0ca79 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Wed, 8 Oct 2003 16:08:19 +0000 Subject: /GstBuffer/GstData/ in the API where you can pass events. Fix the plugins to deal with that. Fixes #113488. Original commit message from CVS: /GstBuffer/GstData/ in the API where you can pass events. Fix the plugins to deal with that. Fixes #113488. --- gst/filter/gstiir.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'gst/filter/gstiir.c') diff --git a/gst/filter/gstiir.c b/gst/filter/gstiir.c index fcf2f43f..61fff92b 100644 --- a/gst/filter/gstiir.c +++ b/gst/filter/gstiir.c @@ -89,7 +89,7 @@ static void gst_iir_set_property (GObject * object, guint prop_id, 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 void gst_iir_chain (GstPad * pad, GstData *_data); static GstPadLinkReturn gst_iir_sink_connect (GstPad * pad, GstCaps * caps); @@ -188,8 +188,9 @@ gst_iir_sink_connect (GstPad * pad, GstCaps * caps) } static void -gst_iir_chain (GstPad * pad, GstBuffer * buf) +gst_iir_chain (GstPad * pad, GstData *_data) { + GstBuffer *buf = GST_BUFFER (_data); GstIIR *filter; gfloat *src; int i; @@ -205,7 +206,7 @@ gst_iir_chain (GstPad * pad, GstBuffer * buf) for (i = 0; i < GST_BUFFER_SIZE (buf) / sizeof (gfloat); ++i) *(src + i) = (gfloat) IIR_filter (filter->state, (double) *(src + i)); - gst_pad_push (filter->srcpad, buf); + gst_pad_push (filter->srcpad, GST_DATA (buf)); } static void -- cgit v1.2.1