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/debug/efence.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 'gst/debug/efence.c')
-rw-r--r-- | gst/debug/efence.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gst/debug/efence.c b/gst/debug/efence.c index 505be406..904ee73f 100644 --- a/gst/debug/efence.c +++ b/gst/debug/efence.c @@ -83,7 +83,7 @@ static void gst_efence_get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec); -static void gst_efence_chain (GstPad *pad, GstBuffer *buf); +static void gst_efence_chain (GstPad *pad, GstData *_data); static GstElementClass *parent_class = NULL; @@ -201,8 +201,9 @@ gst_efence_init (GstEFence *filter) */ static void -gst_efence_chain (GstPad *pad, GstBuffer *buffer) +gst_efence_chain (GstPad *pad, GstData *_data) { + GstBuffer *buffer = GST_BUFFER (_data); GstEFence *efence; GstBuffer *copy; void *ptr; @@ -231,7 +232,7 @@ gst_efence_chain (GstPad *pad, GstBuffer *buffer) GST_BUFFER_POOL_PRIVATE (copy) = NULL; gst_buffer_unref(buffer); - gst_pad_push (efence->srcpad, copy); + gst_pad_push (efence->srcpad, GST_DATA (copy)); } static void |