Re: [PD-dev] Help: How to emulate a larger block size?

2023-11-23 Thread Christof Ressi
Can anyone point me on a direction to make an artificial larger block from an 64 block? You just have to buffer the incoming samples and only do the DSP once the buffer is full. Rinse and repeat. Any object as an example I should see? Have a look at [env~]. Christof On 23.11.2023 16:25,

[PD-dev] Help: How to emulate a larger block size?

2023-11-23 Thread Lucas Cordiviola
Hi list, Coming from https://lists.puredata.info/pipermail/pd-list/2023-11/132742.html to the dev list as this more for C code. I have a working DSP object @ https://github.com/Lucarda/pulqui-tilde/blob/main/pulqui%7E.c but for now it only works on a re-blocked sub patch (4096 samples).

Re: [PD-dev] help setting signal input via arg

2023-11-23 Thread Alexandre Torres Porres
THANKS!!! Em qui., 23 de nov. de 2023 às 09:18, Christof Ressi escreveu: > CLASS_SIGNALMAININ expects the variable to be t_float, but x_cf is > declared as a double! The compiler happily accepts it and you get garbage > at runtime! In this particular case, Pd would read the lower half of the >

Re: [PD-dev] help setting signal input via arg

2023-11-23 Thread Christof Ressi
CLASS_SIGNALMAININ expects the variable to be t_float, but x_cf is declared as a double! The compiler happily accepts it and you get garbage at runtime! In this particular case, Pd would read the lower half of the double and interpret it as a float. Actually, there are ways to check the type