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. --- ext/gsm/gstgsmdec.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'ext/gsm/gstgsmdec.c') diff --git a/ext/gsm/gstgsmdec.c b/ext/gsm/gstgsmdec.c index e857feff..a028255e 100644 --- a/ext/gsm/gstgsmdec.c +++ b/ext/gsm/gstgsmdec.c @@ -52,7 +52,7 @@ enum { static void gst_gsmdec_class_init (GstGSMDec *klass); static void gst_gsmdec_init (GstGSMDec *gsmdec); -static void gst_gsmdec_chain (GstPad *pad, GstBuffer *buf); +static void gst_gsmdec_chain (GstPad *pad, GstData *_data); static GstPadLinkReturn gst_gsmdec_sinkconnect (GstPad *pad, GstCaps *caps); static GstElementClass *parent_class = NULL; @@ -137,8 +137,9 @@ gst_gsmdec_sinkconnect (GstPad *pad, GstCaps *caps) } static void -gst_gsmdec_chain (GstPad *pad, GstBuffer *buf) +gst_gsmdec_chain (GstPad *pad, GstData *_data) { + GstBuffer *buf = GST_BUFFER (_data); GstGSMDec *gsmdec; gsm_byte *data; guint size; @@ -164,7 +165,7 @@ gst_gsmdec_chain (GstPad *pad, GstBuffer *buf) gsm_decode (gsmdec->state, gsmdec->buffer, (gsm_signal *) GST_BUFFER_DATA (outbuf)); - gst_pad_push (gsmdec->srcpad, outbuf); + gst_pad_push (gsmdec->srcpad, GST_DATA (outbuf)); size -= (33 - gsmdec->bufsize); data += (33 - gsmdec->bufsize); @@ -180,7 +181,7 @@ gst_gsmdec_chain (GstPad *pad, GstBuffer *buf) gsm_decode (gsmdec->state, data, (gsm_signal *)GST_BUFFER_DATA (outbuf)); - gst_pad_push (gsmdec->srcpad, outbuf); + gst_pad_push (gsmdec->srcpad, GST_DATA (outbuf)); size -= 33; data += 33; -- cgit v1.2.1