From b3e41197bc346ccebcd8652979b1c180810f45df Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Mon, 30 Dec 2024 16:46:36 +0100 Subject: [PATCH] bruh --- stereo_coder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stereo_coder.c b/stereo_coder.c index 0955683..a62190e 100644 --- a/stereo_coder.c +++ b/stereo_coder.c @@ -187,7 +187,7 @@ int main() { float current_right_input = clip(preemphasized_right); #else float current_left_input = clip(r_in); - float current_right_input = clip(r_in); + float current_right_input = clip(l_in); #endif float mono = (current_left_input + current_right_input) / 2.0f;