Mercurial > hg > vamp-aubio-plugins
comparison plugins/Tempo.h @ 35:bcb23bb4b7aa
Get the rest to build
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Tue, 10 Jul 2012 17:20:10 +0100 |
parents | 8a20f3488d88 |
children | 4634452ef09f |
comparison
equal
deleted
inserted
replaced
34:0f40399ca1ff | 35:bcb23bb4b7aa |
---|---|
53 | 53 |
54 FeatureSet getRemainingFeatures(); | 54 FeatureSet getRemainingFeatures(); |
55 | 55 |
56 protected: | 56 protected: |
57 fvec_t *m_ibuf; | 57 fvec_t *m_ibuf; |
58 cvec_t *m_fftgrain; | 58 fvec_t *m_beat; |
59 fvec_t *m_onset; | 59 smpl_t m_bpm; |
60 aubio_pvoc_t *m_pv; | |
61 aubio_peakpicker_t *m_peakpick; | |
62 aubio_onset_t *m_onsetdet; | |
63 OnsetType m_onsettype; | 60 OnsetType m_onsettype; |
64 aubio_tempo_t *m_tempo; | 61 aubio_tempo_t *m_tempo; |
65 fvec_t *m_dfframe; | |
66 fvec_t *m_btout; | |
67 uint_t m_winlen; | |
68 sint_t m_btstep; | |
69 sint_t m_btcounter; | |
70 float m_threshold; | 62 float m_threshold; |
71 float m_silence; | 63 float m_silence; |
72 size_t m_stepSize; | 64 size_t m_stepSize; |
73 size_t m_blockSize; | 65 size_t m_blockSize; |
74 Vamp::RealTime m_delay; | 66 Vamp::RealTime m_delay; |