Removed the phase freeze processing for now.

This commit is contained in:
xenakios
2019-01-17 15:23:01 +02:00
parent 13e39ca30c
commit 23d63c8827
7 changed files with 11 additions and 63 deletions

View File

@ -114,8 +114,7 @@ public:
int64_t getLastSourcePosition() const { return m_last_filepos; }
int m_prebuffersize = 0;
void setSpectralOrderPreset(int id);
int getPhaseRefreshRate() const { return m_phase_refresh_rate; }
void setPhaseRefreshRate(int rate);
private:
CircularBuffer<float> m_stretchoutringbuf{ 1024 * 1024 };
AudioBuffer<float> m_file_inbuf;
@ -144,7 +143,7 @@ private:
int m_pause_state = 0;
Range<double> m_playrange{ 0.0,1.0 };
int64_t m_rand_count = 0;
int m_phase_refresh_rate = 1;
bool m_stream_end_reached = false;
int64_t m_output_silence_counter = 0;
File m_curfile;