audiofile.h | audiofile.h | |||
---|---|---|---|---|
skipping to change at line 36 | skipping to change at line 36 | |||
#ifndef AUDIOFILE_H | #ifndef AUDIOFILE_H | |||
#define AUDIOFILE_H | #define AUDIOFILE_H | |||
#include <aupvlist.h> | #include <aupvlist.h> | |||
#include <stdint.h> | #include <stdint.h> | |||
#include <sys/types.h> | #include <sys/types.h> | |||
#define LIBAUDIOFILE_MAJOR_VERSION 0 | #define LIBAUDIOFILE_MAJOR_VERSION 0 | |||
#define LIBAUDIOFILE_MINOR_VERSION 3 | #define LIBAUDIOFILE_MINOR_VERSION 3 | |||
#define LIBAUDIOFILE_MICRO_VERSION 0 | #define LIBAUDIOFILE_MICRO_VERSION 1 | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
extern "C" { | extern "C" { | |||
#endif | #endif | |||
typedef struct _AFvirtualfile AFvirtualfile; | typedef struct _AFvirtualfile AFvirtualfile; | |||
typedef struct _AFfilesetup *AFfilesetup; | typedef struct _AFfilesetup *AFfilesetup; | |||
typedef struct _AFfilehandle *AFfilehandle; | typedef struct _AFfilehandle *AFfilehandle; | |||
typedef void (*AFerrfunc)(long, const char *); | typedef void (*AFerrfunc)(long, const char *); | |||
skipping to change at line 108 | skipping to change at line 108 | |||
AF_FILE_NEXTSND = 3, | AF_FILE_NEXTSND = 3, | |||
AF_FILE_WAVE = 4, | AF_FILE_WAVE = 4, | |||
AF_FILE_BICSF = 5, | AF_FILE_BICSF = 5, | |||
AF_FILE_IRCAM = AF_FILE_BICSF, | AF_FILE_IRCAM = AF_FILE_BICSF, | |||
AF_FILE_MPEG1BITSTREAM = 6, /* not implemented */ | AF_FILE_MPEG1BITSTREAM = 6, /* not implemented */ | |||
AF_FILE_SOUNDDESIGNER1 = 7, /* not implemented */ | AF_FILE_SOUNDDESIGNER1 = 7, /* not implemented */ | |||
AF_FILE_SOUNDDESIGNER2 = 8, /* not implemented */ | AF_FILE_SOUNDDESIGNER2 = 8, /* not implemented */ | |||
AF_FILE_AVR = 9, | AF_FILE_AVR = 9, | |||
AF_FILE_IFF_8SVX = 10, | AF_FILE_IFF_8SVX = 10, | |||
AF_FILE_SAMPLEVISION = 11, /* not implemented */ | AF_FILE_SAMPLEVISION = 11, /* not implemented */ | |||
AF_FILE_VOC = 12, /* not implemented */ | AF_FILE_VOC = 12, | |||
AF_FILE_NIST_SPHERE = 13, | AF_FILE_NIST_SPHERE = 13, | |||
AF_FILE_SOUNDFONT2 = 14, /* not implemented */ | AF_FILE_SOUNDFONT2 = 14, /* not implemented */ | |||
AF_FILE_CAF = 15 | AF_FILE_CAF = 15 | |||
}; | }; | |||
enum | enum | |||
{ | { | |||
AF_LOOP_MODE_NOLOOP = 0, | AF_LOOP_MODE_NOLOOP = 0, | |||
AF_LOOP_MODE_FORW = 1, | AF_LOOP_MODE_FORW = 1, | |||
AF_LOOP_MODE_FORWBAKW = 2 | AF_LOOP_MODE_FORWBAKW = 2 | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||