Well, it would require writing a ladspa host in Bela, which should be as simple as calling the LADSPA dsp callback from within render()
, plus a lot of ancillary stuff.
Have a look at the Bela/examples/08-PureData/customRender/render.cpp
file, that is an example of how to interface with an existing library. All the stuff in render()
is simply placing the inputs in the appropriate buffer, then the callback libpd_process_sys()
gets called and then after that pd's outputs are put back into Bela's buffers.
There is some more (rather verbose) stuff for MIDI and digital messaging in there, but that does not necessarily have to be there.
Wanna give it a try?