Re: [Faudiostream-devel] Error when compiling examples/misc/guitarix.dsp

2019-09-09 Thread Stéphane Letz
Sure in general... Right now this ba.selectmulti function 1) does compute all effects all the time (..) and 2) does a brutal switch between them. The thing is that the « enable » langage primitive (that would allow to stop actual computing) is still only implemented in the old C++ back (-lang

Re: [Faudiostream-devel] Error when compiling examples/misc/guitarix.dsp

2019-09-08 Thread Julius Smith
Hi Stéphane, I think it is very useful to be able to switch among various modules! However, the deselected modules need to be able to "mute" themselves (stop computing) after their outputs reach zero. Cheers, - Julius On Sun, Sep 8, 2019 at 3:23 PM Stéphane Letz wrote: > > Fix, see > https://

Re: [Faudiostream-devel] Error when compiling examples/misc/guitarix.dsp

2019-09-08 Thread Stéphane Letz
Fix, see https://github.com/grame-cncm/faust/blob/master-dev/examples/misc/guitarix.dsp I also tried to dynamically choose a specific tstack in the tonestack stage, using then new ba.selectmulti function, allowing for instance to choose between jcm2000, jtm45, jcm800… Don’t know if it makes sen

Re: [Faudiostream-devel] Error when compiling examples/misc/guitarix.dsp

2019-09-08 Thread Julius Smith
Hi Stéphane, I would comment out the definition in guitarix.dsp and expect it to work. - Julius On Sun, Sep 8, 2019 at 6:23 AM Stéphane Letz wrote: > > > > Le 8 sept. 2019 à 10:26, Hermann Meyer a écrit : > > > > > > Am 08.09.19 um 09:28 schrieb Stéphane Letz: > >> Are there any guitarix devel

Re: [Faudiostream-devel] Error when compiling examples/misc/guitarix.dsp

2019-09-08 Thread Stéphane Letz
> Le 8 sept. 2019 à 10:26, Hermann Meyer a écrit : > > > Am 08.09.19 um 09:28 schrieb Stéphane Letz: >> Are there any guitarix developer on the list? >> >> faust examples/misc/guitarix.dsp gives: >> >> tubes.lib:56 ERROR : redefinition of symbols are not allowed : boundFactor >> >> since bou

Re: [Faudiostream-devel] Error when compiling examples/misc/guitarix.dsp

2019-09-08 Thread Hermann Meyer
Am 08.09.19 um 09:28 schrieb Stéphane Letz: Are there any guitarix developer on the list? faust examples/misc/guitarix.dsp gives: tubes.lib:56 ERROR : redefinition of symbols are not allowed : boundFactor since boundFactor is defined in guitarix.dsp (line 90) but also in libraries/tubes.lib

[Faudiostream-devel] Error when compiling examples/misc/guitarix.dsp

2019-09-08 Thread Stéphane Letz
Are there any guitarix developer on the list? faust examples/misc/guitarix.dsp gives: tubes.lib:56 ERROR : redefinition of symbols are not allowed : boundFactor since boundFactor is defined in guitarix.dsp (line 90) but also in libraries/tubes.lib with a somewhat different implementation. An