diff options
author | Andy Wingo <wingo@pobox.com> | 2003-10-08 16:08:19 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2003-10-08 16:08:19 +0000 |
commit | c07813ac2ca2a969ac4f46b7f2bcaee731f0ca79 (patch) | |
tree | 88f65b715d1fa83677b13286b3681a6096b5dcf2 /ext/gsm/gstgsmdec.c | |
parent | 69edaac422d50a0e365fae15d354c07c0f5419d4 (diff) | |
download | gstreamer-plugins-bad-c07813ac2ca2a969ac4f46b7f2bcaee731f0ca79.tar.gz |
/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.
Diffstat (limited to 'ext/gsm/gstgsmdec.c')
-rw-r--r-- | ext/gsm/gstgsmdec.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ext/gsm/gstgsmdec.c b/ext/gsm/gstgsmdec.c index e857feffa..a028255ef 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; |