summaryrefslogtreecommitdiffstats
path: root/gst/law
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/law
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/law')
-rw-r--r--gst/law/alaw-decode.c7
-rw-r--r--gst/law/alaw-encode.c7
-rw-r--r--gst/law/mulaw-decode.c7
-rw-r--r--gst/law/mulaw-encode.c7
4 files changed, 16 insertions, 12 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
diff --git a/gst/law/alaw-encode.c b/gst/law/alaw-encode.c
index cd796886..9edd8cb2 100644
--- a/gst/law/alaw-encode.c
+++ b/gst/law/alaw-encode.c
@@ -41,7 +41,7 @@ static void gst_alawenc_init (GstALawEnc *alawenc);
static void gst_alawenc_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
static void gst_alawenc_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
-static void gst_alawenc_chain (GstPad *pad, GstBuffer *buf);
+static void gst_alawenc_chain (GstPad *pad, GstData *_data);
/*
* s16_to_alaw() - Convert a 16-bit linear PCM value to 8-bit A-law
@@ -185,8 +185,9 @@ gst_alawenc_init (GstALawEnc *alawenc)
}
static void
-gst_alawenc_chain (GstPad *pad,GstBuffer *buf)
+gst_alawenc_chain (GstPad *pad,GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstALawEnc *alawenc;
gint16 *linear_data;
guint8 *alaw_data;
@@ -214,7 +215,7 @@ gst_alawenc_chain (GstPad *pad,GstBuffer *buf)
linear_data++;
}
gst_buffer_unref(buf);
- gst_pad_push(alawenc->srcpad,outbuf);
+ gst_pad_push(alawenc->srcpad,GST_DATA (outbuf));
}
static void
diff --git a/gst/law/mulaw-decode.c b/gst/law/mulaw-decode.c
index abce597d..b9db0de8 100644
--- a/gst/law/mulaw-decode.c
+++ b/gst/law/mulaw-decode.c
@@ -40,7 +40,7 @@ static void gst_mulawdec_init (GstMuLawDec *mulawdec);
static void gst_mulawdec_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
static void gst_mulawdec_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
-static void gst_mulawdec_chain (GstPad *pad, GstBuffer *buf);
+static void gst_mulawdec_chain (GstPad *pad, GstData *_data);
static GstElementClass *parent_class = NULL;
@@ -125,8 +125,9 @@ gst_mulawdec_init (GstMuLawDec *mulawdec)
}
static void
-gst_mulawdec_chain (GstPad *pad,GstBuffer *buf)
+gst_mulawdec_chain (GstPad *pad,GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstMuLawDec *mulawdec;
gint16 *linear_data;
guint8 *mulaw_data;
@@ -149,7 +150,7 @@ gst_mulawdec_chain (GstPad *pad,GstBuffer *buf)
mulaw_decode(mulaw_data,linear_data,GST_BUFFER_SIZE(buf));
gst_buffer_unref(buf);
- gst_pad_push(mulawdec->srcpad,outbuf);
+ gst_pad_push(mulawdec->srcpad,GST_DATA (outbuf));
}
static void
diff --git a/gst/law/mulaw-encode.c b/gst/law/mulaw-encode.c
index ec045db6..8fa4a613 100644
--- a/gst/law/mulaw-encode.c
+++ b/gst/law/mulaw-encode.c
@@ -40,7 +40,7 @@ static void gst_mulawenc_init (GstMuLawEnc *mulawenc);
static void gst_mulawenc_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
static void gst_mulawenc_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
-static void gst_mulawenc_chain (GstPad *pad, GstBuffer *buf);
+static void gst_mulawenc_chain (GstPad *pad, GstData *_data);
static GstElementClass *parent_class = NULL;
@@ -123,8 +123,9 @@ gst_mulawenc_init (GstMuLawEnc *mulawenc)
}
static void
-gst_mulawenc_chain (GstPad *pad,GstBuffer *buf)
+gst_mulawenc_chain (GstPad *pad,GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstMuLawEnc *mulawenc;
gint16 *linear_data;
guint8 *mulaw_data;
@@ -147,7 +148,7 @@ gst_mulawenc_chain (GstPad *pad,GstBuffer *buf)
mulaw_encode(linear_data,mulaw_data,GST_BUFFER_SIZE(outbuf));
gst_buffer_unref(buf);
- gst_pad_push(mulawenc->srcpad,outbuf);
+ gst_pad_push(mulawenc->srcpad,GST_DATA (outbuf));
}
static void