From bec3fc72d3808a4f361e96608b80939e31c626f0 Mon Sep 17 00:00:00 2001 From: Stan Grams Date: Sun, 1 Mar 2026 01:03:05 +0100 Subject: [PATCH] [fix](trx-backend-soapysdr): widen wfm stereo image Signed-off-by: Stan Grams --- src/trx-server/trx-backend/trx-backend-soapysdr/src/demod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/trx-server/trx-backend/trx-backend-soapysdr/src/demod.rs b/src/trx-server/trx-backend/trx-backend-soapysdr/src/demod.rs index e67fa65..ff116ac 100644 --- a/src/trx-server/trx-backend/trx-backend-soapysdr/src/demod.rs +++ b/src/trx-server/trx-backend/trx-backend-soapysdr/src/demod.rs @@ -31,7 +31,7 @@ const PILOT_BPF_Q: f32 = 20.0; /// Fixed phase trim on the recovered L-R channel to compensate pilot-path delay. const STEREO_SEPARATION_PHASE_TRIM: f32 = 0.015; /// Fixed gain trim on the recovered L-R channel. -const STEREO_SEPARATION_GAIN: f32 = 0.990; +const STEREO_SEPARATION_GAIN: f32 = 1.000; /// Extra headroom in the stereo matrix to reduce stereo-only clipping/IMD on /// strong program material. This keeps bass excursions from flattening treble. const STEREO_MATRIX_GAIN: f32 = 0.30;