jasiohost
jasiohost copied to clipboard
No Tone runing ExampleHost
No Tone, After Lunching ExampleHost and hitting the Start Button. I only get a message from ASIO4ALL Icon indicating samples and frecuency.
It's because ExampleHost is hard coding the channels index using only the first two, channels which in make case do nothing:
activeChannels.add(asioDriver.getChannelOutput(0));
activeChannels.add(asioDriver.getChannelOutput(1));
It should be:
for (int i = 0; i < asioDriver.getNumChannelsOutput(); i++)
{
AsioChannel asioChannel = asioDriver.getChannelOutput(i);
activeChannels.add(asioChannel);
}