mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
SPDX tags make the licensing information easy to understand and clear, and they are machine parseable. See https://spdx.dev for more information.
67 lines
1.7 KiB
C
67 lines
1.7 KiB
C
/* Spa */
|
|
/* SPDX-FileCopyrightText: Copyright © 2019 Wim Taymans */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <math.h>
|
|
|
|
#include <spa/utils/defs.h>
|
|
|
|
#include "mix-ops.h"
|
|
|
|
#include <emmintrin.h>
|
|
|
|
void
|
|
mix_f64_sse2(struct mix_ops *ops, void * SPA_RESTRICT dst, const void * SPA_RESTRICT src[],
|
|
uint32_t n_src, uint32_t n_samples)
|
|
{
|
|
n_samples *= ops->n_channels;
|
|
|
|
if (n_src == 0) {
|
|
memset(dst, 0, n_samples * sizeof(double));
|
|
} else if (n_src == 1) {
|
|
if (dst != src[0])
|
|
spa_memcpy(dst, src[0], n_samples * sizeof(double));
|
|
} else {
|
|
uint32_t n, i, unrolled;
|
|
__m128d in[4];
|
|
const double **s = (const double **)src;
|
|
double *d = dst;
|
|
|
|
if (SPA_LIKELY(SPA_IS_ALIGNED(dst, 16))) {
|
|
unrolled = n_samples & ~15;
|
|
for (i = 0; i < n_src; i++) {
|
|
if (SPA_UNLIKELY(!SPA_IS_ALIGNED(src[i], 16))) {
|
|
unrolled = 0;
|
|
break;
|
|
}
|
|
}
|
|
} else
|
|
unrolled = 0;
|
|
|
|
for (n = 0; n < unrolled; n += 8) {
|
|
in[0] = _mm_load_pd(&s[0][n+0]);
|
|
in[1] = _mm_load_pd(&s[0][n+2]);
|
|
in[2] = _mm_load_pd(&s[0][n+4]);
|
|
in[3] = _mm_load_pd(&s[0][n+6]);
|
|
|
|
for (i = 1; i < n_src; i++) {
|
|
in[0] = _mm_add_pd(in[0], _mm_load_pd(&s[i][n+0]));
|
|
in[1] = _mm_add_pd(in[1], _mm_load_pd(&s[i][n+2]));
|
|
in[2] = _mm_add_pd(in[2], _mm_load_pd(&s[i][n+4]));
|
|
in[3] = _mm_add_pd(in[3], _mm_load_pd(&s[i][n+6]));
|
|
}
|
|
_mm_store_pd(&d[n+0], in[0]);
|
|
_mm_store_pd(&d[n+2], in[1]);
|
|
_mm_store_pd(&d[n+4], in[2]);
|
|
_mm_store_pd(&d[n+6], in[3]);
|
|
}
|
|
for (; n < n_samples; n++) {
|
|
in[0] = _mm_load_sd(&s[0][n]);
|
|
for (i = 1; i < n_src; i++)
|
|
in[0] = _mm_add_sd(in[0], _mm_load_sd(&s[i][n]));
|
|
_mm_store_sd(&d[n], in[0]);
|
|
}
|
|
}
|
|
}
|