MCPcopy Create free account
hub / github.com/DamRsn/NeuralNote / ASIOGetChannels

Function ASIOGetChannels

ThirdParty/ASIO/common/asio.cpp:124–132  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

122}
123
124ASIOError ASIOGetChannels(long *numInputChannels, long *numOutputChannels)
125{
126 if(!theAsioDriver)
127 {
128 *numInputChannels = *numOutputChannels = 0;
129 return ASE_NotPresent;
130 }
131 return theAsioDriver->getChannels(numInputChannels, numOutputChannels);
132}
133
134ASIOError ASIOGetLatencies(long *inputLatency, long *outputLatency)
135{

Callers

nothing calls this directly

Calls 1

getChannelsMethod · 0.80

Tested by

no test coverage detected