mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	When interpolating with rate correction != 1.0, don't floor the resulting input rate to the nearest smallest integer. This allows rate corrections < 1/in_rate to have some effect, and reduces jumps in the response. One of the jumps is inconveniently between rate=1.0 and rate=1.0+eps and will cause rate corrections to oscillate if target rate varies close to 1.0.
		
			
				
	
	
		
			176 lines
		
	
	
	
		
			5.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			176 lines
		
	
	
	
		
			5.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* Spa */
 | 
						|
/* SPDX-FileCopyrightText: Copyright © 2019 Wim Taymans */
 | 
						|
/* SPDX-License-Identifier: MIT */
 | 
						|
 | 
						|
#include <math.h>
 | 
						|
 | 
						|
#include <spa/utils/defs.h>
 | 
						|
 | 
						|
#include "resample.h"
 | 
						|
 | 
						|
typedef void (*resample_func_t)(struct resample *r,
 | 
						|
        const void * SPA_RESTRICT src[], uint32_t ioffs, uint32_t *in_len,
 | 
						|
        void * SPA_RESTRICT dst[], uint32_t ooffs, uint32_t *out_len);
 | 
						|
 | 
						|
#define FIXP_SHIFT		32
 | 
						|
#define FIXP_SCALE		((uint64_t)1 << FIXP_SHIFT)
 | 
						|
#define FIXP_MASK		(FIXP_SCALE - 1)
 | 
						|
#define UINT32_TO_FIXP(v)	((struct fixp) { (uint64_t)((uint32_t)(v)) << FIXP_SHIFT })
 | 
						|
#define FLOAT_TO_FIXP(d)	((struct fixp) { (uint64_t)((d) * (float)FIXP_SCALE) })
 | 
						|
#define FIXP_TO_UINT32(f)	((f).value >> FIXP_SHIFT)
 | 
						|
#define FIXP_TO_FLOAT(f)	((f).value / (float)FIXP_SCALE)
 | 
						|
 | 
						|
struct fixp {
 | 
						|
	uint64_t value;
 | 
						|
};
 | 
						|
 | 
						|
struct resample_info {
 | 
						|
	uint32_t format;
 | 
						|
	resample_func_t process_copy;
 | 
						|
	const char *copy_name;
 | 
						|
	resample_func_t process_full;
 | 
						|
	const char *full_name;
 | 
						|
	resample_func_t process_inter;
 | 
						|
	const char *inter_name;
 | 
						|
	uint32_t cpu_flags;
 | 
						|
};
 | 
						|
 | 
						|
struct native_data {
 | 
						|
	double rate;
 | 
						|
	uint32_t n_taps;
 | 
						|
	uint32_t n_phases;
 | 
						|
	struct fixp in_rate;
 | 
						|
	uint32_t out_rate;
 | 
						|
	struct fixp phase;
 | 
						|
	float pm;
 | 
						|
	uint32_t inc;
 | 
						|
	struct fixp frac;
 | 
						|
	uint32_t filter_stride;
 | 
						|
	uint32_t filter_stride_os;
 | 
						|
	uint32_t gcd;
 | 
						|
	uint32_t hist;
 | 
						|
	float **history;
 | 
						|
	resample_func_t func;
 | 
						|
	float *filter;
 | 
						|
	float *hist_mem;
 | 
						|
	const struct resample_info *info;
 | 
						|
};
 | 
						|
 | 
						|
#define DEFINE_RESAMPLER(type,arch)						\
 | 
						|
void do_resample_##type##_##arch(struct resample *r,				\
 | 
						|
	const void * SPA_RESTRICT src[], uint32_t ioffs, uint32_t *in_len,	\
 | 
						|
	void * SPA_RESTRICT dst[], uint32_t ooffs, uint32_t *out_len)
 | 
						|
 | 
						|
#define MAKE_RESAMPLER_COPY(arch)						\
 | 
						|
DEFINE_RESAMPLER(copy,arch)							\
 | 
						|
{										\
 | 
						|
	struct native_data *data = r->data;					\
 | 
						|
	uint32_t index, n_taps = data->n_taps, n_taps2 = n_taps/2;		\
 | 
						|
	uint32_t c, olen = *out_len, ilen = *in_len, ch = r->channels;		\
 | 
						|
										\
 | 
						|
	index = ioffs;								\
 | 
						|
	if (ooffs < olen && index + n_taps <= ilen) {				\
 | 
						|
		uint32_t to_copy = SPA_MIN(olen - ooffs,			\
 | 
						|
				ilen - (index + n_taps) + 1);			\
 | 
						|
		for (c = 0; c < ch; c++) {					\
 | 
						|
			const float *s = src[c];				\
 | 
						|
			float *d = dst[c];					\
 | 
						|
			spa_memcpy(&d[ooffs], &s[index + n_taps2],		\
 | 
						|
					to_copy * sizeof(float));		\
 | 
						|
		}								\
 | 
						|
		index += to_copy;						\
 | 
						|
		ooffs += to_copy;						\
 | 
						|
	}									\
 | 
						|
	*in_len = index;							\
 | 
						|
	*out_len = ooffs;							\
 | 
						|
}
 | 
						|
 | 
						|
