From 0bd4cfaa8b64698a92a63173a3e22956f95679a6 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Wed, 1 Jan 2025 02:17:22 +0100 Subject: [PATCH] mhm --- src/ssb_stereo_coder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssb_stereo_coder.c b/src/ssb_stereo_coder.c index ff9d0c8..676def6 100644 --- a/src/ssb_stereo_coder.c +++ b/src/ssb_stereo_coder.c @@ -189,7 +189,7 @@ int main() { float stereo_i, stereo_q; apply_hilbert(&hilbert, stereo, &stereo_i, &stereo_q); // I/Q, the Quadrature data is 90 degrees apart from the In-phase data float lsb = (stereo_i*cos38-stereo_q*(sin38*0.75f)); // Compute LSB, as the Hilbert isn't perfect, i'll have to a bit silence down the Q carrier in order to make it better, also, it is just perfect as FM Stereo LSB shouldn't be fully LSB - float lsb = (stereo_i*(cos38*0.75f)-stereo_q*sin38); // Compute LSB, as the Hilbert isn't perfect, i'll have to a bit silence down the Q carrier in order to make it better, also, it is just perfect as FM Stereo LSB shouldn't be fully LSB + float usb = (stereo_i*(cos38*0.75f)-stereo_q*sin38); // Compute LSB, as the Hilbert isn't perfect, i'll have to a bit silence down the Q carrier in order to make it better, also, it is just perfect as FM Stereo LSB shouldn't be fully LSB mpx[i] = delay_line(&monoDelay, mono) * MONO_VOLUME + pilot * PILOT_VOLUME +