MCPcopy Create free account
hub / github.com/LabSound/LabSound / AudioParam

Method AudioParam

src/core/AudioParam.cpp:28–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26const double AudioParam::SnapThreshold = 0.001;
27
28AudioParam::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
36AudioParam::~AudioParam() {}
37

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected