ampler/ampler.h

36 lines
590 B
C
Raw Normal View History

2021-12-19 22:44:48 +00:00
// ampler.h
#define if if(
#define while while(
#define for for(
#define do )
typedef int8_t s8;
typedef int16_t s16;
typedef int32_t s32;
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef float f32;
typedef double f64;
#define arraylen(a) (sizeof (a) / sizeof ((a)[0]))
#define SAMPLE_RATE (44100)
#define CHANNELS (2)
#define FRAME_SAMPLES (SAMPLE_RATE / 60)
typedef struct Ampler_state Ampler_state;
struct Ampler_state {
u32 size;
SDL_AudioDeviceID playdev;
s8 track_l[SAMPLE_RATE * 120]; // 2 minutes
s8 track_r[SAMPLE_RATE * 120]; // 2 minutes
};