Stéphane Letz

Results 35 issues of Stéphane Letz

We need to factorize code duplicated (and somewhat incorrect) in a lot of `faust2xx` tools...

Having a way to save/restore the state of the compiled DSP could be interesting for neural networks kind of use-cases, or easing saving/restoring presets.

enhancement

``` import("stdfaust.lib"); S = max(1, min(192000, ma.SR)); //S = 192000; process = rwtable(S, .0, ba.period(S), os.osc(1000), ba.period(S)); ``` gives: `ERROR : checkInt failed for type RKIVN [1.000000, 192000.000000]` It would...

From there https://github.com/jackaudio/jackaudio.github.com/releases/tag/v1.9.14 - It could be interesting to precisely know which file is installed where? Could it be done? Is there an un-installer included in this new package as...

The code `process = (1.0 + ma.EPSILON/2.0) > 1.0` correctly returns 0 when compiled in `-double` but incorrectly returns 1 when compiled in `-single`. Even if `ma.EPSILON` definition is dependant...

We've just updated the [Contributing page](https://faustlibraries.grame.fr/contributing/) here. This section may be of interest: Functions with several parameters should better be written by putting the *more constant parameters* (like control, setup...)...

There is a lot of code duplication everywhere in the libraries, where the same DSP code is duplicated over and over, with only the actual use (with compile time defined...