1 #ifndef lint
2 static char rcsid[] =
3     "$Id: audio_type.c,v 1.1 1997/02/28 14:03:06 tommy Exp $";
4 #endif
5 
6 #include <string.h>
7 #include <sys/types.h>
8 
9 #include "play.h"
10 
11 #define WAVE_UNKNOWN             (0x0000)
12 #define WAVE_PCM                 (0x0001)
13 #define WAVE_ADPCM               (0x0002)
14 #define WAVE_ALAW                (0x0006)
15 #define WAVE_MULAW               (0x0007)
16 #define WAVE_OKI_ADPCM           (0x0010)
17 #define WAVE_DIGISTD             (0x0015)
18 #define WAVE_DIGIFIX             (0x0016)
19 #define IBM_MULAW                (0x0101)
20 #define IBM_ALAW                 (0x0102)
21 #define IBM_ADPCM                (0x0103)
22