ext/ladspa/gstladspa.c: Whitespace.
authorStefan Kost <ensonic@users.sourceforge.net>
Thu, 30 Oct 2008 13:02:18 +0000 (13:02 +0000)
committerStefan Kost <ensonic@users.sourceforge.net>
Thu, 30 Oct 2008 13:02:18 +0000 (13:02 +0000)
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.

ChangeLog
ext/ladspa/gstladspa.c
ext/ladspa/gstsignalprocessor.c

index e68f686..afaf23b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
index 54e3eaf..f96646b 100644 (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++))) {
index 9cc5af2..5098eda 100644 (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);