| 15 | namespace lab |
| 16 | { |
| 17 | struct 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 | |
| 32 | static AudioSettingDescriptor s_AnalyserSettings[] = { |
| 33 | {"fftSize", "FFTS", SettingType::Integer}, |
nothing calls this directly
no outgoing calls
no test coverage detected