From a7fccc35a1dc25f76e52f3940d1bab0b4cc81f86 Mon Sep 17 00:00:00 2001 From: zbednarke Date: Tue, 7 May 2024 20:20:12 -0700 Subject: [PATCH] lower n samples per update to be on safe side --- examples/audio/raw_stream/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/audio/raw_stream/main.go b/examples/audio/raw_stream/main.go index 4fb0a9a..17c27c7 100644 --- a/examples/audio/raw_stream/main.go +++ b/examples/audio/raw_stream/main.go @@ -11,7 +11,7 @@ import ( const ( nSamples = 6000 sampleRate = 6000 - nSamplesPerUpdate = 1600 + nSamplesPerUpdate = 1400 frequency = 440 targetFPS = 240 )