output/wasapi: move runtime fields below configuration fields

This commit is contained in:
Max Kellermann 2021-03-10 19:59:57 +01:00
parent 08135f2cb7
commit 1da27be84d
1 changed files with 4 additions and 2 deletions

View File

@ -228,13 +228,15 @@ private:
};
class WasapiOutput final : public AudioOutput {
std::atomic_flag not_interrupted = true;
bool is_started = false;
const bool is_exclusive;
const bool enumerate_devices;
#ifdef ENABLE_DSD
const bool dop_setting;
#endif
bool is_started = false;
std::atomic_flag not_interrupted = true;
std::string device_config;
std::shared_ptr<COMWorker> com_worker;
ComPtr<IMMDevice> device;