mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-03 09:01:54 -05:00
filter-chain: fix array size
This commit is contained in:
parent
7f8ce35709
commit
dcbdddc07a
1 changed files with 1 additions and 1 deletions
|
|
@ -600,7 +600,7 @@ void dsp_fft_cmuladd_sse(struct dsp_ops *ops, void *fft,
|
|||
{
|
||||
#ifdef HAVE_FFTW
|
||||
__m128 s = _mm_set1_ps(scale);
|
||||
__m128 aa[2], bb[2], dd[2], t[1];
|
||||
__m128 aa[2], bb[2], dd[2], t[2];
|
||||
uint32_t i, unrolled;
|
||||
|
||||
if (SPA_IS_ALIGNED(a, 16) &&
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue