| 
									
										
										
										
											2018-04-02 11:21:29 +02:00
										 |  |  | /* Spa
 | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-11-05 17:48:52 +01:00
										 |  |  |  * Copyright © 2018 Wim Taymans | 
					
						
							| 
									
										
										
										
											2018-04-02 11:21:29 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-11-05 17:48:52 +01:00
										 |  |  |  * 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: | 
					
						
							| 
									
										
										
										
											2018-04-02 11:21:29 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-11-05 17:48:52 +01:00
										 |  |  |  * 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. | 
					
						
							| 
									
										
										
										
											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-06-28 16:55:50 +02:00
										 |  |  | #define DITHER_SIZE	(1<<10)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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), | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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), | 
					
						
							| 
									
										
										
										
											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), | 
					
						
							| 
									
										
										
										
											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), | 
					
						
							| 
									
										
										
										
											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), | 
					
						
							| 
									
										
										
										
											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
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-01-07 15:52:42 +01:00
										 |  |  | 	size_t i; | 
					
						
							| 
									
										
										
										
											2018-04-06 18:39:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < SPA_N_ELEMENTS(conv_table); i++) { | 
					
						
							| 
									
										
										
										
											2018-08-23 17:47:57 +02:00
										 |  |  | 		if (conv_table[i].src_fmt == src_fmt && | 
					
						
							|  |  |  | 		    conv_table[i].dst_fmt == dst_fmt && | 
					
						
							| 
									
										
										
										
											2019-03-29 17:39:59 +01:00
										 |  |  | 		    MATCH_CHAN(conv_table[i].n_channels, n_channels) && | 
					
						
							| 
									
										
										
										
											2022-06-28 16:55:50 +02:00
										 |  |  | 		    MATCH_CPU_FLAGS(conv_table[i].cpu_flags, cpu_flags) && | 
					
						
							| 
									
										
										
										
											2022-07-15 12:36:15 +02:00
										 |  |  | 		    MATCH_DITHER(conv_table[i].conv_flags, conv_flags)) | 
					
						
							| 
									
										
										
										
											2018-04-06 18:39:07 +02:00
										 |  |  | 			return &conv_table[i]; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-03-29 17:39:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | static void impl_convert_free(struct convert *conv) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	conv->process = NULL; | 
					
						
							| 
									
										
										
										
											2022-07-15 12:36:15 +02:00
										 |  |  | 	free(conv->noise); | 
					
						
							|  |  |  | 	conv->noise = 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) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	size_t i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < SPA_N_ELEMENTS(dither_info); i++) { | 
					
						
							|  |  |  | 		const struct dither_info *di = &dither_info[i]; | 
					
						
							|  |  |  | 		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); | 
					
						
							|  |  |  | 		return &dither_info[i]; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	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; | 
					
						
							|  |  |  | 	uint32_t i, conv_flags; | 
					
						
							| 
									
										
										
										
											2022-06-29 14:10:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-11 17:19:28 +02:00
										 |  |  | 	conv->scale = 1.0f / (float)(INT32_MAX); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-15 12:36:15 +02:00
										 |  |  | 	if (conv->noise_bits > 0) | 
					
						
							|  |  |  | 		conv->scale *= (1 << (conv->noise_bits + 1)); | 
					
						
							| 
									
										
										
										
											2019-03-29 17:39:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 	if (conv->noise_bits && conv->noise_method == NOISE_METHOD_NONE) | 
					
						
							|  |  |  | 		conv->noise_method = NOISE_METHOD_RECTANGULAR; | 
					
						
							|  |  |  | 	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-07-15 12:36:15 +02:00
										 |  |  | 	conv->noise_size = DITHER_SIZE; | 
					
						
							|  |  |  | 	conv->noise = calloc(conv->noise_size + 16 + | 
					
						
							| 
									
										
										
										
											2022-06-28 16:55:50 +02:00
										 |  |  | 			FMT_OPS_MAX_ALIGN / sizeof(float), sizeof(float)); | 
					
						
							| 
									
										
										
										
											2022-07-15 12:36:15 +02:00
										 |  |  | 	if (conv->noise == NULL) | 
					
						
							| 
									
										
										
										
											2022-06-28 16:55:50 +02:00
										 |  |  | 		return -errno; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < SPA_N_ELEMENTS(conv->random); i++) | 
					
						
							|  |  |  | 		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; | 
					
						
							|  |  |  | 	conv->process = info->process; | 
					
						
							|  |  |  | 	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; | 
					
						
							|  |  |  | } |