comparison plugins/KeyDetect.h @ 63:b084e87b83e4

* Add README files for the various platform packages * Fix typo in cat file * Return simpler key names from key detector * Chromagram and constant Q default to unnormalized * Permit up to 48 bpo in constant Q
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 07 Feb 2008 10:03:04 +0000
parents 90fa946fda40
children 3602e755b696
comparison
equal deleted inserted replaced
62:f33b60d46d16 63:b084e87b83e4
77 mutable size_t m_stepSize; 77 mutable size_t m_stepSize;
78 mutable size_t m_blockSize; 78 mutable size_t m_blockSize;
79 float m_tuningFrequency; 79 float m_tuningFrequency;
80 int m_length; 80 int m_length;
81 81
82 const char *getKeyName(int index) const; 82 std::string getKeyName(int index, bool minor, bool includeMajMin) const;
83 83
84 GetKeyMode* m_getKeyMode; 84 GetKeyMode* m_getKeyMode;
85 double* m_inputFrame; 85 double* m_inputFrame;
86 int m_prevKey; 86 int m_prevKey;
87 }; 87 };