mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:46:13 +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) \
|
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);
|
||||||
|
|
Loading…
Reference in a new issue