diff options
author | Andy Wingo <wingo@pobox.com> | 2003-10-08 16:08:19 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2003-10-08 16:08:19 +0000 |
commit | c07813ac2ca2a969ac4f46b7f2bcaee731f0ca79 (patch) | |
tree | 88f65b715d1fa83677b13286b3681a6096b5dcf2 /gst/speed | |
parent | 69edaac422d50a0e365fae15d354c07c0f5419d4 (diff) | |
download | gst-plugins-bad-c07813ac2ca2a969ac4f46b7f2bcaee731f0ca79.tar.gz gst-plugins-bad-c07813ac2ca2a969ac4f46b7f2bcaee731f0ca79.tar.bz2 gst-plugins-bad-c07813ac2ca2a969ac4f46b7f2bcaee731f0ca79.zip |
/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/speed')
-rw-r--r-- | gst/speed/filter.func | 6 | ||||
-rw-r--r-- | gst/speed/gstspeed.c | 5 |
2 files changed, 6 insertions, 5 deletions
diff --git a/gst/speed/filter.func b/gst/speed/filter.func index 867a825d..7bd5227c 100644 --- a/gst/speed/filter.func +++ b/gst/speed/filter.func @@ -38,11 +38,11 @@ i_float = i_float - nin; lower = in_data[nin-1]; gst_buffer_unref(in); - in = gst_pad_pull (filter->sinkpad); + in = GST_BUFFER (gst_pad_pull (filter->sinkpad)); 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)); } in_data = (_FORMAT*) GST_BUFFER_DATA(in); @@ -59,7 +59,7 @@ lower = in_data[i]; } - gst_pad_push(filter->srcpad, out); + gst_pad_push(filter->srcpad, GST_DATA (out)); gst_element_yield (element); } while (TRUE); 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 |