mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
audiofxbasefirfilter: Fix time-domain convolution for multichannel input
Fixes bug #674025.
This commit is contained in:
parent
e0b56a510f
commit
6042bb1e6b
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ process_##channels##_##width (GstAudioFXBaseFIRFilter * self, const g##ctype * s
|
|||
if (self->buffer_fill > kernel_length) \
|
||||
self->buffer_fill = kernel_length; \
|
||||
\
|
||||
return input_samples / channels; \
|
||||
return input_samples; \
|
||||
} G_STMT_END
|
||||
|
||||
DEFINE_PROCESS_FUNC (32, float);
|
||||
|
|
Loading…
Reference in a new issue