File: ugens.h

package info (click to toggle)
pd-lyonpotpourri 2.0%2Bgit20121009-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,176 kB
  • sloc: ansic: 18,330; makefile: 376
file content (57 lines) | stat: -rw-r--r-- 829 bytes parent folder | download | duplicates (3)
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
/* THIS IS A TOTALLY HACKED HEADER - NO LONGER ANY GOOD FOR CMIX */

#define MAXSECTS 20
#define RESON_NO_SCL (0.)
#define START 3
#define STARTM1 2 /* for start of comb memory in a array */
#define NCOMBS  6 /* for reverb */
#define NALPASSES 2 /* for reverb */

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 ;