There are several examples on the web where we add a AudioGraphIOProcessor to an AudioProcessorGraph.
However, XCode does not seem to appreciate:
AudioProcessorGraph::AudioGraphIOProcessor* input = new AudioProcessorGraph::AudioGraphIOProcessor( AudioProcessorGraph::AudioGraphIOProcessor::audioInputNode);
with graph being a AudioProcessorGraph,
AudioProcessorGraph::Node::Ptr inputNodePtr = graph.addNode(input);
addNode() is expecting a std::unique_ptr<AudioProcessor>,
XCode says “no viable conversion”.
What am I missing?
