/usr/include/aubio/tempo/tempo.h is in libaubio-dev 0.4.5-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 | /*
Copyright (C) 2006-2013 Paul Brossier <piem@aubio.org>
This file is part of aubio.
aubio is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
aubio is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with aubio. If not, see <http://www.gnu.org/licenses/>.
*/
/** \file
Tempo detection object
This object stores all the memory required for tempo detection algorithm
and returns the estimated beat locations.
\example tempo/test-tempo.c
\example examples/aubiotrack.c
*/
#ifndef AUBIO_TEMPO_H
#define AUBIO_TEMPO_H
#ifdef __cplusplus
extern "C" {
#endif
/** tempo detection structure */
typedef struct _aubio_tempo_t aubio_tempo_t;
/** create tempo detection object
\param method beat tracking method, unused for now (use "default")
\param buf_size length of FFT
\param hop_size number of frames between two consecutive runs
\param samplerate sampling rate of the signal to analyze
\return newly created ::aubio_tempo_t if successful, `NULL` otherwise
*/
aubio_tempo_t * new_aubio_tempo (const char_t * method,
uint_t buf_size, uint_t hop_size, uint_t samplerate);
/** execute tempo detection
\param o beat tracking object
\param input new samples
\param tempo output beats
*/
void aubio_tempo_do (aubio_tempo_t *o, const fvec_t * input, fvec_t * tempo);
/** get the time of the latest beat detected, in samples
\param o tempo detection object as returned by ::new_aubio_tempo
*/
uint_t aubio_tempo_get_last (aubio_tempo_t *o);
/** get the time of the latest beat detected, in seconds
\param o tempo detection object as returned by ::new_aubio_tempo
*/
smpl_t aubio_tempo_get_last_s (aubio_tempo_t *o);
/** get the time of the latest beat detected, in milliseconds
\param o tempo detection object as returned by ::new_aubio_tempo
*/
smpl_t aubio_tempo_get_last_ms (aubio_tempo_t *o);
/** set tempo detection silence threshold
\param o beat tracking object
\param silence new silence threshold, in dB
\return `0` if successful, non-zero otherwise
*/
uint_t aubio_tempo_set_silence(aubio_tempo_t * o, smpl_t silence);
/** get tempo detection silence threshold
\param o tempo detection object as returned by new_aubio_tempo()
\return current silence threshold
*/
smpl_t aubio_tempo_get_silence(aubio_tempo_t * o);
/** set tempo detection peak picking threshold
\param o beat tracking object
\param threshold new threshold
\return `0` if successful, non-zero otherwise
*/
uint_t aubio_tempo_set_threshold(aubio_tempo_t * o, smpl_t threshold);
/** get tempo peak picking threshold
\param o tempo detection object as returned by new_aubio_tempo()
\return current tempo detection threshold
*/
smpl_t aubio_tempo_get_threshold(aubio_tempo_t * o);
/** get current beat period in samples
\param bt beat tracking object
Returns the currently observed period, in samples, or 0 if no consistent
value is found.
*/
smpl_t aubio_tempo_get_period (aubio_tempo_t * bt);
/** get current beat period in seconds
\param bt beat tracking object
Returns the currently observed period, in seconds, or 0 if no consistent
value is found.
*/
smpl_t aubio_tempo_get_period_s (aubio_tempo_t * bt);
/** get current tempo
\param o beat tracking object
\return the currently observed tempo, or `0` if no consistent value is found
*/
smpl_t aubio_tempo_get_bpm(aubio_tempo_t * o);
/** get current tempo confidence
\param o beat tracking object
\return confidence with which the tempo has been observed, the higher the
more confidence, `0` if no consistent value is found.
*/
smpl_t aubio_tempo_get_confidence(aubio_tempo_t * o);
/** set number of tatum per beat
\param o beat tracking object
\param signature number of tatum per beat (between 1 and 64)
*/
uint_t aubio_tempo_set_tatum_signature(aubio_tempo_t *o, uint_t signature);
/** check whether a tatum was detected in the current frame
\param o beat tracking object
\return 2 if a beat was detected, 1 if a tatum was detected, 0 otherwise
*/
uint_t aubio_tempo_was_tatum(aubio_tempo_t *o);
/** get position of last_tatum, in samples
\param o beat tracking object
*/
smpl_t aubio_tempo_get_last_tatum(aubio_tempo_t *o);
/** get current delay
\param o beat tracking object
\return current delay, in samples
*/
uint_t aubio_tempo_get_delay(aubio_tempo_t * o);
/** get current delay in seconds
\param o beat tracking object
\return current delay, in seconds
*/
smpl_t aubio_tempo_get_delay_s(aubio_tempo_t * o);
/** get current delay in ms
\param o beat tracking object
\return current delay, in milliseconds
*/
smpl_t aubio_tempo_get_delay_ms(aubio_tempo_t * o);
/** set current delay
\param o beat tracking object
\param delay delay to set tempo to, in samples
\return `0` if successful, non-zero otherwise
*/
uint_t aubio_tempo_set_delay(aubio_tempo_t * o, sint_t delay);
/** set current delay in seconds
\param o beat tracking object
\param delay delay to set tempo to, in seconds
\return `0` if successful, non-zero otherwise
*/
uint_t aubio_tempo_set_delay_s(aubio_tempo_t * o, smpl_t delay);
/** set current delay
\param o beat tracking object
\param delay delay to set tempo to, in samples
\return `0` if successful, non-zero otherwise
*/
uint_t aubio_tempo_set_delay_ms(aubio_tempo_t * o, smpl_t delay);
/** delete tempo detection object
\param o beat tracking object
*/
void del_aubio_tempo(aubio_tempo_t * o);
#ifdef __cplusplus
}
#endif
#endif /* AUBIO_TEMPO_H */
|