2023-02-08 18:12:00 +01:00
|
|
|
/* Spa */
|
|
|
|
|
/* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
|
|
|
|
|
/* SPDX-License-Identifier: MIT */
|
2018-04-02 11:21:29 +02:00
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
2019-01-23 15:59:54 +01:00
|
|
|
#include <math.h>
|
2018-04-02 11:21:29 +02:00
|
|
|
|
2018-12-17 13:26:54 +01:00
|
|
|
#include <spa/support/cpu.h>
|
2018-04-02 11:21:29 +02:00
|
|
|
#include <spa/utils/defs.h>
|
2019-01-23 15:59:54 +01:00
|
|
|
#include <spa/param/audio/format-utils.h>
|
2018-04-02 11:21:29 +02:00
|
|
|
|
2019-03-27 17:58:48 +01:00
|
|
|
#include "fmt-ops.h"
|
2018-07-31 12:23:35 +02:00
|
|
|
|
2022-09-29 20:34:15 +02:00
|
|
|
#define NOISE_SIZE (1<<10)
|
|
|
|
|
#define RANDOM_SIZE (16)
|
2022-06-28 16:55:50 +02:00
|
|
|
|
2019-03-29 17:39:59 +01:00
|
|
|
typedef void (*convert_func_t) (struct convert *conv, void * SPA_RESTRICT dst[],
|
|
|
|
|
const void * SPA_RESTRICT src[], uint32_t n_samples);
|
|
|
|
|
|
2019-03-27 17:58:48 +01:00
|
|
|
struct conv_info {
|
2018-08-23 17:47:57 +02:00
|
|
|
uint32_t src_fmt;
|
|
|
|
|
uint32_t dst_fmt;
|
2019-03-29 17:39:59 +01:00
|
|
|
uint32_t n_channels;
|
2018-04-06 18:39:07 +02:00
|
|
|
|
2019-03-29 17:39:59 +01:00
|
|
|
convert_func_t process;
|
2022-06-28 16:55:50 +02:00
|
|
|
const char *name;
|
|
|
|
|
|
|
|
|
|
uint32_t cpu_flags;
|
2022-07-15 12:36:15 +02:00
|
|
|
#define CONV_NOISE (1<<0)
|
2022-06-28 16:55:50 +02:00
|
|
|
#define CONV_SHAPE (1<<1)
|
2022-07-15 12:36:15 +02:00
|
|
|
uint32_t conv_flags;
|
2019-03-27 17:58:48 +01:00
|
|
|
};
|
|
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
#define MAKE(fmt1,fmt2,chan,func,...) \
|
|
|
|
|
{ SPA_AUDIO_FORMAT_ ##fmt1, SPA_AUDIO_FORMAT_ ##fmt2, chan, func, #func , __VA_ARGS__ }
|
|
|
|
|
|
2019-03-27 17:58:48 +01:00
|
|
|
static struct conv_info conv_table[] =
|
2018-04-06 18:39:07 +02:00
|
|
|
{
|
|
|
|
|
/* to f32 */
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(U8, F32, 0, conv_u8_to_f32_c),
|
|
|
|
|
MAKE(U8, F32, 0, conv_u8_to_f32_c),
|
|
|
|
|
MAKE(U8P, F32P, 0, conv_u8d_to_f32d_c),
|
|
|
|
|
MAKE(U8, F32P, 0, conv_u8_to_f32d_c),
|
|
|
|
|
MAKE(U8P, F32, 0, conv_u8d_to_f32_c),
|
2018-09-13 17:03:56 +02:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S8, F32, 0, conv_s8_to_f32_c),
|
|
|
|
|
MAKE(S8P, F32P, 0, conv_s8d_to_f32d_c),
|
|
|
|
|
MAKE(S8, F32P, 0, conv_s8_to_f32d_c),
|
|
|
|
|
MAKE(S8P, F32, 0, conv_s8d_to_f32_c),
|
2018-09-13 17:03:56 +02:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(ALAW, F32P, 0, conv_alaw_to_f32d_c),
|
|
|
|
|
MAKE(ULAW, F32P, 0, conv_ulaw_to_f32d_c),
|
2021-08-17 17:32:25 +02:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(U16, F32, 0, conv_u16_to_f32_c),
|
|
|
|
|
MAKE(U16, F32P, 0, conv_u16_to_f32d_c),
|
2021-09-08 09:07:49 -04:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S16, F32, 0, conv_s16_to_f32_c),
|
|
|
|
|
MAKE(S16P, F32P, 0, conv_s16d_to_f32d_c),
|
2020-03-30 10:59:21 -04:00
|
|
|
#if defined (HAVE_NEON)
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S16, F32P, 2, conv_s16_to_f32d_2_neon, SPA_CPU_FLAG_NEON),
|
|
|
|
|
MAKE(S16, F32P, 0, conv_s16_to_f32d_neon, SPA_CPU_FLAG_NEON),
|
2020-03-30 10:59:21 -04:00
|
|
|
#endif
|
2020-03-16 16:11:29 +01:00
|
|
|
#if defined (HAVE_AVX2)
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S16, F32P, 2, conv_s16_to_f32d_2_avx2, SPA_CPU_FLAG_AVX2),
|
|
|
|
|
MAKE(S16, F32P, 0, conv_s16_to_f32d_avx2, SPA_CPU_FLAG_AVX2),
|
2020-03-16 16:11:29 +01:00
|
|
|
#endif
|
2019-03-27 17:58:48 +01:00
|
|
|
#if defined (HAVE_SSE2)
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S16, F32P, 2, conv_s16_to_f32d_2_sse2, SPA_CPU_FLAG_SSE2),
|
|
|
|
|
MAKE(S16, F32P, 0, conv_s16_to_f32d_sse2, SPA_CPU_FLAG_SSE2),
|
2024-09-23 21:03:28 +08:00
|
|
|
#endif
|
|
|
|
|
#if defined (HAVE_RVV)
|
|
|
|
|
MAKE(S16, F32P, 0, conv_s16_to_f32d_rvv, SPA_CPU_FLAG_RISCV_V),
|
2018-07-31 12:23:35 +02:00
|
|
|
#endif
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S16, F32P, 0, conv_s16_to_f32d_c),
|
|
|
|
|
MAKE(S16P, F32, 0, conv_s16d_to_f32_c),
|
2018-09-13 17:03:56 +02:00
|
|
|
|
2025-01-24 10:35:52 +01:00
|
|
|
#if defined (HAVE_AVX2)
|
|
|
|
|
MAKE(S16_OE, F32P, 2, conv_s16s_to_f32d_2_avx2, SPA_CPU_FLAG_AVX2),
|
|
|
|
|
MAKE(S16_OE, F32P, 0, conv_s16s_to_f32d_avx2, SPA_CPU_FLAG_AVX2),
|
|
|
|
|
#endif
|
|
|
|
|
#if defined (HAVE_SSE2)
|
|
|
|
|
MAKE(S16_OE, F32P, 2, conv_s16s_to_f32d_2_sse2, SPA_CPU_FLAG_SSE2),
|
|
|
|
|
MAKE(S16_OE, F32P, 0, conv_s16s_to_f32d_sse2, SPA_CPU_FLAG_SSE2),
|
|
|
|
|
#endif
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S16_OE, F32P, 0, conv_s16s_to_f32d_c),
|
2021-08-17 14:45:00 +02:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32, F32, 0, conv_copy32_c),
|
|
|
|
|
MAKE(F32P, F32P, 0, conv_copy32d_c),
|
2022-03-11 13:17:10 +01:00
|
|
|
#if defined (HAVE_SSE2)
|
2022-06-30 18:24:05 +02:00
|
|
|
MAKE(F32, F32P, 0, conv_32_to_32d_sse2, SPA_CPU_FLAG_SSE2),
|
2022-03-11 13:17:10 +01:00
|
|
|
#endif
|
2022-06-30 18:24:05 +02:00
|
|
|
MAKE(F32, F32P, 0, conv_32_to_32d_c),
|
2022-03-11 13:17:10 +01:00
|
|
|
#if defined (HAVE_SSE2)
|
2022-06-30 18:24:05 +02:00
|
|
|
MAKE(F32P, F32, 0, conv_32d_to_32_sse2, SPA_CPU_FLAG_SSE2),
|
2022-03-11 13:17:10 +01:00
|
|
|
#endif
|
2022-06-30 18:24:05 +02:00
|
|
|
MAKE(F32P, F32, 0, conv_32d_to_32_c),
|
2018-09-13 17:03:56 +02:00
|
|
|
|
2022-03-11 13:17:10 +01:00
|
|
|
#if defined (HAVE_SSE2)
|
2022-07-11 10:58:51 +02:00
|
|
|
MAKE(F32_OE, F32P, 0, conv_32s_to_32d_sse2, SPA_CPU_FLAG_SSE2),
|
2022-03-11 13:17:10 +01:00
|
|
|
#endif
|
2022-07-11 10:58:51 +02:00
|
|
|
MAKE(F32_OE, F32P, 0, conv_32s_to_32d_c),
|
2022-03-11 13:17:10 +01:00
|
|
|
#if defined (HAVE_SSE2)
|
2022-07-11 10:58:51 +02:00
|
|
|
MAKE(F32P, F32_OE, 0, conv_32d_to_32s_sse2, SPA_CPU_FLAG_SSE2),
|
2022-03-11 13:17:10 +01:00
|
|
|
#endif
|
2022-07-11 10:58:51 +02:00
|
|
|
MAKE(F32P, F32_OE, 0, conv_32d_to_32s_c),
|
2021-08-17 14:45:00 +02:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(U32, F32, 0, conv_u32_to_f32_c),
|
|
|
|
|
MAKE(U32, F32P, 0, conv_u32_to_f32d_c),
|
2021-09-08 09:07:49 -04:00
|
|
|
|
2020-03-16 16:11:29 +01:00
|
|
|
#if defined (HAVE_AVX2)
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S32, F32P, 0, conv_s32_to_f32d_avx2, SPA_CPU_FLAG_AVX2),
|
2020-03-16 16:11:29 +01:00
|
|
|
#endif
|
2019-10-24 11:06:04 +02:00
|
|
|
#if defined (HAVE_SSE2)
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S32, F32P, 0, conv_s32_to_f32d_sse2, SPA_CPU_FLAG_SSE2),
|
2024-09-29 11:17:18 +08:00
|
|
|
#endif
|
|
|
|
|
#if defined (HAVE_RVV)
|
|
|
|
|
MAKE(S32, F32P, 0, conv_s32_to_f32d_rvv, SPA_CPU_FLAG_RISCV_V),
|
2019-10-24 11:06:04 +02:00
|
|
|
#endif
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S32, F32, 0, conv_s32_to_f32_c),
|
|
|
|
|
MAKE(S32P, F32P, 0, conv_s32d_to_f32d_c),
|
|
|
|
|
MAKE(S32, F32P, 0, conv_s32_to_f32d_c),
|
|
|
|
|
MAKE(S32P, F32, 0, conv_s32d_to_f32_c),
|
2018-09-13 17:03:56 +02:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S32_OE, F32P, 0, conv_s32s_to_f32d_c),
|
2021-08-17 14:45:00 +02:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(U24, F32, 0, conv_u24_to_f32_c),
|
|
|
|
|
MAKE(U24, F32P, 0, conv_u24_to_f32d_c),
|
2021-09-08 09:07:49 -04:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S24, F32, 0, conv_s24_to_f32_c),
|
|
|
|
|
MAKE(S24P, F32P, 0, conv_s24d_to_f32d_c),
|
2020-03-16 16:11:29 +01:00
|
|
|
#if defined (HAVE_AVX2)
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S24, F32P, 0, conv_s24_to_f32d_avx2, SPA_CPU_FLAG_AVX2),
|
2020-03-16 16:11:29 +01:00
|
|
|
#endif
|
2019-03-27 17:58:48 +01:00
|
|
|
#if defined (HAVE_SSSE3)
|
2022-06-28 16:55:50 +02:00
|
|
|
// MAKE(S24, F32P, 0, conv_s24_to_f32d_ssse3, SPA_CPU_FLAG_SSSE3),
|
2019-03-20 13:04:44 +01:00
|
|
|
#endif
|
2019-03-27 17:58:48 +01:00
|
|
|
#if defined (HAVE_SSE41)
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S24, F32P, 0, conv_s24_to_f32d_sse41, SPA_CPU_FLAG_SSE41),
|
2019-03-20 13:04:44 +01:00
|
|
|
#endif
|
2019-03-27 17:58:48 +01:00
|
|
|
#if defined (HAVE_SSE2)
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S24, F32P, 0, conv_s24_to_f32d_sse2, SPA_CPU_FLAG_SSE2),
|
2018-11-08 09:56:58 +01:00
|
|
|
#endif
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S24, F32P, 0, conv_s24_to_f32d_c),
|
|
|
|
|
MAKE(S24P, F32, 0, conv_s24d_to_f32_c),
|
2018-09-13 17:03:56 +02:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S24_OE, F32P, 0, conv_s24s_to_f32d_c),
|
2020-01-27 15:46:25 +01:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(U24_32, F32, 0, conv_u24_32_to_f32_c),
|
|
|
|
|
MAKE(U24_32, F32P, 0, conv_u24_32_to_f32d_c),
|
2021-09-08 09:07:49 -04:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S24_32, F32, 0, conv_s24_32_to_f32_c),
|
|
|
|
|
MAKE(S24_32P, F32P, 0, conv_s24_32d_to_f32d_c),
|
|
|
|
|
MAKE(S24_32, F32P, 0, conv_s24_32_to_f32d_c),
|
|
|
|
|
MAKE(S24_32P, F32, 0, conv_s24_32d_to_f32_c),
|
2018-04-06 18:39:07 +02:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S24_32_OE, F32P, 0, conv_s24_32s_to_f32d_c),
|
2021-08-17 14:45:00 +02:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F64, F32, 0, conv_f64_to_f32_c),
|
|
|
|
|
MAKE(F64P, F32P, 0, conv_f64d_to_f32d_c),
|
|
|
|
|
MAKE(F64, F32P, 0, conv_f64_to_f32d_c),
|
|
|
|
|
MAKE(F64P, F32, 0, conv_f64d_to_f32_c),
|
2022-01-10 13:04:31 +01:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F64_OE, F32P, 0, conv_f64s_to_f32d_c),
|
2022-01-10 13:04:31 +01:00
|
|
|
|
2018-04-06 18:39:07 +02:00
|
|
|
/* from f32 */
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32, U8, 0, conv_f32_to_u8_c),
|
2022-06-29 17:31:32 +02:00
|
|
|
MAKE(F32P, U8P, 0, conv_f32d_to_u8d_shaped_c, 0, CONV_SHAPE),
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, U8P, 0, conv_f32d_to_u8d_noise_c, 0, CONV_NOISE),
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, U8P, 0, conv_f32d_to_u8d_c),
|
|
|
|
|
MAKE(F32, U8P, 0, conv_f32_to_u8d_c),
|
2022-06-29 17:31:32 +02:00
|
|
|
MAKE(F32P, U8, 0, conv_f32d_to_u8_shaped_c, 0, CONV_SHAPE),
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, U8, 0, conv_f32d_to_u8_noise_c, 0, CONV_NOISE),
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, U8, 0, conv_f32d_to_u8_c),
|
2019-03-29 17:39:59 +01:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32, S8, 0, conv_f32_to_s8_c),
|
2022-06-29 17:31:32 +02:00
|
|
|
MAKE(F32P, S8P, 0, conv_f32d_to_s8d_shaped_c, 0, CONV_SHAPE),
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, S8P, 0, conv_f32d_to_s8d_noise_c, 0, CONV_NOISE),
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S8P, 0, conv_f32d_to_s8d_c),
|
|
|
|
|
MAKE(F32, S8P, 0, conv_f32_to_s8d_c),
|
2022-06-29 17:31:32 +02:00
|
|
|
MAKE(F32P, S8, 0, conv_f32d_to_s8_shaped_c, 0, CONV_SHAPE),
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, S8, 0, conv_f32d_to_s8_noise_c, 0, CONV_NOISE),
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S8, 0, conv_f32d_to_s8_c),
|
2021-05-05 08:56:59 +03:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, ALAW, 0, conv_f32d_to_alaw_c),
|
|
|
|
|
MAKE(F32P, ULAW, 0, conv_f32d_to_ulaw_c),
|
2021-08-17 17:32:25 +02:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32, U16, 0, conv_f32_to_u16_c),
|
|
|
|
|
MAKE(F32P, U16, 0, conv_f32d_to_u16_c),
|
2021-09-08 09:07:49 -04:00
|
|
|
|
2020-07-03 11:04:39 +02:00
|
|
|
#if defined (HAVE_SSE2)
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32, S16, 0, conv_f32_to_s16_sse2, SPA_CPU_FLAG_SSE2),
|
2024-09-17 08:58:14 +08:00
|
|
|
#endif
|
|
|
|
|
#if defined (HAVE_RVV)
|
|
|
|
|
MAKE(F32, S16, 0, conv_f32_to_s16_rvv, SPA_CPU_FLAG_RISCV_V),
|
2024-09-23 10:22:44 +08:00
|
|
|
MAKE(F32P, S16P, 0, conv_f32d_to_s16d_rvv, SPA_CPU_FLAG_RISCV_V),
|
2024-09-23 10:53:01 +08:00
|
|
|
MAKE(F32P, S16, 0, conv_f32d_to_s16_rvv, SPA_CPU_FLAG_RISCV_V),
|
2020-07-03 11:04:39 +02:00
|
|
|
#endif
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32, S16, 0, conv_f32_to_s16_c),
|
2020-07-03 11:04:39 +02:00
|
|
|
|
2022-06-29 17:31:32 +02:00
|
|
|
MAKE(F32P, S16P, 0, conv_f32d_to_s16d_shaped_c, 0, CONV_SHAPE),
|
2022-07-12 10:34:13 +02:00
|
|
|
#if defined (HAVE_SSE2)
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, S16P, 0, conv_f32d_to_s16d_noise_sse2, SPA_CPU_FLAG_SSE2, CONV_NOISE),
|
2022-07-12 10:34:13 +02:00
|
|
|
#endif
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, S16P, 0, conv_f32d_to_s16d_noise_c, 0, CONV_NOISE),
|
2020-07-03 11:04:39 +02:00
|
|
|
#if defined (HAVE_SSE2)
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S16P, 0, conv_f32d_to_s16d_sse2, SPA_CPU_FLAG_SSE2),
|
2020-07-03 11:04:39 +02:00
|
|
|
#endif
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S16P, 0, conv_f32d_to_s16d_c),
|
2020-07-03 11:04:39 +02:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32, S16P, 0, conv_f32_to_s16d_c),
|
2020-07-03 11:04:39 +02:00
|
|
|
|
2022-06-29 17:31:32 +02:00
|
|
|
MAKE(F32P, S16, 0, conv_f32d_to_s16_shaped_c, 0, CONV_SHAPE),
|
2022-07-12 10:34:13 +02:00
|
|
|
#if defined (HAVE_SSE2)
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, S16, 0, conv_f32d_to_s16_noise_sse2, SPA_CPU_FLAG_SSE2, CONV_NOISE),
|
2022-07-12 10:34:13 +02:00
|
|
|
#endif
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, S16, 0, conv_f32d_to_s16_noise_c, 0, CONV_NOISE),
|
2020-03-30 10:59:21 -04:00
|
|
|
#if defined (HAVE_NEON)
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S16, 0, conv_f32d_to_s16_neon, SPA_CPU_FLAG_NEON),
|
2020-03-30 10:59:21 -04:00
|
|
|
#endif
|
2020-03-16 16:11:29 +01:00
|
|
|
#if defined (HAVE_AVX2)
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S16, 4, conv_f32d_to_s16_4_avx2, SPA_CPU_FLAG_AVX2),
|
|
|
|
|
MAKE(F32P, S16, 2, conv_f32d_to_s16_2_avx2, SPA_CPU_FLAG_AVX2),
|
|
|
|
|
MAKE(F32P, S16, 0, conv_f32d_to_s16_avx2, SPA_CPU_FLAG_AVX2),
|
2020-03-16 16:11:29 +01:00
|
|
|
#endif
|
2019-03-27 17:58:48 +01:00
|
|
|
#if defined (HAVE_SSE2)
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S16, 2, conv_f32d_to_s16_2_sse2, SPA_CPU_FLAG_SSE2),
|
|
|
|
|
MAKE(F32P, S16, 0, conv_f32d_to_s16_sse2, SPA_CPU_FLAG_SSE2),
|
2018-10-29 09:21:33 +00:00
|
|
|
#endif
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S16, 0, conv_f32d_to_s16_c),
|
|
|
|
|
|
2022-06-29 17:31:32 +02:00
|
|
|
MAKE(F32P, S16_OE, 0, conv_f32d_to_s16s_shaped_c, 0, CONV_SHAPE),
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, S16_OE, 0, conv_f32d_to_s16s_noise_c, 0, CONV_NOISE),
|
2025-01-24 10:35:52 +01:00
|
|
|
#if defined (HAVE_SSE2)
|
|
|
|
|
MAKE(F32P, S16_OE, 2, conv_f32d_to_s16s_2_sse2, SPA_CPU_FLAG_SSE2),
|
|
|
|
|
MAKE(F32P, S16_OE, 0, conv_f32d_to_s16s_sse2, SPA_CPU_FLAG_SSE2),
|
|
|
|
|
#endif
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S16_OE, 0, conv_f32d_to_s16s_c),
|
2018-09-13 17:03:56 +02:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32, U32, 0, conv_f32_to_u32_c),
|
|
|
|
|
MAKE(F32P, U32, 0, conv_f32d_to_u32_c),
|
2021-08-17 14:45:00 +02:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32, S32, 0, conv_f32_to_s32_c),
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, S32P, 0, conv_f32d_to_s32d_noise_c, 0, CONV_NOISE),
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S32P, 0, conv_f32d_to_s32d_c),
|
|
|
|
|
MAKE(F32, S32P, 0, conv_f32_to_s32d_c),
|
2021-09-08 09:07:49 -04:00
|
|
|
|
2022-06-29 14:10:15 +02:00
|
|
|
#if defined (HAVE_SSE2)
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, S32, 0, conv_f32d_to_s32_noise_sse2, SPA_CPU_FLAG_SSE2, CONV_NOISE),
|
2022-06-29 14:10:15 +02:00
|
|
|
#endif
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, S32, 0, conv_f32d_to_s32_noise_c, 0, CONV_NOISE),
|
2022-06-29 14:10:15 +02:00
|
|
|
|
2020-03-16 16:11:29 +01:00
|
|
|
#if defined (HAVE_AVX2)
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S32, 0, conv_f32d_to_s32_avx2, SPA_CPU_FLAG_AVX2),
|
2020-03-16 16:11:29 +01:00
|
|
|
#endif
|
2019-03-27 17:58:48 +01:00
|
|
|
#if defined (HAVE_SSE2)
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S32, 0, conv_f32d_to_s32_sse2, SPA_CPU_FLAG_SSE2),
|
2024-09-25 13:11:08 +08:00
|
|
|
#endif
|
|
|
|
|
#if defined (HAVE_RVV)
|
|
|
|
|
MAKE(F32P, S32, 0, conv_f32d_to_s32_rvv, SPA_CPU_FLAG_RISCV_V),
|
2018-07-31 12:23:35 +02:00
|
|
|
#endif
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S32, 0, conv_f32d_to_s32_c),
|
2018-09-13 17:03:56 +02:00
|
|
|
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, S32_OE, 0, conv_f32d_to_s32s_noise_c, 0, CONV_NOISE),
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S32_OE, 0, conv_f32d_to_s32s_c),
|
2021-08-17 14:45:00 +02:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32, U24, 0, conv_f32_to_u24_c),
|
|
|
|
|
MAKE(F32P, U24, 0, conv_f32d_to_u24_c),
|
2021-09-08 09:07:49 -04:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32, S24, 0, conv_f32_to_s24_c),
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, S24P, 0, conv_f32d_to_s24d_noise_c, 0, CONV_NOISE),
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S24P, 0, conv_f32d_to_s24d_c),
|
|
|
|
|
MAKE(F32, S24P, 0, conv_f32_to_s24d_c),
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, S24, 0, conv_f32d_to_s24_noise_c, 0, CONV_NOISE),
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S24, 0, conv_f32d_to_s24_c),
|
2018-09-13 17:03:56 +02:00
|
|
|
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, S24_OE, 0, conv_f32d_to_s24s_noise_c, 0, CONV_NOISE),
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S24_OE, 0, conv_f32d_to_s24s_c),
|
2021-01-14 17:58:54 +01:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32, U24_32, 0, conv_f32_to_u24_32_c),
|
|
|
|
|
MAKE(F32P, U24_32, 0, conv_f32d_to_u24_32_c),
|
2021-09-08 09:07:49 -04:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32, S24_32, 0, conv_f32_to_s24_32_c),
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, S24_32P, 0, conv_f32d_to_s24_32d_noise_c, 0, CONV_NOISE),
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S24_32P, 0, conv_f32d_to_s24_32d_c),
|
|
|
|
|
MAKE(F32, S24_32P, 0, conv_f32_to_s24_32d_c),
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, S24_32, 0, conv_f32d_to_s24_32_noise_c, 0, CONV_NOISE),
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S24_32, 0, conv_f32d_to_s24_32_c),
|
2018-04-06 18:39:07 +02:00
|
|
|
|
2022-07-15 12:36:15 +02:00
|
|
|
MAKE(F32P, S24_32_OE, 0, conv_f32d_to_s24_32s_noise_c, 0, CONV_NOISE),
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, S24_32_OE, 0, conv_f32d_to_s24_32s_c),
|
2021-08-17 14:45:00 +02:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32, F64, 0, conv_f32_to_f64_c),
|
|
|
|
|
MAKE(F32P, F64P, 0, conv_f32d_to_f64d_c),
|
|
|
|
|
MAKE(F32, F64P, 0, conv_f32_to_f64d_c),
|
|
|
|
|
MAKE(F32P, F64, 0, conv_f32d_to_f64_c),
|
2022-01-10 13:04:31 +01:00
|
|
|
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F32P, F64_OE, 0, conv_f32d_to_f64s_c),
|
2022-01-10 13:04:31 +01:00
|
|
|
|
2018-04-06 18:39:07 +02:00
|
|
|
/* u8 */
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(U8, U8, 0, conv_copy8_c),
|
|
|
|
|
MAKE(U8P, U8P, 0, conv_copy8d_c),
|
2022-06-30 18:24:05 +02:00
|
|
|
MAKE(U8, U8P, 0, conv_8_to_8d_c),
|
|
|
|
|
MAKE(U8P, U8, 0, conv_8d_to_8_c),
|
2018-04-06 18:39:07 +02:00
|
|
|
|
2021-05-05 08:56:59 +03:00
|
|
|
/* s8 */
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S8, S8, 0, conv_copy8_c),
|
|
|
|
|
MAKE(S8P, S8P, 0, conv_copy8d_c),
|
2022-06-30 18:24:05 +02:00
|
|
|
MAKE(S8, S8P, 0, conv_8_to_8d_c),
|
|
|
|
|
MAKE(S8P, S8, 0, conv_8d_to_8_c),
|
2021-05-05 08:56:59 +03:00
|
|
|
|
2021-08-17 17:32:25 +02:00
|
|
|
/* alaw */
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(ALAW, ALAW, 0, conv_copy8_c),
|
2021-08-17 17:32:25 +02:00
|
|
|
/* ulaw */
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(ULAW, ULAW, 0, conv_copy8_c),
|
2021-08-17 17:32:25 +02:00
|
|
|
|
2018-04-06 18:39:07 +02:00
|
|
|
/* s16 */
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S16, S16, 0, conv_copy16_c),
|
|
|
|
|
MAKE(S16P, S16P, 0, conv_copy16d_c),
|
2022-06-30 18:24:05 +02:00
|
|
|
MAKE(S16, S16P, 0, conv_16_to_16d_c),
|
|
|
|
|
MAKE(S16P, S16, 0, conv_16d_to_16_c),
|
2018-04-06 18:39:07 +02:00
|
|
|
|
|
|
|
|
/* s32 */
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S32, S32, 0, conv_copy32_c),
|
|
|
|
|
MAKE(S32P, S32P, 0, conv_copy32d_c),
|
2022-03-11 13:17:10 +01:00
|
|
|
#if defined (HAVE_SSE2)
|
2022-06-30 18:24:05 +02:00
|
|
|
MAKE(S32, S32P, 0, conv_32_to_32d_sse2, SPA_CPU_FLAG_SSE2),
|
2022-03-11 13:17:10 +01:00
|
|
|
#endif
|
2022-06-30 18:24:05 +02:00
|
|
|
MAKE(S32, S32P, 0, conv_32_to_32d_c),
|
2022-03-11 13:17:10 +01:00
|
|
|
#if defined (HAVE_SSE2)
|
2022-06-30 18:24:05 +02:00
|
|
|
MAKE(S32P, S32, 0, conv_32d_to_32_sse2, SPA_CPU_FLAG_SSE2),
|
2022-03-11 13:17:10 +01:00
|
|
|
#endif
|
2022-06-30 18:24:05 +02:00
|
|
|
MAKE(S32P, S32, 0, conv_32d_to_32_c),
|
2018-04-06 18:39:07 +02:00
|
|
|
|
|
|
|
|
/* s24 */
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S24, S24, 0, conv_copy24_c),
|
|
|
|
|
MAKE(S24P, S24P, 0, conv_copy24d_c),
|
2022-06-30 18:24:05 +02:00
|
|
|
MAKE(S24, S24P, 0, conv_24_to_24d_c),
|
|
|
|
|
MAKE(S24P, S24, 0, conv_24d_to_24_c),
|
2018-04-06 18:39:07 +02:00
|
|
|
|
|
|
|
|
/* s24_32 */
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(S24_32, S24_32, 0, conv_copy32_c),
|
|
|
|
|
MAKE(S24_32P, S24_32P, 0, conv_copy32d_c),
|
2022-03-11 13:17:10 +01:00
|
|
|
#if defined (HAVE_SSE2)
|
2022-06-30 18:24:05 +02:00
|
|
|
MAKE(S24_32, S24_32P, 0, conv_32_to_32d_sse2, SPA_CPU_FLAG_SSE2),
|
2022-03-11 13:17:10 +01:00
|
|
|
#endif
|
2022-06-30 18:24:05 +02:00
|
|
|
MAKE(S24_32, S24_32P, 0, conv_32_to_32d_c),
|
2022-03-11 13:17:10 +01:00
|
|
|
#if defined (HAVE_SSE2)
|
2022-06-30 18:24:05 +02:00
|
|
|
MAKE(S24_32P, S24_32, 0, conv_32d_to_32_sse2, SPA_CPU_FLAG_SSE2),
|
2022-03-11 13:17:10 +01:00
|
|
|
#endif
|
2022-06-30 18:24:05 +02:00
|
|
|
MAKE(S24_32P, S24_32, 0, conv_32d_to_32_c),
|
2022-01-10 13:04:31 +01:00
|
|
|
|
|
|
|
|
/* F64 */
|
2022-06-28 16:55:50 +02:00
|
|
|
MAKE(F64, F64, 0, conv_copy64_c),
|
|
|
|
|
MAKE(F64P, F64P, 0, conv_copy64d_c),
|
2022-06-30 18:24:05 +02:00
|
|
|
MAKE(F64, F64P, 0, conv_64_to_64d_c),
|
|
|
|
|
MAKE(F64P, F64, 0, conv_64d_to_64_c),
|
2018-04-06 18:39:07 +02:00
|
|
|
};
|
2022-06-28 16:55:50 +02:00
|
|
|
#undef MAKE
|
2018-04-06 18:39:07 +02:00
|
|
|
|
2019-03-29 17:39:59 +01:00
|
|
|
#define MATCH_CHAN(a,b) ((a) == 0 || (a) == (b))
|
|
|
|
|
#define MATCH_CPU_FLAGS(a,b) ((a) == 0 || ((a) & (b)) == a)
|
2022-06-28 16:55:50 +02:00
|
|
|
#define MATCH_DITHER(a,b) ((a) == 0 || ((a) & (b)) == a)
|
2019-03-29 17:39:59 +01:00
|
|
|
|
|
|
|
|
static const struct conv_info *find_conv_info(uint32_t src_fmt, uint32_t dst_fmt,
|
2022-07-15 12:36:15 +02:00
|
|
|
uint32_t n_channels, uint32_t cpu_flags, uint32_t conv_flags)
|
2018-04-06 18:39:07 +02:00
|
|
|
{
|
2022-09-30 16:21:28 +02:00
|
|
|
SPA_FOR_EACH_ELEMENT_VAR(conv_table, c) {
|
|
|
|
|
if (c->src_fmt == src_fmt &&
|
|
|
|
|
c->dst_fmt == dst_fmt &&
|
|
|
|
|
MATCH_CHAN(c->n_channels, n_channels) &&
|
|
|
|
|
MATCH_CPU_FLAGS(c->cpu_flags, cpu_flags) &&
|
|
|
|
|
MATCH_DITHER(c->conv_flags, conv_flags))
|
|
|
|
|
return c;
|
2018-04-06 18:39:07 +02:00
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2019-03-29 17:39:59 +01:00
|
|
|
|
2025-07-01 18:06:39 +02:00
|
|
|
|
|
|
|
|
typedef void (*clear_func_t) (struct convert *conv, void * SPA_RESTRICT dst[],
|
|
|
|
|
uint32_t n_samples);
|
|
|
|
|
|
|
|
|
|
struct clear_info {
|
|
|
|
|
uint32_t fmt;
|
|
|
|
|
|
|
|
|
|
clear_func_t clear;
|
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
|
|
uint32_t cpu_flags;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define MAKE(fmt,func,...) \
|
|
|
|
|
{ SPA_AUDIO_FORMAT_ ##fmt, func, #func , __VA_ARGS__ }
|
|
|
|
|
|
|
|
|
|
static struct clear_info clear_table[] =
|
|
|
|
|
{
|
|
|
|
|
MAKE(U8, conv_clear_u8_c),
|
|
|
|
|
MAKE(U8P, conv_clear_u8d_c),
|
|
|
|
|
MAKE(S8, conv_clear_8_c),
|
|
|
|
|
MAKE(S8P, conv_clear_8d_c),
|
|
|
|
|
MAKE(U16, conv_clear_u16_c),
|
|
|
|
|
MAKE(S16, conv_clear_16_c),
|
|
|
|
|
MAKE(S16_OE, conv_clear_16_c),
|
|
|
|
|
MAKE(S16P, conv_clear_16d_c),
|
|
|
|
|
MAKE(U24, conv_clear_u24_c),
|
|
|
|
|
MAKE(S24, conv_clear_24_c),
|
|
|
|
|
MAKE(S24_OE, conv_clear_24_c),
|
|
|
|
|
MAKE(S24P, conv_clear_24d_c),
|
|
|
|
|
MAKE(U24_32, conv_clear_u24_32_c),
|
|
|
|
|
MAKE(S24_32, conv_clear_32_c),
|
|
|
|
|
MAKE(S24_32_OE, conv_clear_32_c),
|
|
|
|
|
MAKE(U32, conv_clear_u32_c),
|
|
|
|
|
MAKE(S32, conv_clear_32_c),
|
|
|
|
|
MAKE(S32_OE, conv_clear_32_c),
|
|
|
|
|
MAKE(S32P, conv_clear_32d_c),
|
|
|
|
|
MAKE(F32, conv_clear_32_c),
|
|
|
|
|
MAKE(F32_OE, conv_clear_32_c),
|
|
|
|
|
MAKE(F32P, conv_clear_32d_c),
|
|
|
|
|
MAKE(F64, conv_clear_64_c),
|
|
|
|
|
MAKE(F64_OE, conv_clear_64_c),
|
|
|
|
|
MAKE(F64P, conv_clear_64d_c),
|
|
|
|
|
MAKE(ALAW, conv_clear_alaw_c),
|
|
|
|
|
MAKE(ULAW, conv_clear_ulaw_c),
|
|
|
|
|
};
|
|
|
|
|
#undef MAKE
|
|
|
|
|
|
|
|
|
|
static const struct clear_info *find_clear_info(uint32_t fmt, uint32_t cpu_flags)
|
|
|
|
|
{
|
|
|
|
|
SPA_FOR_EACH_ELEMENT_VAR(clear_table, c) {
|
|
|
|
|
if (c->fmt == fmt &&
|
|
|
|
|
MATCH_CPU_FLAGS(c->cpu_flags, cpu_flags))
|
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-29 20:34:15 +02:00
|
|
|
typedef void (*noise_func_t) (struct convert *conv, float * noise, uint32_t n_samples);
|
|
|
|
|
|
|
|
|
|
struct noise_info {
|
|
|
|
|
uint32_t method;
|
|
|
|
|
|
|
|
|
|
noise_func_t noise;
|
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
|
|
uint32_t cpu_flags;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define MAKE(method,func,...) \
|
|
|
|
|
{ NOISE_METHOD_ ##method, func, #func , __VA_ARGS__ }
|
|
|
|
|
|
|
|
|
|
static struct noise_info noise_table[] =
|
|
|
|
|
{
|
|
|
|
|
#if defined (HAVE_SSE2)
|
|
|
|
|
MAKE(RECTANGULAR, conv_noise_rect_sse2, SPA_CPU_FLAG_SSE2),
|
|
|
|
|
MAKE(TRIANGULAR, conv_noise_tri_sse2, SPA_CPU_FLAG_SSE2),
|
|
|
|
|
MAKE(TRIANGULAR_HF, conv_noise_tri_hf_sse2, SPA_CPU_FLAG_SSE2),
|
|
|
|
|
#endif
|
|
|
|
|
MAKE(NONE, conv_noise_none_c),
|
|
|
|
|
MAKE(RECTANGULAR, conv_noise_rect_c),
|
|
|
|
|
MAKE(TRIANGULAR, conv_noise_tri_c),
|
|
|
|
|
MAKE(TRIANGULAR_HF, conv_noise_tri_hf_c),
|
|
|
|
|
MAKE(PATTERN, conv_noise_pattern_c),
|
|
|
|
|
};
|
|
|
|
|
#undef MAKE
|
|
|
|
|
|
|
|
|
|
static const struct noise_info *find_noise_info(uint32_t method,
|
|
|
|
|
uint32_t cpu_flags)
|
|
|
|
|
{
|
2022-09-30 16:21:28 +02:00
|
|
|
SPA_FOR_EACH_ELEMENT_VAR(noise_table, t) {
|
|
|
|
|
if (t->method == method &&
|
|
|
|
|
MATCH_CPU_FLAGS(t->cpu_flags, cpu_flags))
|
|
|
|
|
return t;
|
2022-09-29 20:34:15 +02:00
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-29 17:39:59 +01:00
|
|
|
static void impl_convert_free(struct convert *conv)
|
|
|
|
|
{
|
|
|
|
|
conv->process = NULL;
|
2022-09-29 20:34:15 +02:00
|
|
|
free(conv->data);
|
|
|
|
|
conv->data = NULL;
|
2019-03-29 17:39:59 +01:00
|
|
|
}
|
|
|
|
|
|
2022-06-29 14:10:15 +02:00
|
|
|
static bool need_dither(uint32_t format)
|
|
|
|
|
{
|
|
|
|
|
switch (format) {
|
|
|
|
|
case SPA_AUDIO_FORMAT_U8:
|
|
|
|
|
case SPA_AUDIO_FORMAT_U8P:
|
|
|
|
|
case SPA_AUDIO_FORMAT_S8:
|
|
|
|
|
case SPA_AUDIO_FORMAT_S8P:
|
|
|
|
|
case SPA_AUDIO_FORMAT_ULAW:
|
|
|
|
|
case SPA_AUDIO_FORMAT_ALAW:
|
|
|
|
|
case SPA_AUDIO_FORMAT_S16P:
|
|
|
|
|
case SPA_AUDIO_FORMAT_S16:
|
|
|
|
|
case SPA_AUDIO_FORMAT_S16_OE:
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-15 12:36:15 +02:00
|
|
|
/* filters based on F-weighted curves
|
|
|
|
|
* from 'Psychoacoustically Optimal Noise Shaping' (**)
|
|
|
|
|
* this filter is the "F-Weighted" noise filter described by Wannamaker
|
|
|
|
|
* It is designed to produce minimum audibility: */
|
|
|
|
|
static const float wan3[] = { /* Table 3; 3 Coefficients */
|
|
|
|
|
1.623f, -0.982f, 0.109f
|
|
|
|
|
};
|
|
|
|
|
/* Noise shaping coefficients from[1], moves most power of the
|
|
|
|
|
* error noise into inaudible frequency ranges.
|
|
|
|
|
*
|
|
|
|
|
* [1]
|
|
|
|
|
* "Minimally Audible Noise Shaping", Stanley P. Lipshitz,
|
|
|
|
|
* John Vanderkooy, and Robert A. Wannamaker,
|
|
|
|
|
* J. Audio Eng. Soc., Vol. 39, No. 11, November 1991. */
|
|
|
|
|
static const float lips44[] = { /* improved E-weighted (appendix: 5) */
|
|
|
|
|
2.033f, -2.165f, 1.959f, -1.590f, 0.6149f
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const struct dither_info {
|
|
|
|
|
uint32_t method;
|
|
|
|
|
uint32_t noise_method;
|
|
|
|
|
uint32_t rate;
|
|
|
|
|
const float *ns;
|
|
|
|
|
uint32_t n_ns;
|
|
|
|
|
} dither_info[] = {
|
|
|
|
|
{ DITHER_METHOD_NONE, NOISE_METHOD_NONE, },
|
|
|
|
|
{ DITHER_METHOD_RECTANGULAR, NOISE_METHOD_RECTANGULAR, },
|
|
|
|
|
{ DITHER_METHOD_TRIANGULAR, NOISE_METHOD_TRIANGULAR, },
|
|
|
|
|
{ DITHER_METHOD_TRIANGULAR_HF, NOISE_METHOD_TRIANGULAR_HF, },
|
2022-07-18 10:21:56 +02:00
|
|
|
{ DITHER_METHOD_WANNAMAKER_3, NOISE_METHOD_TRIANGULAR_HF, 44100, wan3, SPA_N_ELEMENTS(wan3) },
|
2022-07-15 12:36:15 +02:00
|
|
|
{ DITHER_METHOD_LIPSHITZ, NOISE_METHOD_TRIANGULAR, 44100, lips44, SPA_N_ELEMENTS(lips44) }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const struct dither_info *find_dither_info(uint32_t method, uint32_t rate)
|
|
|
|
|
{
|
2022-09-30 16:21:28 +02:00
|
|
|
SPA_FOR_EACH_ELEMENT_VAR(dither_info, di) {
|
2022-07-15 12:36:15 +02:00
|
|
|
if (di->method != method)
|
|
|
|
|
continue;
|
|
|
|
|
/* don't use shaped for too low rates, it moves the noise to
|
|
|
|
|
* audible ranges */
|
|
|
|
|
if (di->ns != NULL && rate < di->rate * 3 / 4)
|
|
|
|
|
return find_dither_info(DITHER_METHOD_TRIANGULAR_HF, rate);
|
2022-09-30 16:21:28 +02:00
|
|
|
return di;
|
2022-07-15 12:36:15 +02:00
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-29 17:39:59 +01:00
|
|
|
int convert_init(struct convert *conv)
|
|
|
|
|
{
|
|
|
|
|
const struct conv_info *info;
|
2022-07-15 12:36:15 +02:00
|
|
|
const struct dither_info *dinfo;
|
2022-09-29 20:34:15 +02:00
|
|
|
const struct noise_info *ninfo;
|
2025-07-01 18:06:39 +02:00
|
|
|
const struct clear_info *cinfo;
|
2025-10-24 12:46:38 +02:00
|
|
|
uint32_t i, conv_flags, data_size[4];
|
2022-06-29 14:10:15 +02:00
|
|
|
|
2024-06-13 11:38:26 +02:00
|
|
|
/* we generate int32 bits of random values. With this scale
|
|
|
|
|
* factor, we bring this in the [-1.0, 1.0] range */
|
2022-07-11 17:19:28 +02:00
|
|
|
conv->scale = 1.0f / (float)(INT32_MAX);
|
|
|
|
|
|
2022-06-29 14:10:15 +02:00
|
|
|
/* disable dither if not needed */
|
|
|
|
|
if (!need_dither(conv->dst_fmt))
|
|
|
|
|
conv->method = DITHER_METHOD_NONE;
|
2022-06-28 16:55:50 +02:00
|
|
|
|
2022-07-15 12:36:15 +02:00
|
|
|
dinfo = find_dither_info(conv->method, conv->rate);
|
|
|
|
|
if (dinfo == NULL)
|
|
|
|
|
return -EINVAL;
|
2022-06-28 16:55:50 +02:00
|
|
|
|
2022-07-15 12:36:15 +02:00
|
|
|
conv->noise_method = dinfo->noise_method;
|
2022-07-18 11:39:24 +02:00
|
|
|
if (conv->noise_bits > 0) {
|
|
|
|
|
switch (conv->noise_method) {
|
|
|
|
|
case NOISE_METHOD_NONE:
|
|
|
|
|
conv->noise_method = NOISE_METHOD_PATTERN;
|
2024-06-13 11:38:26 +02:00
|
|
|
/* the pattern method does not use a random number
|
|
|
|
|
* but flips the noise between [-(1<<(N-1)), 0] every
|
|
|
|
|
* 1024 samples. */
|
2022-07-18 11:39:24 +02:00
|
|
|
conv->scale = -1.0f * (1 << (conv->noise_bits-1));
|
|
|
|
|
break;
|
|
|
|
|
case NOISE_METHOD_RECTANGULAR:
|
|
|
|
|
conv->noise_method = NOISE_METHOD_TRIANGULAR;
|
|
|
|
|
SPA_FALLTHROUGH;
|
|
|
|
|
case NOISE_METHOD_TRIANGULAR:
|
|
|
|
|
case NOISE_METHOD_TRIANGULAR_HF:
|
2024-06-13 11:38:26 +02:00
|
|
|
/* Amplify the random noise, with additional
|
|
|
|
|
* N-1 bits of noise. */
|
2022-07-18 11:39:24 +02:00
|
|
|
conv->scale *= (1 << (conv->noise_bits-1));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-06-13 11:38:26 +02:00
|
|
|
/* RECTANGULAR dither goes from [-0.5, 0.5] */
|
2022-07-15 12:36:15 +02:00
|
|
|
if (conv->noise_method < NOISE_METHOD_TRIANGULAR)
|
2022-07-11 17:50:20 +02:00
|
|
|
conv->scale *= 0.5f;
|
|
|
|
|
|
2022-07-15 12:36:15 +02:00
|
|
|
conv_flags = 0;
|
|
|
|
|
if (conv->noise_method != NOISE_METHOD_NONE)
|
|
|
|
|
conv_flags |= CONV_NOISE;
|
|
|
|
|
if (dinfo->n_ns > 0) {
|
|
|
|
|
conv_flags |= CONV_SHAPE;
|
|
|
|
|
conv->n_ns = dinfo->n_ns;
|
|
|
|
|
conv->ns = dinfo->ns;
|
|
|
|
|
}
|
2022-06-28 16:55:50 +02:00
|
|
|
|
|
|
|
|
info = find_conv_info(conv->src_fmt, conv->dst_fmt, conv->n_channels,
|
2022-07-15 12:36:15 +02:00
|
|
|
conv->cpu_flags, conv_flags);
|
2019-03-29 17:39:59 +01:00
|
|
|
if (info == NULL)
|
|
|
|
|
return -ENOTSUP;
|
|
|
|
|
|
2022-09-29 20:34:15 +02:00
|
|
|
ninfo = find_noise_info(conv->noise_method, conv->cpu_flags);
|
|
|
|
|
if (ninfo == NULL)
|
|
|
|
|
return -ENOTSUP;
|
|
|
|
|
|
2025-07-01 18:06:39 +02:00
|
|
|
cinfo = find_clear_info(conv->dst_fmt, conv->cpu_flags);
|
|
|
|
|
|
2022-09-29 20:34:15 +02:00
|
|
|
conv->noise_size = NOISE_SIZE;
|
|
|
|
|
|
|
|
|
|
data_size[0] = SPA_ROUND_UP(conv->noise_size * sizeof(float), FMT_OPS_MAX_ALIGN);
|
|
|
|
|
data_size[1] = SPA_ROUND_UP(RANDOM_SIZE * sizeof(uint32_t), FMT_OPS_MAX_ALIGN);
|
|
|
|
|
data_size[2] = SPA_ROUND_UP(RANDOM_SIZE * sizeof(int32_t), FMT_OPS_MAX_ALIGN);
|
2025-10-24 12:46:38 +02:00
|
|
|
data_size[3] = SPA_ROUND_UP(conv->n_channels * sizeof(struct shaper), FMT_OPS_MAX_ALIGN);
|
2022-09-29 20:34:15 +02:00
|
|
|
|
|
|
|
|
conv->data = calloc(FMT_OPS_MAX_ALIGN +
|
2025-10-24 12:46:38 +02:00
|
|
|
data_size[0] + data_size[1] + data_size[2] + data_size[3], 1);
|
2022-09-29 20:34:15 +02:00
|
|
|
if (conv->data == NULL)
|
2022-06-28 16:55:50 +02:00
|
|
|
return -errno;
|
|
|
|
|
|
2022-09-29 20:34:15 +02:00
|
|
|
conv->noise = SPA_PTR_ALIGN(conv->data, FMT_OPS_MAX_ALIGN, float);
|
|
|
|
|
conv->random = SPA_PTROFF(conv->noise, data_size[0], uint32_t);
|
|
|
|
|
conv->prev = SPA_PTROFF(conv->random, data_size[1], int32_t);
|
2025-10-24 12:46:38 +02:00
|
|
|
conv->shaper = SPA_PTROFF(conv->prev, data_size[2], struct shaper);
|
2022-09-29 20:34:15 +02:00
|
|
|
|
|
|
|
|
for (i = 0; i < RANDOM_SIZE; i++)
|
2022-06-28 16:55:50 +02:00
|
|
|
conv->random[i] = random();
|
|
|
|
|
|
2019-03-29 17:39:59 +01:00
|
|
|
conv->is_passthrough = conv->src_fmt == conv->dst_fmt;
|
|
|
|
|
conv->cpu_flags = info->cpu_flags;
|
2022-09-29 20:34:15 +02:00
|
|
|
conv->update_noise = ninfo->noise;
|
2019-03-29 17:39:59 +01:00
|
|
|
conv->process = info->process;
|
2025-07-01 18:06:39 +02:00
|
|
|
conv->clear = cinfo ? cinfo->clear : NULL;
|
2019-03-29 17:39:59 +01:00
|
|
|
conv->free = impl_convert_free;
|
2022-06-28 16:55:50 +02:00
|
|
|
conv->func_name = info->name;
|
2019-03-29 17:39:59 +01:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|