Contents

AUGraphAddNode(_:_:_:)

Adds a node to an audio processing graph.

Declaration

func AUGraphAddNode(_ inGraph: AUGraph, _ inDescription: UnsafePointer<AudioComponentDescription>, _ outNode: UnsafeMutablePointer<AUNode>) -> OSStatus

Parameters

  • inGraph:

    The AUGraph object that you are adding a node to.

  • inDescription:

    The AudioComponentDescription object used to find and open the audio unit that you are adding as a new node.

  • outNode:

    The newly added node.

Return Value

A result code.

Discussion

Creates a node in an audio processing graph, using the supplied AudioComponentDescription object to find and open the audio unit for the node.

See Also

Audio Unit Processing Graph Services Functions