shithub: ft²

Download patch

ref: 78736768bfa31d145f954f6d65c7199f9a49ce27
parent: 0ea4b9cc0e6cf55d8c947413b51561aec3f03ba5
author: Olav Sørensen <olav.sorensen@live.no>
date: Fri Jan 17 14:47:15 EST 2025

Update ft2_windowed_sinc.c

--- a/src/mixer/ft2_windowed_sinc.c
+++ b/src/mixer/ft2_windowed_sinc.c
@@ -94,9 +94,9 @@
 	sincRatio2 = (uint64_t)(ratio2 * MIXER_FRAC_SCALE);
 
 	// Kaiser-Bessel (window) beta (could maybe use some further tweaking)
-	const double b1 = 9.6;
+	const double b1 = 9.4;
 	const double b2 = 8.5;
-	const double b3 = 7.3;
+	const double b3 = 7.0;
 
 	// sinc low-pass cutoff (could maybe use some further tweaking)
 	const double c1 = 1.000;
--