diff options
Diffstat (limited to 'gst/effectv/gstaging.c')
-rw-r--r-- | gst/effectv/gstaging.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gst/effectv/gstaging.c b/gst/effectv/gstaging.c index 5967e478..003014b7 100644 --- a/gst/effectv/gstaging.c +++ b/gst/effectv/gstaging.c @@ -111,7 +111,7 @@ static void gst_agingtv_set_property (GObject * object, guint prop_id, static void gst_agingtv_get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec); -static void gst_agingtv_chain (GstPad * pad, GstBuffer * buf); +static void gst_agingtv_chain (GstPad * pad, GstData *_data); static GstElementClass *parent_class = NULL; /*static guint gst_agingtv_signals[LAST_SIGNAL] = { 0 }; */ @@ -342,8 +342,9 @@ aging_mode_switch (GstAgingTV *filter) } static void -gst_agingtv_chain (GstPad * pad, GstBuffer * buf) +gst_agingtv_chain (GstPad * pad, GstData *_data) { + GstBuffer *buf = GST_BUFFER (_data); GstAgingTV *filter; guint32 *src, *dest; GstBuffer *outbuf; @@ -365,7 +366,7 @@ gst_agingtv_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 |