1 | /* |
---|
2 | Copyright (C) 2003 Paul Brossier |
---|
3 | |
---|
4 | This program is free software; you can redistribute it and/or modify |
---|
5 | it under the terms of the GNU General Public License as published by |
---|
6 | the Free Software Foundation; either version 2 of the License, or |
---|
7 | (at your option) any later version. |
---|
8 | |
---|
9 | This program is distributed in the hope that it will be useful, |
---|
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
12 | GNU General Public License for more details. |
---|
13 | |
---|
14 | You should have received a copy of the GNU General Public License |
---|
15 | along with this program; if not, write to the Free Software |
---|
16 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
17 | */ |
---|
18 | |
---|
19 | #ifndef PITCHAUTOTCORR_H |
---|
20 | #define PITCHAUTOTCORR_H |
---|
21 | |
---|
22 | #ifdef __cplusplus |
---|
23 | extern "C" { |
---|
24 | #endif |
---|
25 | |
---|
26 | /** \file |
---|
27 | |
---|
28 | Generic method for pitch detection |
---|
29 | |
---|
30 | This file creates the objects required for the computation of the selected |
---|
31 | pitch detection algorithm and output the results, in midi note or Hz. |
---|
32 | |
---|
33 | */ |
---|
34 | |
---|
35 | /** pitch detection object */ |
---|
36 | typedef struct _aubio_pitchdetection_t aubio_pitchdetection_t; |
---|
37 | |
---|
38 | /** execute pitch detection on an input signal frame |
---|
39 | |
---|
40 | \param o pitch detection object as returned by new_aubio_pitchdetection() |
---|
41 | \param in input signal of size [hopsize x channels] |
---|
42 | \param out output pitch candidates of size [1 x channes] |
---|
43 | |
---|
44 | */ |
---|
45 | void aubio_pitchdetection_do (aubio_pitchdetection_t * o, fvec_t * in, |
---|
46 | fvec_t * out); |
---|
47 | |
---|
48 | /** change yin or yinfft tolerance threshold |
---|
49 | |
---|
50 | \param o pitch detection object as returned by new_aubio_pitchdetection() |
---|
51 | \param tol tolerance default is 0.15 for yin and 0.85 for yinfft |
---|
52 | |
---|
53 | */ |
---|
54 | uint_t aubio_pitchdetection_set_tolerance (aubio_pitchdetection_t * o, |
---|
55 | smpl_t tol); |
---|
56 | |
---|
57 | /** deletion of the pitch detection object |
---|
58 | |
---|
59 | \param o pitch detection object as returned by new_aubio_pitchdetection() |
---|
60 | |
---|
61 | */ |
---|
62 | void del_aubio_pitchdetection (aubio_pitchdetection_t * o); |
---|
63 | |
---|
64 | /** creation of the pitch detection object |
---|
65 | |
---|
66 | \param mode set pitch detection algorithm |
---|
67 | \param bufsize size of the input buffer to analyse |
---|
68 | \param hopsize step size between two consecutive analysis instant |
---|
69 | \param channels number of channels to analyse |
---|
70 | \param samplerate sampling rate of the signal |
---|
71 | |
---|
72 | */ |
---|
73 | aubio_pitchdetection_t *new_aubio_pitchdetection (char_t * mode, |
---|
74 | uint_t bufsize, uint_t hopsize, uint_t channels, uint_t samplerate); |
---|
75 | |
---|
76 | /** set the output unit of the pitch detection object |
---|
77 | |
---|
78 | \param o pitch detection object as returned by new_aubio_pitchdetection() |
---|
79 | \param mode set pitch units for output |
---|
80 | |
---|
81 | */ |
---|
82 | uint_t aubio_pitchdetection_set_unit (aubio_pitchdetection_t * o, |
---|
83 | char_t * mode); |
---|
84 | |
---|
85 | #ifdef __cplusplus |
---|
86 | } |
---|
87 | #endif |
---|
88 | |
---|
89 | #endif /*PITCHDETECTION_H*/ |
---|