mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 12:30:42 +00:00
15 lines
473 B
C
15 lines
473 B
C
|
|
typedef struct {
|
|
unsigned int samplerate; // sample rate of the sound
|
|
unsigned short channels; // number of channels
|
|
unsigned short bitspersample; // bits per sample
|
|
unsigned short format; // 0 = pcm
|
|
unsigned int soundlength; // bytes required for sound storage
|
|
} SoundInfo;
|
|
|
|
|
|
int ReadVOCInfo(int fh, SoundInfo *snd);
|
|
int ReadVOCData(int fh, char *data, int bufferlen);
|
|
|
|
int ReadWAVInfo(int fh, SoundInfo *snd);
|
|
int ReadWAVData(int fh, char *data, int bufferlen);
|