MCPcopy Create free account
hub / github.com/LabSound/LabSound / input

Method input

src/core/AudioNode.cpp:394–398  ·  view source on GitHub ↗

safe without a Render lock because vector is immutable

Source from the content-addressed store, hash-verified

392
393// safe without a Render lock because vector is immutable
394std::shared_ptr<AudioNodeInput> AudioNode::input(int i)
395{
396 if (i < m_inputs.size()) return m_inputs[i];
397 return nullptr;
398}
399
400// safe without a Render lock because vector is immutable
401std::shared_ptr<AudioNodeOutput> AudioNode::output(int i)

Callers 7

processMethod · 0.80
handlePreRenderTasksMethod · 0.80
isConnectedMethod · 0.80
debugTraverseMethod · 0.80
processMethod · 0.80

Calls 1

sizeMethod · 0.80

Tested by

no test coverage detected