* Improvements to offline phase reset point detection
* Better support for higher sample rates * Save and restore FFTW wisdom (needs work still) * More tidying, options and argument overhauls
This commit is contained in:
@@ -34,12 +34,13 @@ public:
|
||||
static const int OptionStretchElastic = 0x00000000;
|
||||
static const int OptionStretchPrecise = 0x00000010;
|
||||
|
||||
static const int OptionTransientsMixed = 0x00000000;
|
||||
static const int OptionTransientsSmooth = 0x00000100;
|
||||
static const int OptionTransientsCrisp = 0x00000200;
|
||||
static const int OptionTransientsCrisp = 0x00000000;
|
||||
static const int OptionTransientsMixed = 0x00000100;
|
||||
static const int OptionTransientsSmooth = 0x00000200;
|
||||
|
||||
static const int OptionPhasePeakLocked = 0x00000000;
|
||||
static const int OptionPhaseIndependent = 0x00001000;
|
||||
static const int OptionPhaseAdaptive = 0x00000000;
|
||||
static const int OptionPhasePeakLocked = 0x00001000;
|
||||
static const int OptionPhaseIndependent = 0x00002000;
|
||||
|
||||
static const int OptionThreadingAuto = 0x00000000;
|
||||
static const int OptionThreadingNone = 0x00010000;
|
||||
@@ -98,6 +99,8 @@ public:
|
||||
|
||||
virtual void setDebugLevel(int level);
|
||||
|
||||
static void setDefaultDebugLevel(int level);
|
||||
|
||||
protected:
|
||||
class Impl;
|
||||
Impl *m_d;
|
||||
|
||||
Reference in New Issue
Block a user