From 5d8599bbb5c61ceea44912bdf20de982f491f416 Mon Sep 17 00:00:00 2001 From: Vanilagy <1696106+Vanilagy@users.noreply.github.com> Date: Fri, 30 May 2025 20:28:55 +0200 Subject: [PATCH] Adjust comment --- src/conversion.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conversion.ts b/src/conversion.ts index 3b0cb68..03e8f07 100644 --- a/src/conversion.ts +++ b/src/conversion.ts @@ -1137,7 +1137,7 @@ export class AudioResampler { // For resampling, we do naive linear interpolation to find the in-between sample. This produces // suboptimal results especially for downsampling (for which a low-pass filter would first need to be - // applied), but AudioContext doesn't do this either so, whatever. + // applied), but AudioContext doesn't do this either, so, whatever, for now. const outputSample = lowerSample + fraction * (upperSample - lowerSample); // Write to output buffer (interleaved)