2019-03-28 21:07:53 +01:00
|
|
|
/* Spa
|
|
|
|
|
*
|
|
|
|
|
* Copyright © 2018 Wim Taymans
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
|
* Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
#include <spa/utils/defs.h>
|
|
|
|
|
|
|
|
|
|
#define VOLUME_MIN 0.0f
|
|
|
|
|
#define VOLUME_NORM 1.0f
|
|
|
|
|
|
2019-03-29 17:39:59 +01:00
|
|
|
#define MAX_CHANNELS 64
|
|
|
|
|
|
2019-03-28 21:07:53 +01:00
|
|
|
#define _M(ch) (1UL << SPA_AUDIO_CHANNEL_ ## ch)
|
|
|
|
|
#define MASK_MONO _M(FC)|_M(MONO)|_M(UNKNOWN)
|
|
|
|
|
#define MASK_STEREO _M(FL)|_M(FR)|_M(UNKNOWN)
|
|
|
|
|
#define MASK_QUAD _M(FL)|_M(FR)|_M(RL)|_M(RR)|_M(UNKNOWN)
|
|
|
|
|
#define MASK_3_1 _M(FL)|_M(FR)|_M(FC)|_M(LFE)
|
|
|
|
|
#define MASK_5_1 _M(FL)|_M(FR)|_M(FC)|_M(LFE)|_M(SL)|_M(SR)|_M(RL)|_M(RR)
|
|
|
|
|
#define MASK_7_1 _M(FL)|_M(FR)|_M(FC)|_M(LFE)|_M(SL)|_M(SR)|_M(RL)|_M(RR)
|
|
|
|
|
|
2019-03-29 17:39:59 +01:00
|
|
|
|
|
|
|
|
struct channelmix {
|
|
|
|
|
uint32_t src_chan;
|
|
|
|
|
uint32_t dst_chan;
|
|
|
|
|
uint64_t src_mask;
|
|
|
|
|
uint64_t dst_mask;
|
|
|
|
|
uint32_t cpu_flags;
|
|
|
|
|
|
|
|
|
|
struct spa_log *log;
|
|
|
|
|
|
2019-04-10 17:52:42 +02:00
|
|
|
unsigned int is_identity:1;
|
2019-03-29 17:39:59 +01:00
|
|
|
float volume;
|
|
|
|
|
float matrix[MAX_CHANNELS * MAX_CHANNELS];
|
|
|
|
|
|
|
|
|
|
void (*process) (struct channelmix *mix, uint32_t n_dst, void * SPA_RESTRICT dst[n_dst],
|
|
|
|
|
uint32_t n_src, const void * SPA_RESTRICT src[n_src], uint32_t n_samples);
|
|
|
|
|
void (*free) (struct channelmix *mix);
|
|
|
|
|
|
|
|
|
|
void *data;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
int channelmix_init(struct channelmix *mix);
|
|
|
|
|
|
|
|
|
|
#define channelmix_process(mix,...) (mix)->process(mix, __VA_ARGS__)
|
|
|
|
|
#define channelmix_free(mix) (mix)->free(mix)
|
2019-03-28 21:07:53 +01:00
|
|
|
|
|
|
|
|
#define DEFINE_FUNCTION(name,arch) \
|
2019-03-29 17:39:59 +01:00
|
|
|
void channelmix_##name##_##arch(struct channelmix *mix, \
|
|
|
|
|
uint32_t n_dst, void * SPA_RESTRICT dst[n_dst], \
|
|
|
|
|
uint32_t n_src, const void * SPA_RESTRICT src[n_src], \
|
|
|
|
|
uint32_t n_samples);
|
2019-03-28 21:07:53 +01:00
|
|
|
|
|
|
|
|
DEFINE_FUNCTION(copy, c);
|
|
|
|
|
DEFINE_FUNCTION(f32_n_m, c);
|
|
|
|
|
DEFINE_FUNCTION(f32_1_2, c);
|
|
|
|
|
DEFINE_FUNCTION(f32_2_1, c);
|
|
|
|
|
DEFINE_FUNCTION(f32_4_1, c);
|
|
|
|
|
DEFINE_FUNCTION(f32_3p1_1, c);
|
|
|
|
|
DEFINE_FUNCTION(f32_2_4, c);
|
|
|
|
|
DEFINE_FUNCTION(f32_2_3p1, c);
|
|
|
|
|
DEFINE_FUNCTION(f32_2_5p1, c);
|
|
|
|
|
DEFINE_FUNCTION(f32_5p1_2, c);
|
|
|
|
|
DEFINE_FUNCTION(f32_5p1_3p1, c);
|
|
|
|
|
DEFINE_FUNCTION(f32_5p1_4, c);
|
|
|
|
|
DEFINE_FUNCTION(f32_7p1_2, c);
|
|
|
|
|
DEFINE_FUNCTION(f32_7p1_3p1, c);
|
|
|
|
|
DEFINE_FUNCTION(f32_7p1_4, c);
|
|
|
|
|
|
|
|
|
|
#if defined (HAVE_SSE)
|
|
|
|
|
DEFINE_FUNCTION(copy, sse);
|
|
|
|
|
DEFINE_FUNCTION(f32_2_4, sse);
|
|
|
|
|
DEFINE_FUNCTION(f32_5p1_2, sse);
|
|
|
|
|
DEFINE_FUNCTION(f32_5p1_3p1, sse);
|
|
|
|
|
DEFINE_FUNCTION(f32_5p1_4, sse);
|
|
|
|
|
DEFINE_FUNCTION(f32_7p1_4, sse);
|
|
|
|
|
#endif
|