The spectral module enabled parameters still not doing so great...

This commit is contained in:
xenakios
2018-03-09 18:05:33 +02:00
parent 828c9e1479
commit 6d7671e8cf
6 changed files with 40 additions and 24 deletions

View File

@ -438,9 +438,9 @@ class SpectrumProcess
{
public:
SpectrumProcess() {}
SpectrumProcess(int index, bool enabled) : m_index(index), m_enabled(enabled) {}
SpectrumProcess(int index, AudioParameterBool* enabled) : m_index(index), m_enabled(enabled) {}
int m_index = -1;
bool m_enabled = true;
AudioParameterBool* m_enabled = nullptr;
};
class ProcessedStretch final : public Stretch