Review Wave struct

This commit is contained in:
raysan5
2016-08-15 16:35:11 +02:00
parent 852813bdf1
commit 342b89c5b9
3 changed files with 40 additions and 38 deletions

View File

@@ -490,11 +490,11 @@ typedef struct Sound {
// Wave type, defines audio wave data
typedef struct Wave {
unsigned int sampleCount; // Number of samples
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)
void *data; // Buffer data pointer
unsigned int dataSize; // Data size in bytes
unsigned int sampleRate; // Samples per second to be played
short bitsPerSample; // Sample size in bits
short channels;
} Wave;
// Music type (file streaming from memory)