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
|
$NetBSD: patch-ag,v 1.1.1.1 2001/04/27 17:17:17 wiz Exp $
--- extract.c.orig Sat Dec 16 21:46:53 2000
+++ extract.c Sat Dec 16 21:47:36 2000
@@ -6,7 +6,7 @@
static char inslst[INSMAX]; /* values set by readxfil */
static int onsect, offsect; /* " " " */
static MYFLT onbeat, offbeat; /* " " " */
-static MYFLT ontime, offtime; /* set by readxfil, mod by w-stmnt */
+static MYFLT ontime, cs_offtime; /* set by readxfil, mod by w-stmnt */
static SRTBLK *frstout, *prvout; /* links for building new outlist */
@@ -56,7 +56,7 @@
for(ip = &inslst[0]; ip < &inslst[INSMAX]; *ip++ = 1);
}
ontime = a0.newp3 = a0.p3val = onbeat;
- offtime = f0.newp2 = f0.p2val = offbeat;
+ cs_offtime = f0.newp2 = f0.p2val = offbeat;
}
void extract(void) /* extract instr events within the time period */
@@ -101,7 +101,7 @@
if (sectno == onsect && warped)
ontime = a0.newp3 = realt(onbeat);
if (sectno == offsect && warped)
- offtime = f0.newp2 = realt(offbeat);
+ cs_offtime = f0.newp2 = realt(offbeat);
include(bp);
break;
case 't':
@@ -110,7 +110,7 @@
case 'f':
casef: if (sectno == onsect && bp->newp2 < ontime)
bp->newp2 = ontime;
- else if (sectno == offsect && bp->newp2 > offtime)
+ else if (sectno == offsect && bp->newp2 > cs_offtime)
break;
if (sectno == onsect && !a0done) {
if (onbeat > 0)
@@ -137,10 +137,10 @@
}
}
if (sectno == offsect) {
- if (bp->newp2 >= offtime)
+ if (bp->newp2 >= cs_offtime)
break;
- if (turnoff > offtime) {
- bp->newp3 = offtime - bp->newp2;
+ if (turnoff > cs_offtime) {
+ bp->newp3 = cs_offtime - bp->newp2;
bp->p3val = offbeat - bp->p2val;
}
}
|