1234567891011121314151617181920 |
- #include "config.h"
- #include "bformatdec.h"
- #include "bs2b.h"
- #include "device.h"
- #include "front_stablizer.h"
- #include "hrtf.h"
- #include "mastering.h"
- static_assert(std::atomic<std::chrono::nanoseconds>::is_always_lock_free);
- DeviceBase::DeviceBase(DeviceType type)
- : Type{type}, mContexts{al::FlexArray<ContextBase*>::Create(0)}
- {
- }
- DeviceBase::~DeviceBase() = default;
|