| 219 | } |
| 220 | |
| 221 | bool AudioDevice_RtAudio::isRunning() const |
| 222 | { |
| 223 | try |
| 224 | { |
| 225 | return rtaudio_ctx.isStreamRunning(); |
| 226 | } |
| 227 | catch (const RtAudioError & e) |
| 228 | { |
| 229 | LOG_ERROR(e.getMessage().c_str()); |
| 230 | return false; |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | |
| 235 | // Pulls on our provider to get rendered audio stream. |
nothing calls this directly
no test coverage detected