| 61 | } |
| 62 | |
| 63 | std::string getDeviceName(int deviceId) override { |
| 64 | if (rtAudio) { |
| 65 | RtAudio::DeviceInfo deviceInfo = rtAudio->getDeviceInfo(deviceId); |
| 66 | if (deviceInfo.ID > 0) |
| 67 | return deviceInfo.name; |
| 68 | } |
| 69 | return ""; |
| 70 | } |
| 71 | |
| 72 | int getDeviceNumInputs(int deviceId) override { |
| 73 | if (rtAudio) { |
nothing calls this directly
no outgoing calls
no test coverage detected