I am trying to find a way to control the playback position / tempo of a VST Host from a VST plugin build with JUCE.
I am not sure if this is possible.
I found a setPlayHead
function on the AudioProcessor
, and i think this might be what i am looking for.
https://www.juce.com/doc/classAudioProcessor#a9015f8476c07b173e3c9919b3036339d
But on the doc of the setPlayHead
i am reading this:
Tells the processor to use this playhead object.
So can anybody tell me if this is supposed to mean that the new AudioPlayHead that is set on the AudioProcessor will be used for the Hosts playback (z.b. Cubase), or does it mean that only the AudioProcessor of my VST plugin will use this AudioPlayHead, and the AudioPlayHead of the Host remains unaffected)
Thanks for any help / input on this.