1

With audio units you have to add the nodes to a graph like so...

AUGraphAddNode(processingGraph, &mixerUnitDescription, &mixerNode)
AUGraphAddNode(processingGraph, &outputUnitDescription, &outputNode)

Does the order of which node you call this on first change anything? Or is it simple how you CONNECT the nodes that matters?

benstpierre
  • 32,833
  • 51
  • 177
  • 288

1 Answers1

2

The order doesn't matter, because an AUGraph can be reconfigured dynamically to add, remove, or alter node connections. As you point out it's all about how the nodes are connected to each other.

sbooth
  • 16,646
  • 2
  • 55
  • 81