| 3259 | } |
| 3260 | |
| 3261 | void RtApiAsio ::saveDeviceInfo(void) |
| 3262 | { |
| 3263 | devices_.clear(); |
| 3264 | |
| 3265 | unsigned int nDevices = getDeviceCount(); |
| 3266 | devices_.resize(nDevices); |
| 3267 | for (unsigned int i = 0; i < nDevices; i++) |
| 3268 | devices_[i] = getDeviceInfo(i); |
| 3269 | } |
| 3270 | |
| 3271 | bool RtApiAsio ::probeDeviceOpen(unsigned int device, StreamMode mode, unsigned int channels, |
| 3272 | unsigned int firstChannel, unsigned int sampleRate, |
no test coverage detected