Hey all,
I've written an external to send audio data from Pd to a DAW that I'm working on. To get the signal through with no errors, I need to increase the DSP block size to 512, which I'm doing with [block~ 512 1 1]
. This works fine for my external, but seems to break [dac~]
; upon enabling DSP, the error int he title is printed to the console, and no audio output is heard. I also changed the block size in audio settings to 512, which I thought would solve this. My expectation was that the 'Pd vector size' is set by [block~]
, and the dac~ input vector size is determined by the audio setting. If both are 512, then why might I get this error?