Search found 667 matches

by adamszabo
Sun Oct 20, 2024 7:21 pm
Forum: General
Topic: Vst Preset Parameter ID ?
Replies: 6
Views: 147991

Re: Vst Preset Parameter ID ?

The preset order works fine over here. You have to use numbers 0, 1, 2, etc. To check your preset order add the "preset show order" module to check which order your presets will appear to the daw
by adamszabo
Sun Oct 20, 2024 9:34 am
Forum: General
Topic: Vst Preset Parameter ID ?
Replies: 6
Views: 147991

Re: Vst Preset Parameter ID ?

Preset parameters have a input called "order", that sets the preset order sequence. This might only be available in the alpha versions though, i cannot remember.
by adamszabo
Wed Oct 16, 2024 7:14 pm
Forum: DSP
Topic: Alias Suppressed Wave Shaping
Replies: 6
Views: 538541

Re: Alias Suppressed Wave Shaping

Thanks again, Adam. Indeed, rcpps and the additional multipy are cheaper than divps, but you are aware that it comes at the cost of precision loss. rcpps has a relative error of up to 1.5*2^-12, which means you have a bit more than 3 significant digits (out of nearly 7 in single precision). In ...
by adamszabo
Wed Oct 16, 2024 11:33 am
Forum: DSP
Topic: Alias Suppressed Wave Shaping
Replies: 6
Views: 538541

Re: Alias Suppressed Wave Shaping

An optimization one can do is to use reciprocals instead of the division at the end of the code like so:

addps xmm0,xmm1; // w1 + w
addps xmm1,xmm4; // w1 + w2
rcpps xmm0,xmm0; // 1/(w1 + w)
rcpps xmm1,xmm1; // 1/(w1 + w2)
mulps xmm3,xmm0; // (3*x1 + x) * (1/(w1 + w))
mulps xmm2,xmm1; // (3*x1 ...
by adamszabo
Tue Oct 15, 2024 8:28 am
Forum: DSP
Topic: Alias Suppressed Wave Shaping
Replies: 6
Views: 538541

Re: Alias Suppressed Wave Shaping

Nice stuff, thanks! Just an observation, in the "AA Sigmoid" module the "w" constant is not declared in:

movaps xmm4,w; // w2
movaps w,xmm0;

But it should work just fine without it!
by adamszabo
Sat Oct 12, 2024 7:17 pm
Forum: General
Topic: Trigger A Wave File
Replies: 5
Views: 129100

Re: Trigger A Wave File

There is already the "Wave Player" module, which does exactly that
by adamszabo
Tue Oct 08, 2024 6:53 pm
Forum: General
Topic: Switches
Replies: 13
Views: 416535

Re: Switches

Spogg wrote: I can’t find in 3.06 so I guess it’s an alpha feature. Also, do you know if it complies with VST2?
I havent tried it yet, but in theory it should, as it doesnt say its vst3 exclusive
by adamszabo
Tue Oct 08, 2024 8:44 am
Forum: General
Topic: Switches
Replies: 13
Views: 416535

Re: Switches

There is a preset parameter called "Preset Bool" (not sure when that was added), and that will probably show up as a switch in some DAWs
by adamszabo
Fri May 17, 2024 1:13 am
Forum: General
Topic: Flowstone 4 alpha (FS4)
Replies: 110
Views: 3128556

Re: Flowstone 4 alpha (FS4)

User108 wrote:
tulamide wrote:And there you have your answer.
Sorry? Could you elaborate? As I do not see any answer to my question regarding license.
If a person did not purchase FlowStone, why should he get access to the alpha?
by adamszabo
Thu May 09, 2024 2:18 pm
Forum: General
Topic: lfo always retriggers on note on
Replies: 2
Views: 29686

Re: lfo always retriggers on note on

You need to convert it to blue (mono) stream, so its always active. Read the Flowstone user manual to learn the difference between poly and mono signals ;)