MCPcopy Create free account
hub / github.com/LabSound/LabSound / AnalyserNode::Detail

Class AnalyserNode::Detail

src/core/AnalyserNode.cpp:17–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15namespace lab
16{
17struct AnalyserNode::Detail
18{
19 Detail() = default;
20 ~Detail()
21 {
22 delete m_analyser;
23 }
24 RealtimeAnalyser * m_analyser = nullptr;
25
26 std::shared_ptr<AudioSetting> _fftSize;
27 std::shared_ptr<AudioSetting> _minDecibels;
28 std::shared_ptr<AudioSetting> _maxDecibels;
29 std::shared_ptr<AudioSetting> _smoothingTimeConstant;
30};
31
32static AudioSettingDescriptor s_AnalyserSettings[] = {
33 {"fftSize", "FFTS", SettingType::Integer},

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected