faust
faust copied to clipboard
Functional programming language for signal processing and sound synthesis
I was using this a fair bit to develop some concepts for audio / visual game / VR jam environment I am working on that should be really cool, but...
FAuSt 2 AUv3
AUv3 is modern and now popular plugin format used on Apple platforms. This would be great and useful to have ability to translate FAuSt code to AUv3 template. At this...
As discussed in https://github.com/grame-cncm/faust/issues/406: ``` The compiler now refuses to compile code that cause several identical UI path (like/foo/bar/ui_item) to be produced, since identical paths cannot be distinguished when controlled...
Hi. Sometimes the argument `int sample_rate` is not used in function bodies, this produces a compiler warning under `-Wall`. Generate a line `(void)sample_rate;` would permit to eliminate the warning. -...
I've seem to ran into a different bottleneck. In other projects, the evaluation times can be quite long. In the project I'm currently working on, [a small change](https://github.com/magnetophon/DigiDrie/pull/28/commits/e96f2afcbb24f699615ec62d48658a20d247d0fc) increased the...
I'm guessing this should be a pretty easy fix although clearly not a very urgent one I'm getting Argument list too long while reading from install_manifest.txt in build/MakeFile Probably replacing...
I am struggling with compiling faust dsp files with `faust2caqt` that incorporate additional custom header files. I learned from @sletz that CXXFLAGS are forwarded to the compiler. Assuming the following...
Hello, I'm posting this issue -more as an feature request- about trigonometric simplifications. For some applications, I manipulate trigonometric functions (spherical harmonics) and depending on the algorithm, the output formula...
When I compile with ``-fm def`` I get: ` error: inlining failed in call to always_inline ‘float fast_sinf(float)’: function body can be overwritten at link time`. I tried faust2jack, faust2jaqt,...
Expressions inside control get combined with identical expressions elsewhere. This is the same optimisation Faust usually performs; however in this case it is wrong, as expressions inside control should only...