ext/ladspa/gstladspa.c: Whitespace.

Original commit message from CVS:
* ext/ladspa/gstladspa.c:
Whitespace.
* ext/ladspa/gstsignalprocessor.c:
Add a FIXME:. not sure if this code does the forwarding correctly.
This commit is contained in:
Stefan Kost 2008-10-30 13:02:18 +00:00
parent 12766882b5
commit bc94bc26be
3 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,10 @@
2008-10-30 Stefan Kost <ensonic@users.sf.net>
* ext/ladspa/gstladspa.c:
Whitespace.
* ext/ladspa/gstsignalprocessor.c:
Add a FIXME:. not sure if this code does the forwarding correctly.
2008-10-30 Sebastian Dröge <slomo@circular-chaos.org>
* gst/speexresample/Makefile.am:

View file

@ -574,7 +574,6 @@ ladspa_describe_plugin (const char *pcFullFilename,
const LADSPA_Descriptor *desc;
gint i;
/* walk through all the plugins in this pluginlibrary */
i = 0;
while ((desc = pfDescriptorFunction (i++))) {

View file

@ -501,8 +501,9 @@ gst_signal_processor_event (GstPad * pad, GstEvent * event)
self = GST_SIGNAL_PROCESSOR (gst_pad_get_parent (pad));
bclass = GST_SIGNAL_PROCESSOR_GET_CLASS (self);
/* this probably isn't the correct interface: what about return values, what
about overriding event_default */
/* FIXME, this probably isn't the correct interface: what about return values, what
* about overriding event_default
* Sync with GstBaseTransform::gst_base_transform_sink_event */
if (bclass->event)
bclass->event (self, event);