diff options
Diffstat (limited to 'ext/shout2/gstshout2.c')
-rw-r--r-- | ext/shout2/gstshout2.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/shout2/gstshout2.c b/ext/shout2/gstshout2.c index 808bd9ad..e9ef5f52 100644 --- a/ext/shout2/gstshout2.c +++ b/ext/shout2/gstshout2.c @@ -89,7 +89,7 @@ sink_template_factory (void) static void gst_shout2send_class_init (GstShout2sendClass *klass); static void gst_shout2send_init (GstShout2send *shout2send); -static void gst_shout2send_chain (GstPad *pad, GstBuffer *buf); +static void gst_shout2send_chain (GstPad *pad, GstData *_data); static GstPadLinkReturn gst_shout2send_connect (GstPad *pad, GstCaps *caps); static void gst_shout2send_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec); @@ -217,8 +217,9 @@ gst_shout2send_init (GstShout2send *shout2send) } static void -gst_shout2send_chain (GstPad *pad, GstBuffer *buf) +gst_shout2send_chain (GstPad *pad, GstData *_data) { + GstBuffer *buf = GST_BUFFER (_data); GstShout2send *shout2send; glong ret; |