summaryrefslogtreecommitdiffstats
path: root/gst/law/alaw-decode.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst/law/alaw-decode.c')
-rw-r--r--gst/law/alaw-decode.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gst/law/alaw-decode.c b/gst/law/alaw-decode.c
index 94cf6d05..2ba0d536 100644
--- a/gst/law/alaw-decode.c
+++ b/gst/law/alaw-decode.c
@@ -41,7 +41,7 @@ static void gst_alawdec_init (GstALawDec *alawdec);
static void gst_alawdec_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
static void gst_alawdec_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
-static void gst_alawdec_chain (GstPad *pad, GstBuffer *buf);
+static void gst_alawdec_chain (GstPad *pad, GstData *_data);
static GstElementClass *parent_class = NULL;
@@ -146,8 +146,9 @@ gst_alawdec_init (GstALawDec *alawdec)
}
static void
-gst_alawdec_chain (GstPad *pad,GstBuffer *buf)
+gst_alawdec_chain (GstPad *pad,GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstALawDec *alawdec;
gint16 *linear_data;
guint8 *alaw_data;
@@ -175,7 +176,7 @@ gst_alawdec_chain (GstPad *pad,GstBuffer *buf)
}
gst_buffer_unref(buf);
- gst_pad_push(alawdec->srcpad,outbuf);
+ gst_pad_push(alawdec->srcpad,GST_DATA (outbuf));
}
static void