| 70 | } |
| 71 | |
| 72 | int getDeviceNumInputs(int deviceId) override { |
| 73 | if (rtAudio) { |
| 74 | RtAudio::DeviceInfo deviceInfo = rtAudio->getDeviceInfo(deviceId); |
| 75 | if (deviceInfo.ID > 0) |
| 76 | return deviceInfo.inputChannels; |
| 77 | } |
| 78 | return 0; |
| 79 | } |
| 80 | |
| 81 | int getDeviceNumOutputs(int deviceId) override { |
| 82 | if (rtAudio) { |
nothing calls this directly
no outgoing calls
no test coverage detected