enum SampleFormat { Sample_None = 0, Sample_8 = 0x001, Sample_16 = 0x002, Sample_Stereo = 0x008, Sample_PCM = 0x100, Sample_MP3 = 0x200, Sample_ADPCM = 0x300, Sample_Format = 0x700, Sample_Stream = 0x1000, Sample_File = 0x2000 };
Collection of sound data format flags.
Members |
Description |
Sample_8 = 0x001 |
8 bit sound data format. |
Sample_16 = 0x002 |
16 bit sound data format. |
Sample_Stereo = 0x008 |
Sound data is stereo. |
Sample_PCM = 0x100 |
Sound data is in uncompressed PCM format. |
Sample_MP3 = 0x200 |
Sound data is in compressed MP3 format. |
Sample_ADPCM = 0x300 |
Sound data is in compressed ADPCM format. |
Sample_Stream = 0x1000 |
Sound data is used in streaming mode. |
Sample_File = 0x2000 |
Sound data comes from a file. |
Sound_Sound.h