| 18 | std::recursive_mutex AudioThread::m_device_mutex; |
| 19 | |
| 20 | AudioThread::AudioThread() : IOThread(), nBufferFrames(1024), sampleRate(0), controllerThread(nullptr) { |
| 21 | |
| 22 | audioQueuePtr = 0; |
| 23 | underflowCount = 0; |
| 24 | active.store(false); |
| 25 | outputDevice.store(-1); |
| 26 | gain = 1.0; |
| 27 | } |
| 28 | |
| 29 | AudioThread::~AudioThread() { |
| 30 |
nothing calls this directly
no outgoing calls
no test coverage detected