mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
audiomixer: fix array sizes
This commit is contained in:
parent
a30b7518f3
commit
16cf174fbc
1 changed files with 1 additions and 1 deletions
|
|
@ -109,7 +109,7 @@ static inline void mix_2(float * dst, const float * SPA_RESTRICT src, uint32_t n
|
|||
_mm256_store_ps(&dst[n + 8], in1[1]);
|
||||
}
|
||||
for (; n < n_samples; n++) {
|
||||
__m128 in1[0], in2[0];
|
||||
__m128 in1[1], in2[1];
|
||||
in1[0] = _mm_load_ss(&dst[n]),
|
||||
in2[0] = _mm_load_ss(&src[n]),
|
||||
in1[0] = _mm_add_ss(in1[0], in2[0]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue