mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-01 12:02:27 +00:00
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:
parent
e9d173ccd5
commit
bce851347c
2 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2006-02-20 Jan Schmidt <thaytan@mad.scientist.com>
|
||||||
|
|
||||||
|
* 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.
|
||||||
|
|
||||||
2006-02-19 Wim Taymans <wim@fluendo.com>
|
2006-02-19 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* gst/avi/gstavidemux.c: (gst_avi_demux_src_convert),
|
* gst/avi/gstavidemux.c: (gst_avi_demux_src_convert),
|
||||||
|
|
|
@ -287,7 +287,7 @@ gst_signal_processor_event (GstPad * pad, GstEvent * event)
|
||||||
{
|
{
|
||||||
GstSignalProcessor *self;
|
GstSignalProcessor *self;
|
||||||
GstSignalProcessorClass *bclass;
|
GstSignalProcessorClass *bclass;
|
||||||
gboolean unlock;
|
gboolean ret;
|
||||||
|
|
||||||
self = GST_SIGNAL_PROCESSOR (GST_PAD_PARENT (pad));
|
self = GST_SIGNAL_PROCESSOR (GST_PAD_PARENT (pad));
|
||||||
bclass = GST_SIGNAL_PROCESSOR_GET_CLASS (self);
|
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_in == 0);
|
||||||
g_return_if_fail (self->pending_out == 0);
|
g_return_if_fail (self->pending_out == 0);
|
||||||
|
|
||||||
|
elem = GST_ELEMENT (self);
|
||||||
|
|
||||||
/* arrange the output buffers */
|
/* arrange the output buffers */
|
||||||
for (l1 = elem->sinkpads, l2 = elem->srcpads; l1 || l2;
|
for (l1 = elem->sinkpads, l2 = elem->srcpads; l1 || l2;
|
||||||
l1 = l1->next, l2 = l2->next) {
|
l1 = l1->next, l2 = l2->next) {
|
||||||
|
|
Loading…
Reference in a new issue