#define INC(index,phase,n_phases) 						\
 | 
						|
	index += inc;								\
 | 
						|
	phase += frac;								\
 | 
						|
	if (phase >= n_phases) {						\
 | 
						|
		phase -= n_phases;						\
 | 
						|
		index += 1;							\
 | 
						|
	}
 | 
						|
 | 
						|
#define MAKE_RESAMPLER_FULL(arch)						\
 | 
						|
DEFINE_RESAMPLER(full,arch)							\
 | 
						|
{										\
 | 
						|
	struct native_data *data = r->data;					\
 | 
						|
	uint32_t n_taps = data->n_taps, stride = data->filter_stride_os;	\
 | 
						|
	uint32_t index;								\
 | 
						|
	uint32_t c, o, olen = *out_len, ilen = *in_len;				\
 | 
						|
	uint32_t inc = data->inc, ch = r->channels;				\
 | 
						|
	uint64_t frac = data->frac.value, phase = data->phase.value;		\
 | 
						|
	uint64_t denom = UINT32_TO_FIXP(data->out_rate).value;			\
 | 
						|
										\
 | 
						|
	index = ioffs;								\
 | 
						|
	for (o = ooffs; o < olen && index + n_taps <= ilen; o++) {		\
 | 
						|
		float *filter = &data->filter[(phase >> FIXP_SHIFT) * stride];	\
 | 
						|
		for (c = 0; c < ch; c++) {					\
 | 
						|
			const float *s = src[c];				\
 | 
						|
			float *d = dst[c];					\
 | 
						|
			inner_product_##arch(&d[o], &s[index],			\
 | 
						|
					filter, n_taps);			\
 | 
						|
		}								\
 | 
						|
		INC(index, phase, denom);					\
 | 
						|
	}									\
 | 
						|
	*in_len = index;							\
 | 
						|
	*out_len = o;								\
 | 
						|
	data->phase.value = phase;						\
 | 
						|
}
 | 
						|
 | 
						|
#define MAKE_RESAMPLER_INTER(arch)						\
 | 
						|
DEFINE_RESAMPLER(inter,arch)							\
 | 
						|
{										\
 | 
						|
	struct native_data *data = r->data;					\
 | 
						|
	uint32_t index, stride = data->filter_stride;				\
 | 
						|
	uint32_t n_taps = data->n_taps;						\
 | 
						|
	uint32_t c, o, olen = *out_len, ilen = *in_len;				\
 | 
						|
	uint32_t inc = data->inc, ch = r->channels;				\
 | 
						|
	uint32_t ph_max = data->n_phases - 1;					\
 | 
						|
	uint64_t frac = data->frac.value, phase = data->phase.value;		\
 | 
						|
	uint64_t denom = UINT32_TO_FIXP(data->out_rate).value;			\
 | 
						|
	float pm = data->pm;							\
 | 
						|
										\
 | 
						|
	index = ioffs;								\
 | 
						|
	for (o = ooffs; o < olen && index + n_taps <= ilen; o++) {		\
 | 
						|
		float ph = phase * pm;						\
 | 
						|
		uint32_t offset = SPA_MIN((uint32_t)floorf(ph), ph_max);	\
 | 
						|
		float *filter0 = &data->filter[(offset+0) * stride];		\
 | 
						|
		float *filter1 = &data->filter[(offset+1) * stride];		\
 | 
						|
		float pho = ph - offset;					\
 | 
						|
		for (c = 0; c < ch; c++) {					\
 | 
						|
			const float *s = src[c];				\
 | 
						|
			float *d = dst[c];					\
 | 
						|
			inner_product_ip_##arch(&d[o], &s[index],		\
 | 
						|
					filter0, filter1, pho, n_taps);		\
 | 
						|
		}								\
 | 
						|
		INC(index, phase, denom);					\
 | 
						|
	}									\
 | 
						|
	*in_len = index;							\
 | 
						|
	*out_len = o;								\
 | 
						|
	data->phase.value = phase;						\
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
DEFINE_RESAMPLER(copy,c);
 | 
						|
DEFINE_RESAMPLER(full,c);
 | 
						|
DEFINE_RESAMPLER(inter,c);
 | 
						|
 | 
						|
#if defined (HAVE_NEON)
 | 
						|
DEFINE_RESAMPLER(full,neon);
 | 
						|
DEFINE_RESAMPLER(inter,neon);
 | 
						|
#endif
 | 
						|
#if defined (HAVE_SSE)
 | 
						|
DEFINE_RESAMPLER(full,sse);
 | 
						|
DEFINE_RESAMPLER(inter,sse);
 | 
						|
#endif
 | 
						|
#if defined (HAVE_SSSE3)
 | 
						|
DEFINE_RESAMPLER(full,ssse3);
 | 
						|
DEFINE_RESAMPLER(inter,ssse3);
 | 
						|
#endif
 | 
						|
#if defined (HAVE_AVX) && defined(HAVE_FMA)
 | 
						|
DEFINE_RESAMPLER(full,avx);
 | 
						|
DEFINE_RESAMPLER(inter,avx);
 | 
						|
#endif
 |