From 47e42f60e09d2e2483bc9bdeaee29efa00c9d77b Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Thu, 2 Jan 2025 19:01:39 +0100 Subject: [PATCH] fix --- src/stereo_sap_coder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stereo_sap_coder.c b/src/stereo_sap_coder.c index e7418a6..65a1134 100644 --- a/src/stereo_sap_coder.c +++ b/src/stereo_sap_coder.c @@ -126,7 +126,7 @@ int main() { #ifdef PREEMPHASIS Emphasis preemp_l, preemp_r; init_emphasis(&preemp_l, PREEMPHASIS_TAU, SAMPLE_RATE); - init_emphasis(&premp_r, PREEMPHASIS_TAU, SAMPLE_RATE); + init_emphasis(&preemp_r, PREEMPHASIS_TAU, SAMPLE_RATE); #endif #ifdef LPF LowPassFilter lpf_l, lpf_r;