AudioStream


Vocabulary
raylib

Class description
Represents a stream of audio data in Raylib.

Fields
buffer a pointer to the internal data used by the audio system.
processor a pointer to the interanl data processor, useful for audio effects.
sampleRate the frequence of the samples.
sampleSize the bit depth of the samples: spport values are 8, 16, and 32.
channels the number of channels: 1 for mono, 2 for stereo.


Definition


STRUCT: AudioStream
{ buffer void* } { processor void* }
{ sampleRate uint initial: 0 }
{ sampleSize uint initial: 0 } { channels uint initial: 0 }
;


Methods