diff options
author | Andy Wingo <wingo@pobox.com> | 2003-10-08 16:08:18 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2003-10-08 16:08:18 +0000 |
commit | f2d5cae8daade402e9d74a829d2b87283167aaa7 (patch) | |
tree | cbb13b82d43fa41ffaf6c93973e80c2f620ebf8e /gst/level | |
parent | 9246e543319c072c52fffa51259a2cf927c8dd43 (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/level')
-rw-r--r-- | gst/level/gstlevel.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gst/level/gstlevel.c b/gst/level/gstlevel.c index ca33743f..82d1ca40 100644 --- a/gst/level/gstlevel.c +++ b/gst/level/gstlevel.c @@ -101,7 +101,7 @@ static void gst_level_init (GstLevel *filter); static void gst_level_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec); static void gst_level_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec); -static void gst_level_chain (GstPad *pad, GstBuffer *buf); +static void gst_level_chain (GstPad *pad, GstData *_data); static GstElementClass *parent_class = NULL; static guint gst_filter_signals[LAST_SIGNAL] = { 0 }; @@ -193,8 +193,9 @@ gst_level_fast_8bit_chain (gint8* in, guint num, gint channels, #include "filter.func" static void -gst_level_chain (GstPad *pad, GstBuffer *buf) +gst_level_chain (GstPad *pad, GstData *_data) { + GstBuffer *buf = GST_BUFFER (_data); GstLevel *filter; gint16 *in_data; @@ -239,7 +240,7 @@ gst_level_chain (GstPad *pad, GstBuffer *buf) filter->CS[i] += CS; } - gst_pad_push (filter->srcpad, buf); + gst_pad_push (filter->srcpad, GST_DATA (buf)); filter->num_samples += num_samples; |