-
Notifications
You must be signed in to change notification settings - Fork 0
/
dat.h
53 lines (47 loc) · 813 Bytes
/
dat.h
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
typedef struct Chunk Chunk;
typedef struct Dot Dot;
typedef struct Buf Buf;
typedef intptr ssize;
enum{
Rate = 44100,
WriteRate = 25,
WriteDelay = Rate / WriteRate, /* 1764 default delay */
Sampsz = 2 * 2,
Outsz = WriteDelay * Sampsz,
Chunksz = Sampsz * Rate,
};
#pragma incomplete Buf
struct Chunk{
Buf *b;
usize boff;
usize len;
Chunk *left;
Chunk *right;
};
struct Dot{
ssize from;
ssize to;
ssize cur;
ssize off;
ssize totalsz;
Chunk *norris;
};
extern Dot dot;
enum{
Bstart,
Bend,
};
extern int bound;
extern QLock lsync;
enum{
Drawcur = 1<<0,
Drawrender = 1<<1,
Drawall = (1<<2) - 1,
};
extern int stereo, chan;
extern int debug, paused;
extern int samptime;
extern int nslots;
extern int reader;
#define MIN(x,y) ((x) < (y) ? (x) : (y))
#define MAX(x,y) ((x) > (y) ? (x) : (y))