audiofxbasefirfilter: Fix time-domain convolution for multichannel input

Fixes bug #674025.
This commit is contained in:
Chris Pankow 2012-04-23 10:07:12 +02:00 committed by Sebastian Dröge
parent e0b56a510f
commit 6042bb1e6b

View file

@ -156,7 +156,7 @@ process_##channels##_##width (GstAudioFXBaseFIRFilter * self, const g##ctype * s
if (self->buffer_fill > kernel_length) \ if (self->buffer_fill > kernel_length) \
self->buffer_fill = kernel_length; \ self->buffer_fill = kernel_length; \
\ \
return input_samples / channels; \ return input_samples; \
} G_STMT_END } G_STMT_END
DEFINE_PROCESS_FUNC (32, float); DEFINE_PROCESS_FUNC (32, float);