1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#define MAXSECTS 20
#define RESON_NO_SCL (0.)
#define START 3
#define STARTM1 2
#define NCOMBS 6
#define NALPASSES 2
typedef struct {
float ps0;
float ps1;
float ps2;
float ps3;
float c0;
float c1;
float c2;
float c3;
} LSTRUCT ;
typedef struct {
int len;
float *func;
float amp;
float phs;
float si;
} CMIXOSC ;
typedef struct {
float *arr;
float lpt;
float rvbt;
int len;
int status;
} CMIXCOMB ;
typedef struct {
float cf;
float bw;
float scl;
float q[5];
} CMIXRESON ;
typedef struct {
float a;
float d;
float s;
float r;
float v1;
float v2;
float v3;
float v4;
float v5;
float *func;
int len;
} CMIXADSR ;
|