filter-chain: fix array size

This commit is contained in:
Wim Taymans 2024-10-19 18:05:50 +02:00
parent 7f8ce35709
commit dcbdddc07a

View file

@ -600,7 +600,7 @@ void dsp_fft_cmuladd_sse(struct dsp_ops *ops, void *fft,
{ {
#ifdef HAVE_FFTW #ifdef HAVE_FFTW
__m128 s = _mm_set1_ps(scale); __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; uint32_t i, unrolled;
if (SPA_IS_ALIGNED(a, 16) && if (SPA_IS_ALIGNED(a, 16) &&