mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-25 10:04:19 +00:00
ext/soundtouch/gstpitch.cc: Call gst_element_no_more_pads() after all pads are added.
Original commit message from CVS: * ext/soundtouch/gstpitch.cc: Call gst_element_no_more_pads() after all pads are added.
This commit is contained in:
parent
5e88627e2b
commit
744f3efec5
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-06-10 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
* ext/soundtouch/gstpitch.cc:
|
||||
Call gst_element_no_more_pads() after all pads are added.
|
||||
|
||||
2008-06-09 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* gst/rawparse/gstrawparse.c: (gst_raw_parse_push_buffer),
|
||||
|
|
|
@ -181,6 +181,8 @@ gst_pitch_init (GstPitch * pitch, GstPitchClass * pitch_class)
|
|||
GST_DEBUG_FUNCPTR (gst_pad_proxy_getcaps));
|
||||
gst_element_add_pad (GST_ELEMENT (pitch), pitch->srcpad);
|
||||
|
||||
gst_element_no_more_pads (GST_ELEMENT (pitch));
|
||||
|
||||
pitch->priv->st = new soundtouch::SoundTouch ();
|
||||
|
||||
pitch->tempo = 1.0;
|
||||
|
|
Loading…
Reference in a new issue