pub unsafe extern "C-unwind" fn AUGraphAddNode(
in_graph: AUGraph,
in_description: NonNull<AudioComponentDescription>,
out_node: NonNull<AUNode>,
) -> i32๐Deprecated: AUGraph is deprecated in favor of AVAudioEngine
Available on crate features
AUGraph and AudioComponent only.Expand description
Add a node to an AUGraph
Creates a node in the graph that is an AudioUnit, using the supplied AudioComponentDescription to find and open that unit.
Parameter inGraph: the AUGraph object
Parameter inDescription: the AudioComponentDescription used to find and open the AudioUnit
Parameter outNode: the newly added node
ยงSafety
in_graphmust be a valid pointer.in_descriptionmust be a valid pointer.out_nodemust be a valid pointer.