summaryrefslogtreecommitdiffstats
path: root/gst/effectv/gstwarp.c
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2003-10-08 16:08:18 +0000
committerAndy Wingo <wingo@pobox.com>2003-10-08 16:08:18 +0000
commitf2d5cae8daade402e9d74a829d2b87283167aaa7 (patch)
treecbb13b82d43fa41ffaf6c93973e80c2f620ebf8e /gst/effectv/gstwarp.c
parent9246e543319c072c52fffa51259a2cf927c8dd43 (diff)
/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 'gst/effectv/gstwarp.c')
-rw-r--r--gst/effectv/gstwarp.c7
1 files changed, 4 insertions, 3 deletions
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