| 156 | } |
| 157 | |
| 158 | void DeviceTest::setupMultiChannelDeviceWindows( const string &deviceName ) |
| 159 | { |
| 160 | auto outputDev = audio::Device::findOutputByName( deviceName ); |
| 161 | if( outputDev ) |
| 162 | setOutputDevice( outputDev, outputDev->getNumOutputChannels() ); |
| 163 | else |
| 164 | CI_LOG_E( "could not find output device named: " << deviceName ); |
| 165 | |
| 166 | auto inputDev = audio::Device::findInputByName( deviceName ); |
| 167 | if( inputDev ) |
| 168 | setInputDevice( inputDev, inputDev->getNumInputChannels() ); |
| 169 | else |
| 170 | CI_LOG_E( "could not find input device named: " << deviceName ); |
| 171 | } |
| 172 | |
| 173 | void DeviceTest::setupRolandOctaCaptureInputMonitoring() |
| 174 | { |
nothing calls this directly
no test coverage detected