DISTRHO / DPF

DISTRHO Plugin Framework
ISC License
645 stars 93 forks source link

AU papercuts #123

Open falkTX opened 5 years ago

falkTX commented 5 years ago

A collection of small but nasty things to do

zamaudio commented 5 years ago

Param changes via callbacks:

create an event listener with AUEventListenerCreate(amParameterChange_AUEventListenerProc, then add a parameter listener for every parameter id using AUEventListenerAddEventType AudioUnitParameter parameter = {audioUnit, parameterId, kAudioUnitScope_Global, 0 };

jpcima commented 5 years ago

I'll let it known I have a tool to build the AU resource fork without Xcode use. It is an option to consider for cross-compilation builds. I have arranged it to produce an exactly identical binary from rsrc output of a Juce plugin. https://github.com/jpcima/AuRez

falkTX commented 5 years ago

very nice, so we can get cross-compilation working. better yet, we control the build in a better way if we use that.

I am taking a pause from DPF stuff to finalize carla and jack2 releases, but great to know that exists.