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/gstwarp.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'gst/effectv/gstwarp.c') diff --git a/gst/effectv/gstwarp.c b/gst/effectv/gstwarp.c index c098ab62..f4bb281f 100644 --- a/gst/effectv/gstwarp.c +++ b/gst/effectv/gstwarp.c @@ -107,7 +107,7 @@ static void gst_warptv_set_property (GObject * object, guint prop_id, static void gst_warptv_get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec); -static void gst_warptv_chain (GstPad * pad, GstBuffer * buf); +static void gst_warptv_chain (GstPad * pad, GstData *_data); static GstElementClass *parent_class = NULL; /*static guint gst_warptv_signals[LAST_SIGNAL] = { 0 }; */ @@ -249,8 +249,9 @@ gst_warptv_initialize (GstWarpTV *filter) } static void -gst_warptv_chain (GstPad * pad, GstBuffer * buf) +gst_warptv_chain (GstPad * pad, GstData *_data) { + GstBuffer *buf = GST_BUFFER (_data); GstWarpTV *filter; guint32 *src, *dest; gint xw,yw,cw; @@ -312,7 +313,7 @@ gst_warptv_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