Initial work to allow having some spectral module order presets

This commit is contained in:
xenakios
2018-11-11 14:46:25 +02:00
parent 605852d853
commit 93cebcdcd2
2 changed files with 20 additions and 0 deletions

View File

@ -113,6 +113,7 @@ public:
CriticalSection* getMutex() { return &m_cs; }
int64_t getLastSourcePosition() const { return m_last_filepos; }
int m_prebuffersize = 0;
void setSpectralOrderPreset(int id);
private:
CircularBuffer<float> m_stretchoutringbuf{ 1024 * 1024 };
AudioBuffer<float> m_file_inbuf;
@ -173,4 +174,5 @@ private:
AudioBuffer<float> m_drypreviewbuf;
int64_t m_last_filepos = 0;
void playDrySound(const AudioSourceChannelInfo & bufferToFill);
int m_current_spec_order_preset = -1;
};