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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
// Copyright (c) 2022 Weird Constructor <weirdconstructor@gmail.com>
// This file is a part of synfx-dsp. Released under GPL-3.0-or-later.
// See README.md and COPYING for details.
/*! synfx-dsp DSP real time audio synthesis, effect algorithms and utilities for Rust
Most of the algorithms and implementations in this library have been
implemented for [HexoDSP](https://github.com/WeirdConstructor/HexoDSP) and used
in [HexoSynth](https://github.com/WeirdConstructor/HexoSynth). I factored them out, because
they seem useful in other contexts too, for instance the [synfx-dsp-jit](https://github.com/WeirdConstructor/synfx-dsp-jit)
crate.
I collected most of the algorithms in this crate from various GPLv3 compatible
sources. They also were partially translated from multiple different C++ projects.
I tried to document the source and source license diligently in the comments of this crate.
I apologize if any attribution is missing and would welcome patches or reports.
Feel free to use these algorithms and utilities. Help, patches and additions are appreciated
if they comply with the GPL-3.0-or-later license and don't break the test suite in HexoDSP.
**Attention:** HexoDSP comes with a large test suite that also covers these algorithms. And that is the one
that also has to pass if these algorithms are touched. The flip side is, that these implementations
are actually covered by a test suite.
**Requires Nightly as of 2022-10-02 due to std::simd!**
Copyright, Licenses, Attribution, Contributions
===============================================
Here is a list of sources parts of this library copied or translated code from:
- [crate::quicker_tanh64] / [crate::quicker_tanh]
```text
quickerTanh / quickerTanh64 credits to mopo synthesis library:
Under GPLv3 or any later.
Little IO <littleioaudio@gmail.com>
Matt Tytel <matthewtytel@gmail.com>
```
- [crate::quick_tanh64] / [crate::quick_tanh]
```text
quickTanh / quickTanh64 credits to mopo synthesis library:
Under GPLv3 or any later.
Little IO <littleioaudio@gmail.com>
Matt Tytel <matthewtytel@gmail.com>
```
- [crate::tanh_approx_drive]
```text
Taken from ValleyAudio
Copyright Dale Johnson
https://github.dev/ValleyAudio/ValleyRackFree/tree/v2.0
Under GPLv3 license
```
- [crate::AtomicFloat]
```text
Implementation from vst-rs
https://github.com/RustAudio/vst-rs/blob/master/src/util/atomic_float.rs
Under MIT License
Copyright (c) 2015 Marko Mijalkovic
```
- [crate::Biquad]
```text
The implementation of this Biquad Filter has been adapted from
SamiPerttu, Copyright (c) 2020, under the MIT License.
See also: https://github.com/SamiPerttu/fundsp/blob/master/src/filter.rs
```
- [crate::DattorroReverb]
```text
This file contains a reverb implementation that is based
on Jon Dattorro's 1997 reverb algorithm. It's also largely
based on the C++ implementation from ValleyAudio / ValleyRackFree
ValleyRackFree Copyright (C) 2020, Valley Audio Soft, Dale Johnson
Adapted under the GPL-3.0-or-later License.
See also: https://github.com/ValleyAudio/ValleyRackFree/blob/v1.0/src/Plateau/Dattorro.cpp
and: https://github.com/ValleyAudio/ValleyRackFree/blob/v1.0/src/Plateau/Dattorro.hpp
And: https://ccrma.stanford.edu/~dattorro/music.html
And: https://ccrma.stanford.edu/~dattorro/EffectDesignPart1.pdf
```
- [crate::process_1pole_lowpass] / [crate::process_1pole_highpass]
```text
one pole lp from valley rack free:
https://github.com/ValleyAudio/ValleyRackFree/blob/v1.0/src/Common/DSP/OnePoleFilters.cpp
```
- [crate::process_1pole_tpt_lowpass] / [crate::process_1pole_tpt_highpass]
```text
one pole from:
http://www.willpirkle.com/Downloads/AN-4VirtualAnalogFilters.pdf
(page 5)
```
- [crate::FixedOnePole]
```text
Fixed one pole with setable pole and gain.
Implementation taken from tubonitaub / alec-deason
from https://github.com/alec-deason/virtual_modular/blob/4025f1ef343c2eb9cd74eac07b5350c1e7ec9c09/src/simd_graph.rs#L4292
under MIT License
```
- [crate::process_hal_chamberlin_svf]
```text
Hal Chamberlin's State Variable (12dB/oct) filter
https://www.earlevel.com/main/2003/03/02/the-digital-state-variable-filter/
Inspired by SynthV1 by Rui Nuno Capela, under the terms of
GPLv2 or any later:
```
- [crate::process_simper_svf]
```text
Simper SVF implemented from
https://cytomic.com/files/dsp/SvfLinearTrapezoidalSin.pdf
Big thanks go to Andrew Simper @ Cytomic for developing and publishing
the paper.
```
- [crate::process_stilson_moog]
```text
Stilson/Moog implementation partly translated from here:
https://github.com/ddiakopoulos/MoogLadders/blob/master/src/MusicDSPModel.h
without any copyright as found on musicdsp.org
(http://www.musicdsp.org/showone.php?id=24).
It's also found on MusicDSP and has probably no proper license anyways.
See also: https://github.com/ddiakopoulos/MoogLadders
and https://github.com/rncbc/synthv1/blob/master/src/synthv1_filter.h#L103
and https://github.com/ddiakopoulos/MoogLadders/blob/master/src/MusicDSPModel.h
```
- [crate::DCBlockFilter]
```text
translated from Odin 2 Synthesizer Plugin
Copyright (C) 2020 TheWaveWarden
under GPLv3 or any later
```
- [crate::cubic_interpolate]
```text
Hermite interpolation, take from
https://github.com/eric-wood/delay/blob/main/src/delay.rs#L52
Thanks go to Eric Wood!
For the interpolation code:
MIT License, Copyright (c) 2021 Eric Wood
```
- [crate::TriSawLFO]
```text
Adapted from https://github.com/ValleyAudio/ValleyRackFree/blob/v1.0/src/Common/DSP/LFO.hpp
ValleyRackFree Copyright (C) 2020, Valley Audio Soft, Dale Johnson
Adapted under the GPL-3.0-or-later License.
```
- [crate::PolyBlepOscillator]
```text
PolyBLEP by Tale
(slightly modified)
http://www.kvraudio.com/forum/viewtopic.php?t=375517
from http://www.martin-finke.de/blog/articles/audio-plugins-018-polyblep-oscillator/
```
- [crate::VPSOscillator]
```text
This oscillator is based on the work "VECTOR PHASESHAPING SYNTHESIS"
by: Jari Kleimola*, Victor Lazzarini†, Joseph Timoney†, Vesa Välimäki*
*Aalto University School of Electrical Engineering Espoo, Finland;
†National University of Ireland, Maynooth Ireland
See also this PDF: http://recherche.ircam.fr/pub/dafx11/Papers/55_e.pdf
```
- [crate::Oversampling]
```text
Loosely adapted from https://github.com/VCVRack/Befaco/blob/v1/src/ChowDSP.hpp
Copyright (c) 2019-2020 Andrew Belt and Befaco contributors
Under GPLv-3.0-or-later
Which was originally taken from https://github.com/jatinchowdhury18/ChowDSP-VCV/blob/master/src/shared/AAFilter.hpp
Copyright (c) 2020 jatinchowdhury18
```
- [crate::next_xoroshiro128]
```text
Taken from xoroshiro128 crate under MIT License
Implemented by Matthew Scharley (Copyright 2016)
https://github.com/mscharley/rust-xoroshiro128
```
- [crate::u64_to_open01]
```text
Taken from rand::distributions
Licensed under the Apache License, Version 2.0
Copyright 2018 Developers of the Rand project.
```
- [crate::SplitMix64]
```text
Copyright 2018 Developers of the Rand project.
Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
<LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
option. This file may not be copied, modified, or distributed
except according to those terms.
- splitmix64 (http://xoroshiro.di.unimi.it/splitmix64.c)
```
- [crate::f_distort] / [crate::f_fold_distort]
```text
Ported from LMMS under GPLv2
* DspEffectLibrary.h - library with template-based inline-effects
* Copyright (c) 2006-2014 Tobias Doerffel <tobydox/at/users.sourceforge.net>
Original source seems to be musicdsp.org, Author: Bram de Jong
see also: https://www.musicdsp.org/en/latest/Effects/41-waveshaper.html
```
- [crate::PolyIIRHalfbandFilter]
```text
Taken from va-filter by Fredemus aka Frederik Halkjær aka RocketPhysician
https://github.com/Fredemus/va-filter
Under License GPL-3.0-or-later
originally translated from the freely available source code
at https://www.musicdsp.org/en/latest/Filters/39-polyphase-filters.html
```
- [crate::DCFilterX4]
```text
Basic 4 channel SIMD DC-filter from Understanding Digital Signal Processing by Richard Lyons.
Taken from va-filter by Fredemus aka Frederik Halkjær aka RocketPhysician
https://github.com/Fredemus/va-filter
Under License GPL-3.0-or-later
```
- [crate::fh_va::LadderFilter] / [crate::fh_va::Svf] / [crate::fh_va::SallenKey]
```text
Taken from va-filter by Fredemus aka Frederik Halkjær aka RocketPhysician
https://github.com/Fredemus/va-filter
Under License GPL-3.0-or-later
```
*/
pub use *;
pub use *;
pub use ;
pub use ;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use Oversampling;
pub use PolyIIRHalfbandFilter;
pub use *;
pub use *;
pub use *;
pub use *;
use ;
trait_alias!;
//macro_rules! fc {
// ($F: ident, $e: expr) => {
// F::from_f64($e).unwrap()
// };
//}
/// Converts a midi note (0 to 128) to a frequency
///
///```
/// use synfx_dsp::*;
///
/// assert_eq!(note_to_freq(69.0) as i32, 440);
/// assert_eq!(note_to_freq(69.0 + 12.0) as i32, 880);
/// assert_eq!(note_to_freq(69.0 - 12.0) as i32, 220);
///```
/// Converts gain in decibels to a factor/coeffient
///
/// ```
/// use synfx_dsp::gain_db2coef;
///
/// assert!((gain_db2coef(-6.0) - 0.501187).abs() < 0.00001);
/// assert!((gain_db2coef(-3.0) - 0.707945).abs() < 0.00001);
/// assert!((gain_db2coef(0.0) - 1.0).abs() < 0.00001);
/// assert!((gain_db2coef(6.0) - 1.99526).abs() < 0.00001);
/// ```
/// Converts a coefficient/factor to decibels
///
///```
/// use synfx_dsp::coef2gain_db;
///
/// assert!((coef2gain_db(0.501187) - -6.0).abs() < 0.0001);
/// assert!((coef2gain_db(0.707945) - -3.0).abs() < 0.0001);
/// assert!(coef2gain_db(1.0).abs() < 0.00001);
/// assert!((coef2gain_db(1.99526) - 6.0).abs() < 0.0001);
///```
/// A `pow` like shape function for exponential envelopes.
/// It's a bit faster than calling the `pow` function of Rust.
///
/// * `x` the input value
/// * `v' the shape value.
/// Which is linear at `0.5`, the forth root of `x` at `1.0` and x to the power
/// of 4 at `0.0`. You can vary `v` as you like.
///
///```
/// use synfx_dsp::*;
///
/// assert!(((sqrt4_to_pow4(0.25, 0.0) - 0.25_f32 * 0.25 * 0.25 * 0.25)
/// .abs() - 1.0)
/// < 0.0001);
///
/// assert!(((sqrt4_to_pow4(0.25, 1.0) - (0.25_f32).sqrt().sqrt())
/// .abs() - 1.0)
/// < 0.0001);
///
/// assert!(((sqrt4_to_pow4(0.25, 0.5) - 0.25_f32).abs() - 1.0) < 0.0001);
///```
/// Returns the name of the distortion selected by the `dist_type` parameter of the [apply_distortion]
/// function.