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 /sys/oss/gstossgst.c | |
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 'sys/oss/gstossgst.c')
-rw-r--r-- | sys/oss/gstossgst.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/oss/gstossgst.c b/sys/oss/gstossgst.c index 070c693a..1dfd2b07 100644 --- a/sys/oss/gstossgst.c +++ b/sys/oss/gstossgst.c @@ -55,7 +55,7 @@ static GstElementStateReturn gst_ossgst_change_state (GstElement *element); static void gst_ossgst_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec); static void gst_ossgst_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec); -static GstBuffer* gst_ossgst_get (GstPad *pad); +static GstData* gst_ossgst_get (GstPad *pad); /* OssGst signals and args */ enum { @@ -277,7 +277,7 @@ gst_ossgst_format_to_caps (gint format, gint stereo, gint rate) return caps; } -static GstBuffer* +static GstData* gst_ossgst_get (GstPad *pad) { GstOssGst *ossgst; @@ -320,7 +320,7 @@ gst_ossgst_get (GstPad *pad) } } - return buf; + return GST_DATA (buf); } static void |