This commit is contained in:
Chris Cannam
2022-06-06 17:10:12 +01:00
parent 100a7c0ba6
commit 6ef77ef7aa
2 changed files with 13 additions and 58 deletions

View File

@@ -138,14 +138,12 @@ protected:
};
struct FormantData {
bool enabled;
int fftSize;
FixedVector<double> cepstra;
FixedVector<double> envelope;
FixedVector<double> spare;
FormantData(int _fftSize) :
enabled(false),
fftSize(_fftSize),
cepstra(_fftSize, 0.0),
envelope(_fftSize/2 + 1, 0.0),