source: src/tempo/tempo.h @ a6e2e5f

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since a6e2e5f was 5899752, checked in by Paul Brossier <piem@piem.org>, 10 years ago

src/tempo/tempo.h: fix silence documentation

  • Property mode set to 100644
File size: 3.2 KB
Line 
1/*
2  Copyright (C) 2006-2009 Paul Brossier <piem@aubio.org>
3
4  This file is part of aubio.
5
6  aubio is free software: you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation, either version 3 of the License, or
9  (at your option) any later version.
10
11  aubio is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  GNU General Public License for more details.
15
16  You should have received a copy of the GNU General Public License
17  along with aubio.  If not, see <http://www.gnu.org/licenses/>.
18
19*/
20
21/** \file
22
23  Tempo detection object
24
25  This object stores all the memory required for tempo detection algorithm
26  and returns the estimated beat locations.
27
28  \example tempo/test-tempo.c
29
30*/
31
32#ifndef TEMPO_H
33#define TEMPO_H
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
39/** tempo detection structure */
40typedef struct _aubio_tempo_t aubio_tempo_t;
41
42/** create tempo detection object
43
44  \param method beat tracking method, unused for now (use "default")
45  \param buf_size length of FFT
46  \param hop_size number of frames between two consecutive runs
47  \param samplerate sampling rate of the signal to analyze
48
49  \return newly created ::aubio_tempo_t if successful, `NULL` otherwise
50
51*/
52aubio_tempo_t * new_aubio_tempo (char_t * method,
53    uint_t buf_size, uint_t hop_size, uint_t samplerate);
54
55/** execute tempo detection
56
57  \param o beat tracking object
58  \param input new samples
59  \param tempo output beats
60
61*/
62void aubio_tempo_do (aubio_tempo_t *o, fvec_t * input, fvec_t * tempo);
63
64/** get the time of the latest beat detected, in samples
65
66  \param o tempo detection object as returned by ::new_aubio_tempo
67
68*/
69uint_t aubio_tempo_get_last (aubio_tempo_t *o);
70
71/** get the time of the latest beat detected, in seconds
72
73  \param o tempo detection object as returned by ::new_aubio_tempo
74
75*/
76smpl_t aubio_tempo_get_last_s (aubio_tempo_t *o);
77
78/** get the time of the latest beat detected, in milliseconds
79
80  \param o tempo detection object as returned by ::new_aubio_tempo
81
82*/
83smpl_t aubio_tempo_get_last_ms (aubio_tempo_t *o);
84
85/** set tempo detection silence threshold
86
87  \param o beat tracking object
88  \param silence new silence threshold, in dB
89
90  \return `0` if successful, non-zero otherwise
91
92*/
93uint_t aubio_tempo_set_silence(aubio_tempo_t * o, smpl_t silence);
94
95/** set tempo detection peak picking threshold
96
97  \param o beat tracking object
98  \param threshold new threshold
99
100  \return `0` if successful, non-zero otherwise
101
102*/
103uint_t aubio_tempo_set_threshold(aubio_tempo_t * o, smpl_t threshold);
104
105/** get current tempo
106
107  \param o beat tracking object
108
109  \return the currently observed tempo, or `0` if no consistent value is found
110
111*/
112smpl_t aubio_tempo_get_bpm(aubio_tempo_t * o);
113
114/** get current tempo confidence
115
116  \param o beat tracking object
117
118  \return confidence with which the tempo has been observed, `0` if no
119  consistent value is found.
120
121*/
122smpl_t aubio_tempo_get_confidence(aubio_tempo_t * o);
123
124/** delete tempo detection object
125
126  \param o beat tracking object
127
128*/
129void del_aubio_tempo(aubio_tempo_t * o);
130
131#ifdef __cplusplus
132}
133#endif
134
135#endif /* TEMPO_H */
Note: See TracBrowser for help on using the repository browser.