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/effectv/gstdice.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'gst/effectv/gstdice.c') diff --git a/gst/effectv/gstdice.c b/gst/effectv/gstdice.c index 50c5b081..2856ecbe 100644 --- a/gst/effectv/gstdice.c +++ b/gst/effectv/gstdice.c @@ -102,7 +102,7 @@ static void gst_dicetv_set_property (GObject * object, guint prop_id, static void gst_dicetv_get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec); -static void gst_dicetv_chain (GstPad * pad, GstBuffer * buf); +static void gst_dicetv_chain (GstPad * pad, GstData *_data); static GstElementClass *parent_class = NULL; static guint gst_dicetv_signals[LAST_SIGNAL] = { 0 }; @@ -301,8 +301,9 @@ gst_dicetv_create_map (GstDiceTV *filter) } static void -gst_dicetv_chain (GstPad * pad, GstBuffer * buf) +gst_dicetv_chain (GstPad * pad, GstData *_data) { + GstBuffer *buf = GST_BUFFER (_data); GstDiceTV *filter; guint32 *src, *dest; GstBuffer *outbuf; @@ -320,7 +321,7 @@ gst_dicetv_chain (GstPad * pad, GstBuffer * buf) gst_buffer_unref (buf); - gst_pad_push (filter->srcpad, outbuf); + gst_pad_push (filter->srcpad, GST_DATA (outbuf)); } static void -- cgit