resample: switch to cosh window function

This commit is contained in:
Wim Taymans 2022-07-07 12:26:45 +02:00
parent 57f0fdf746
commit 4a82cb74e8

View file

@ -75,7 +75,7 @@ static inline double window_cosh(double x, double n_taps)
return r;
}
#define window window_blackman
#define window window_cosh
static int build_filter(float *taps, uint32_t stride, uint32_t n_taps, uint32_t n_phases, double cutoff)
{