channelmix: Fix copy and paste error

This commit is contained in:
Wim Taymans 2022-02-23 07:39:23 +01:00
parent ac25d126de
commit 6ed60eb868

View file

@ -204,7 +204,7 @@ channelmix_f32_5p1_2_sse(struct channelmix *mix, uint32_t n_dst, void * SPA_REST
ctr = _mm_mul_ps(_mm_load_ps(&sFC[n]), clev);
ctr = _mm_add_ps(ctr, _mm_mul_ps(_mm_load_ps(&sLFE[n]), llev));
in = _mm_mul_ps(_mm_load_ps(&sSL[n]), slev0);
in = _mm_add_ss(in, ctr);
in = _mm_add_ps(in, ctr);
in = _mm_add_ps(in, _mm_mul_ps(_mm_load_ps(&sFL[n]), v0));
_mm_store_ps(&dFL[n], in);
in = _mm_mul_ps(_mm_load_ps(&sSR[n]), slev1);