| 26 | const double AudioParam::SnapThreshold = 0.001; |
| 27 | |
| 28 | AudioParam::AudioParam(AudioParamDescriptor const * const desc) noexcept |
| 29 | : _desc(desc) |
| 30 | , m_value(desc->defaultValue) |
| 31 | , m_smoothedValue(desc->defaultValue) |
| 32 | , m_smoothingConstant(DefaultSmoothingConstant) |
| 33 | { |
| 34 | } |
| 35 | |
| 36 | AudioParam::~AudioParam() {} |
| 37 |
nothing calls this directly
no outgoing calls
no test coverage detected