AUGraphRemoveNode

Function AUGraphRemoveNode 

Source
pub unsafe extern "C-unwind" fn AUGraphRemoveNode(
    in_graph: AUGraph,
    in_node: AUNode,
) -> i32
๐Ÿ‘ŽDeprecated: AUGraph is deprecated in favor of AVAudioEngine
Available on crate feature AUGraph only.
Expand description

Remove a node from an AUGraph

Nodes can be removed from any thread context. The output node of the AUGraph cannot be removed while the graph is running.

Parameter inGraph: the AUGraph object

Parameter inNode: the node to be removed

ยงSafety

in_graph must be a valid pointer.