ext/ladspa/gstsignalprocessor.c: Fix compilation of LADPSA. It doesn't seem to work, and isn't enabled for the build,...

Original commit message from CVS:
* ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
(gst_signal_processor_process):
Fix compilation of LADPSA. It doesn't seem to work, and isn't
enabled for the build, but it helps me win the feature-count
competitions ooh yeah.
This commit is contained in:
Jan Schmidt 2006-02-20 13:08:50 +00:00
parent aafdd773a2
commit acf577a804

View file

@ -287,7 +287,7 @@ gst_signal_processor_event (GstPad * pad, GstEvent * event)
{
GstSignalProcessor *self;
GstSignalProcessorClass *bclass;
gboolean unlock;
gboolean ret;
self = GST_SIGNAL_PROCESSOR (GST_PAD_PARENT (pad));
bclass = GST_SIGNAL_PROCESSOR_GET_CLASS (self);
@ -310,6 +310,8 @@ gst_signal_processor_process (GstSignalProcessor * self)
g_return_if_fail (self->pending_in == 0);
g_return_if_fail (self->pending_out == 0);
elem = GST_ELEMENT (self);
/* arrange the output buffers */
for (l1 = elem->sinkpads, l2 = elem->srcpads; l1 || l2;
l1 = l1->next, l2 = l2->next) {