diff --git a/src/sfizz/Voice.cpp b/src/sfizz/Voice.cpp index fa6e4262..a759dee5 100644 --- a/src/sfizz/Voice.cpp +++ b/src/sfizz/Voice.cpp @@ -1162,11 +1162,11 @@ void Voice::Impl::fillInterpolatedWithQuality( break; case 2: high: { -#if 1 +#if 0 // B-spline response has faster decay of aliasing, but not zero-crossings at integer positions constexpr auto itp = kInterpolatorBspline3; #else - // Hermite polynomial + // Hermite polynomial, has less pass-band attenuation constexpr auto itp = kInterpolatorHermite3; #endif fillInterpolated(source, dest, indices, coeffs, addingGains);