-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdelaysEOC.lib
117 lines (111 loc) · 3.67 KB
/
delaysEOC.lib
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// =============================================================================
// ========== delaysEOC.lib ====================================================
// =============================================================================
//
// Delay line functions library with samplerate-independent delay parameters
// based on Faust's delay lines for integer and fractional delays.
//
// The environment prefix is "d2".
//
// List of functions:
//
// del,
// del_lin,
// del_pol,
// del_smo.
//
// Copyright (c) 2019-2020, Dario Sanfilippo <sanfilippo.dario at gmail dot com>
// All rights reserved.
declare name "Delays Library";
declare author "Dario Sanfilippo";
declare copyright "Copyright (c) 2019-2020, Dario Sanfilippo <sanfilippo.dario
at gmail dot com>";
declare version "2.0.0";
declare license "GPLv2.0";
de = library("delays.lib");
d2 = library("delaysEOC.lib");
ma = library("maths.lib");
m2 = library("mathsEOC.lib");
// d2.del(size, D[n], x[n]); ---------------------------------------------------
//
// Non-interpolating delay line: the signal is delayed by a number of
// samples that is the closest integer of the specified delay in seconds
// times the samplerate.
//
// 2 inputs:
// D[n], delay amount in seconds (approximately);
// x[n].
//
// 1 outputs:
// y[n], delayed x[n].
//
// Compile-time arguments:
// "size", delay line size and maximum delay in seconds.
//
del(size, del, in) = de.delay(size * ma.SR, del * ma.SR, in);
// -----------------------------------------------------------------------------
// d2.del_lin(size, D[n], x[n]); -----------------------------------------------
//
// Interpolating delay line: the input signal is delayed by a delay
// expressed in seconds where fractional-sample delays are achieved
// through linear interpolation.
//
// 2 inputs:
// D[n], delay amount in seconds;
// x[n].
//
// 1 outputs:
// y[n], delayed x[n].
//
// Compile-time arguments:
// "size", delay line size and maximum delay in seconds.
//
del_lin(size, del, in) = de.fdelay(size * ma.SR, del * ma.SR, in);
// -----------------------------------------------------------------------------
// d2.del_pol(size, D[n], x[n]); -----------------------------------------------
//
// Interpolating delay line: the input signal is delayed by a delay
// expressed in seconds where fractional-sample delays are achieved
// through 4th-order polynomial interpolation.
//
// 2 inputs:
// D[n], delay amount in seconds;
// x[n].
//
// 1 outputs:
// y[n], delayed x[n].
//
// Compile-time arguments:
// "size", delay line size and maximum delay in seconds which is the
// closest power-of-two number of samples representing the delay in seconds.
//
del_pol(size, del, in) = de.fdelayltv(4, s, d, in)
with {
s = size * ma.SR : m2.round_pow2;
d = del * ma.SR;
//d = del * ma.SR : max((4 - 1) / 2);
};
// -----------------------------------------------------------------------------
// d2.del_smo(size, IT[n], D[n], x[n]); ----------------------------------------
//
// Delay line with variable delay and no clicks or Doppler effect: the
// mechanism works by interpolating between the output of two delay lines.
//
// 3 inputs:
// IT[n], interpolation time in seconds;
// D[n], delay amount in seconds;
// x[n].
//
// 1 outputs:
// y[n], delayed input.
//
// Compile-time arguments:
// "size", delay line size and maximum delay in seconds.
//
del_smo(size, itime, del, in) = de.sdelay(s, it, d, in)
with {
s = size * ma.SR;
it = itime * ma.SR;
d = del * ma.SR;
};
// -----------------------------------------------------------------------------