From 0577a5329426c7d51253a1ef55f3c39901d38ea7 Mon Sep 17 00:00:00 2001 From: MaranBr Date: Thu, 6 Nov 2025 07:37:19 -0400 Subject: [PATCH] Increase the RingBuffer and SinkBuffer size a bit more --- src/audio_core/sink/sink_stream.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/audio_core/sink/sink_stream.h b/src/audio_core/sink/sink_stream.h index acb7537dda..083eb7bc27 100644 --- a/src/audio_core/sink/sink_stream.h +++ b/src/audio_core/sink/sink_stream.h @@ -238,9 +238,9 @@ protected: private: /// Ring buffer of the samples waiting to be played or consumed - Common::RingBuffer samples_buffer; + Common::RingBuffer samples_buffer; /// Audio buffers queued and waiting to play - Common::SPSCQueue queue; + Common::SPSCQueue queue; /// The currently-playing audio buffer SinkBuffer playing_buffer{}; /// The last played (or received) frame of audio, used when the callback underruns