From c07813ac2ca2a969ac4f46b7f2bcaee731f0ca79 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Wed, 8 Oct 2003 16:08:19 +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. --- gst/speed/gstspeed.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gst/speed/gstspeed.c') diff --git a/gst/speed/gstspeed.c b/gst/speed/gstspeed.c index 294f50e7..f0a357ec 100644 --- a/gst/speed/gstspeed.c +++ b/gst/speed/gstspeed.c @@ -231,8 +231,9 @@ speed_loop (GstElement *element) i = j = 0; speed = filter->speed; + + in = GST_BUFFER (gst_pad_pull(filter->sinkpad)); - in = gst_pad_pull(filter->sinkpad); if (GST_IS_EVENT (in)) { gst_pad_event_default (filter->sinkpad, GST_EVENT (in)); return; @@ -240,7 +241,7 @@ speed_loop (GstElement *element) while (GST_IS_EVENT (in)) { gst_pad_event_default (filter->srcpad, GST_EVENT (in)); - in = gst_pad_pull (filter->sinkpad); + in = GST_BUFFER (gst_pad_pull (filter->sinkpad)); } /* this is a bit nasty, but hey, it's what you've got to do to keep the same -- cgit v1.2.1