From f2d5cae8daade402e9d74a829d2b87283167aaa7 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Wed, 8 Oct 2003 16:08:18 +0000 Subject: /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. --- ext/esd/esdmon.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/esd/esdmon.c') diff --git a/ext/esd/esdmon.c b/ext/esd/esdmon.c index ae8d4fd4..de7e1148 100644 --- a/ext/esd/esdmon.c +++ b/ext/esd/esdmon.c @@ -92,7 +92,7 @@ static void gst_esdmon_close_audio (GstEsdmon *src); static GstElementStateReturn gst_esdmon_change_state (GstElement *element); static gboolean gst_esdmon_sync_parms (GstEsdmon *esdmon); -static GstBuffer * gst_esdmon_get (GstPad *pad); +static GstData * gst_esdmon_get (GstPad *pad); static void gst_esdmon_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec); @@ -225,7 +225,7 @@ gst_esdmon_sync_parms (GstEsdmon *esdmon) return gst_esdmon_open_audio (esdmon); } -static GstBuffer * +static GstData * gst_esdmon_get (GstPad *pad) { GstEsdmon *esdmon; @@ -282,7 +282,7 @@ gst_esdmon_get (GstPad *pad) esdmon->samples_since_basetime += readsamples; GST_DEBUG ("pushed buffer from esdmon of %ld bytes, timestamp %" G_GINT64_FORMAT, readbytes, GST_BUFFER_TIMESTAMP (buf)); - return buf; + return GST_DATA (buf); } static void -- cgit