Changes in src/tempo/tempo.h [95748a6:deb1fd4]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tempo/tempo.h
r95748a6 rdeb1fd4 122 122 smpl_t aubio_tempo_get_threshold(aubio_tempo_t * o); 123 123 124 /** get current beat period in samples125 126 \param bt beat tracking object127 128 Returns the currently observed period, in samples, or 0 if no consistent129 value is found.130 131 */132 smpl_t aubio_tempo_get_period (aubio_tempo_t * bt);133 134 /** get current beat period in seconds135 136 \param bt beat tracking object137 138 Returns the currently observed period, in seconds, or 0 if no consistent139 value is found.140 141 */142 smpl_t aubio_tempo_get_period_s (aubio_tempo_t * bt);143 144 124 /** get current tempo 145 125 … … 161 141 smpl_t aubio_tempo_get_confidence(aubio_tempo_t * o); 162 142 163 /* set number of tatum per beat164 165 \param o beat tracking object166 \param signature number of tatum per beat (between 1 and 64)167 168 */169 uint_t aubio_tempo_set_tatum_signature(aubio_tempo_t *o, uint_t signature);170 171 /* check whether a tatum was detected in the current frame172 173 \param o beat tracking object174 175 \return 2 if a beat was detected, 1 if a tatum was detected, 0 otherwise176 177 */178 uint_t aubio_tempo_was_tatum(aubio_tempo_t *o);179 180 /* get position of last_tatum, in samples181 182 \param o beat tracking object183 184 */185 smpl_t aubio_tempo_get_last_tatum(aubio_tempo_t *o);186 187 143 /** delete tempo detection object 188 144
Note: See TracChangeset
for help on using the changeset viewer.