From 2061f692ece50ceadbf319352725b7fbe1d9a94c Mon Sep 17 00:00:00 2001 From: fmixolydian Date: Mon, 9 Feb 2026 22:48:11 +0100 Subject: [PATCH] re-add processor to AudioStream --- src/raylib.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/raylib.h b/src/raylib.h index a4df5a9ba..2cdc627a7 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -461,6 +461,8 @@ typedef struct rAudioProcessor rAudioProcessor; // AudioStream, custom audio stream typedef struct AudioStream { rAudioBuffer *buffer; // Pointer to internal data used by the audio system + rAudioProcessor *processor; // Pointer to internal data processor, useful for audio effects + unsigned int sampleRate; // Frequency (samples per second) unsigned int sampleSize; // Bit depth (bits per sample): 8, 16, 32 (24 not supported) unsigned int channels; // Number of channels (1-mono, 2-stereo, ...)