Mercurial > hg > vamp-aubio-plugins
comparison plugins/Pitch.h @ 30:7fd8f7a0b088
Start overhaul for (current git, presumably later v0.4.0) aubio API
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Mon, 09 Jul 2012 15:10:35 +0100 |
parents | 1a7563c56d88 |
children | 2e979622bd93 |
comparison
equal
deleted
inserted
replaced
29:11f0fcad5418 | 30:7fd8f7a0b088 |
---|---|
52 | 52 |
53 FeatureSet getRemainingFeatures(); | 53 FeatureSet getRemainingFeatures(); |
54 | 54 |
55 protected: | 55 protected: |
56 fvec_t *m_ibuf; | 56 fvec_t *m_ibuf; |
57 aubio_pitchdetection_t *m_pitchdet; | 57 aubio_pitch_t *m_pitchdet; |
58 aubio_pitchdetection_type m_pitchtype; | 58 PitchType m_pitchtype; |
59 aubio_pitchdetection_mode m_pitchmode; | |
60 float m_minfreq; | 59 float m_minfreq; |
61 float m_maxfreq; | 60 float m_maxfreq; |
62 float m_silence; | 61 float m_silence; |
63 bool m_wrapRange; | 62 bool m_wrapRange; |
64 | 63 |