From 9f7a3ac7a51f2725cbc58da406776a96b4915550 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Mon, 24 Mar 2025 10:02:54 -0500 Subject: [PATCH] bump sample rate to 22256 this is the "correct" rate based on the original horizontal line rate of the mac plus and is supported on the fruit jam i2s dac --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 81b97b8..e60ca92 100644 --- a/src/main.c +++ b/src/main.c @@ -768,7 +768,7 @@ struct audio_buffer_pool *producer_pool; static audio_format_t audio_format = { .format = AUDIO_BUFFER_FORMAT_PCM_S16, - .sample_freq = 20000, + .sample_freq = 22256, // 60.15Hz*370, rounded up .channel_count = 1, };