Re: [PD-dev] What goes on during dsp ticks?

2008-06-14 Thread Thomas Grill
Hi David, Am 14.06.2008 um 03:08 schrieb PSPunch: = == PROCESS BLOCK.2 == = while (n--) { // *out++ = *in++; } Remarks: Action is commented out but signal goes through.. Why? that's because in and out can point to the same memory... signal

[PD-dev] What goes on during dsp ticks?

2008-06-13 Thread PSPunch
Hi, I would highly appreciate some assistance in grasping how signals are processed in DSP objects. Working on the following template, I will demonstrate variations in the . As results do not appear as the way I expect, there must be something I am not understanding correctly. == Tem