From c138fdf39c5af51523a006e64ce4635149b7deec Mon Sep 17 00:00:00 2001 From: Ednunp <29843396+Ednunp@users.noreply.github.com> Date: Tue, 7 Jul 2026 20:21:39 +0100 Subject: [PATCH] =?UTF-8?q?Pan/EQ:=2012-band=20advanced=20EQ=20=E2=80=94?= =?UTF-8?q?=20swap=203=20kHz=20for=2080=20Hz?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ed's tweak: drop 3 kHz, add 80 Hz in the low end (between 63 and 125). Still 12 bands, so no array-length change. Held for next release. Co-Authored-By: Claude Opus 4.8 --- src/RemSound.Core/PeerShaping.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/RemSound.Core/PeerShaping.cs b/src/RemSound.Core/PeerShaping.cs index ad0efc5..f2bf66b 100644 --- a/src/RemSound.Core/PeerShaping.cs +++ b/src/RemSound.Core/PeerShaping.cs @@ -52,18 +52,18 @@ public static class PeerEqBands ("Treble", 8000.0), ]; - /// 12-band graphic EQ — octave centres low down, finer through the presence region - /// (2/3/4/6/8 kHz) so there's a band between 4 and 8 kHz. All peaking. + /// 12-band graphic EQ — 80 Hz added in the low end, finer through the presence region + /// (2/4/6/8 kHz) so there's a band between 4 and 8 kHz. All peaking. public static readonly (string Label, double Freq)[] Advanced = [ ("31 Hz", 31.0), ("63 Hz", 63.0), + ("80 Hz", 80.0), ("125 Hz", 125.0), ("250 Hz", 250.0), ("500 Hz", 500.0), ("1 kHz", 1000.0), ("2 kHz", 2000.0), - ("3 kHz", 3000.0), ("4 kHz", 4000.0), ("6 kHz", 6000.0), ("8 kHz", 8000.0),