From e6aa713a377d60a5a0f3453f376fe8ad9d2fcdf7 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Mon, 5 Jul 2021 19:45:57 +0200 Subject: [PATCH] REVIEWED: Need to set default buffer size for raw data #1770 This design should probably be changed... --- examples/audio/audio_raw_stream.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/audio/audio_raw_stream.c b/examples/audio/audio_raw_stream.c index 636eb005..8dba9745 100644 --- a/examples/audio/audio_raw_stream.c +++ b/examples/audio/audio_raw_stream.c @@ -31,8 +31,10 @@ int main(void) InitAudioDevice(); // Initialize audio device + SetAudioStreamBufferSizeDefault(4096); + // Init raw audio stream (sample rate: 22050, sample size: 16bit-short, channels: 1-mono) - AudioStream stream = LoadAudioStream(22050, 16, 1); + AudioStream stream = LoadAudioStream(44100, 16, 1); // Buffer for the single cycle waveform we are synthesizing short *data = (short *)malloc(sizeof(short)*MAX_SAMPLES);