From f2d5cae8daade402e9d74a829d2b87283167aaa7 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Wed, 8 Oct 2003 16:08:18 +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/rtp/gstrtpgsmdepay.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'gst/rtp/gstrtpgsmdepay.c') diff --git a/gst/rtp/gstrtpgsmdepay.c b/gst/rtp/gstrtpgsmdepay.c index 0c68a1be..4d32f378 100644 --- a/gst/rtp/gstrtpgsmdepay.c +++ b/gst/rtp/gstrtpgsmdepay.c @@ -67,7 +67,7 @@ GST_PAD_TEMPLATE_FACTORY (sink_factory, static void gst_rtpgsmparse_class_init (GstRtpGSMParseClass * klass); static void gst_rtpgsmparse_init (GstRtpGSMParse * rtpgsmparse); -static void gst_rtpgsmparse_chain (GstPad * pad, GstBuffer * buf); +static void gst_rtpgsmparse_chain (GstPad * pad, GstData *_data); static void gst_rtpgsmparse_set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec); @@ -160,8 +160,9 @@ gst_rtpgsm_caps_nego (GstRtpGSMParse *rtpgsmparse) } static void -gst_rtpgsmparse_chain (GstPad * pad, GstBuffer * buf) +gst_rtpgsmparse_chain (GstPad * pad, GstData *_data) { + GstBuffer *buf = GST_BUFFER (_data); GstRtpGSMParse *rtpgsmparse; GstBuffer *outbuf; Rtp_Packet packet; @@ -212,7 +213,7 @@ gst_rtpgsmparse_chain (GstPad * pad, GstBuffer * buf) gst_rtpgsmparse_ntohs (outbuf); #endif - gst_pad_push (rtpgsmparse->srcpad, outbuf); + gst_pad_push (rtpgsmparse->srcpad, GST_DATA (outbuf)); rtp_packet_free (packet); gst_buffer_unref (buf); -- cgit