timidity_internal.h (libtimidity-0.2.6) | : | timidity_internal.h (libtimidity-0.2.7) | ||
---|---|---|---|---|
skipping to change at line 127 | skipping to change at line 127 | |||
#define DEBUG_MSG(fmt, args...) | #define DEBUG_MSG(fmt, args...) | |||
#endif | #endif | |||
#else /* use C99 varargs macros */ | #else /* use C99 varargs macros */ | |||
#ifdef TIMIDITY_DEBUG | #ifdef TIMIDITY_DEBUG | |||
#define DEBUG_MSG(...) fprintf(stderr, __VA_ARGS__) | #define DEBUG_MSG(...) fprintf(stderr, __VA_ARGS__) | |||
#else | #else | |||
#define DEBUG_MSG(...) | #define DEBUG_MSG(...) | |||
#endif | #endif | |||
#endif | #endif | |||
#ifndef __VBCC__ | ||||
#define TIMI_UNUSED(x) (void)(x) | ||||
#else | ||||
#define TIMI_UNUSED(x) /* vbcc emits an annoying warning for (void)(x) */ | ||||
#endif | ||||
#define MID_VIBRATO_SAMPLE_INCREMENTS 32 | #define MID_VIBRATO_SAMPLE_INCREMENTS 32 | |||
/* Maximum polyphony. */ | /* Maximum polyphony. */ | |||
#define MID_MAX_VOICES 48 | #define MID_MAX_VOICES 48 | |||
typedef sint16 sample_t; | typedef sint16 sample_t; | |||
typedef sint32 final_volume_t; | typedef sint32 final_volume_t; | |||
typedef struct _MidSample MidSample; | typedef struct _MidSample MidSample; | |||
struct _MidSample | struct _MidSample | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 6 lines changed or added |