I’m wanting to read USB channels from a mixing console, process them and send a binaural output to headphones. I initially do a auto* device = deviceManager.getCurrentAudioDevice(); to get the system sound, where the output is set to the headphone output. To see my ASIO mixer, I have to do a deviceManager.setCurrentAudioDeviceType("ASIO", true); But after doing this, setting the input name and then doing a setup = deviceManager.getAudioDeviceSetup(); I no longer see my system headphone output when I do a DBG(setup.outputDeviceName); Is there a way that I can have an ASIO input and, for example, a WDM output device?
