From 4451b40cdd10627263ac55945b0b1e09553ce967 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Sun, 15 Feb 2026 15:21:17 +0100 Subject: [PATCH] adjust buffer again --- src/fm95.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/fm95.c b/src/fm95.c index ea9e457..a4bcb33 100644 --- a/src/fm95.c +++ b/src/fm95.c @@ -5,8 +5,8 @@ #define DEFAULT_INI_PATH "/etc/fm95.conf" -#define buffer_maxlength 73728 -#define buffer_tlength_fragsize 73728 +#define buffer_maxlength 78336 +#define buffer_tlength_fragsize 78336 #include "../dsp/oscillator.h" #include "../filter/iir.h" @@ -14,7 +14,7 @@ #include "../filter/bs412.h" #include "../filter/gain_control.h" -#define BUFFER_SIZE 8192 // This defines how many samples to process at a time, because the loop here is this: get signal -> process signal -> output signal, and when we get signal we actually get BUFFER_SIZE of them +#define BUFFER_SIZE 8704 // This defines how many samples to process at a time, because the loop here is this: get signal -> process signal -> output signal, and when we get signal we actually get BUFFER_SIZE of them #include "../io/audio.h"