[96fb8ad] | 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. |
---|
[6d4ec49] | 17 | */ |
---|
[96fb8ad] | 18 | |
---|
[ca1abdd] | 19 | #ifndef PITCH_H |
---|
| 20 | #define PITCH_H |
---|
[96fb8ad] | 21 | |
---|
| 22 | #ifdef __cplusplus |
---|
| 23 | extern "C" { |
---|
| 24 | #endif |
---|
| 25 | |
---|
[f44b111] | 26 | /** \file |
---|
| 27 | |
---|
[6d4ec49] | 28 | Generic method for pitch detection |
---|
[f44b111] | 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 */ |
---|
[ca1abdd] | 36 | typedef struct _aubio_pitch_t aubio_pitch_t; |
---|
[f44b111] | 37 | |
---|
| 38 | /** execute pitch detection on an input signal frame |
---|
[6d4ec49] | 39 | |
---|
[ca1abdd] | 40 | \param o pitch detection object as returned by new_aubio_pitch() |
---|
[93177fa] | 41 | \param in input signal of size [hopsize x channels] |
---|
| 42 | \param out output pitch candidates of size [1 x channes] |
---|
[6d4ec49] | 43 | |
---|
[f44b111] | 44 | */ |
---|
[ca1abdd] | 45 | void aubio_pitch_do (aubio_pitch_t * o, fvec_t * in, |
---|
[93177fa] | 46 | fvec_t * out); |
---|
[96fb8ad] | 47 | |
---|
[f44b111] | 48 | /** change yin or yinfft tolerance threshold |
---|
[6d4ec49] | 49 | |
---|
[ca1abdd] | 50 | \param o pitch detection object as returned by new_aubio_pitch() |
---|
[93177fa] | 51 | \param tol tolerance default is 0.15 for yin and 0.85 for yinfft |
---|
[6d4ec49] | 52 | |
---|
[f44b111] | 53 | */ |
---|
[ca1abdd] | 54 | uint_t aubio_pitch_set_tolerance (aubio_pitch_t * o, |
---|
[93177fa] | 55 | smpl_t tol); |
---|
[f44b111] | 56 | |
---|
| 57 | /** deletion of the pitch detection object |
---|
[6d4ec49] | 58 | |
---|
[ca1abdd] | 59 | \param o pitch detection object as returned by new_aubio_pitch() |
---|
[6d4ec49] | 60 | |
---|
[f44b111] | 61 | */ |
---|
[ca1abdd] | 62 | void del_aubio_pitch (aubio_pitch_t * o); |
---|
[96fb8ad] | 63 | |
---|
[f44b111] | 64 | /** creation of the pitch detection object |
---|
[6d4ec49] | 65 | |
---|
[93177fa] | 66 | \param mode set pitch detection algorithm |
---|
[6d4ec49] | 67 | \param bufsize size of the input buffer to analyse |
---|
| 68 | \param hopsize step size between two consecutive analysis instant |
---|
[f44b111] | 69 | \param channels number of channels to analyse |
---|
[6d4ec49] | 70 | \param samplerate sampling rate of the signal |
---|
| 71 | |
---|
[f44b111] | 72 | */ |
---|
[ca1abdd] | 73 | aubio_pitch_t * new_aubio_pitch (char_t * mode, |
---|
[fe163ad] | 74 | uint_t bufsize, uint_t hopsize, uint_t channels, uint_t samplerate); |
---|
| 75 | |
---|
[93177fa] | 76 | /** set the output unit of the pitch detection object |
---|
| 77 | |
---|
[ca1abdd] | 78 | \param o pitch detection object as returned by new_aubio_pitch() |
---|
[93177fa] | 79 | \param mode set pitch units for output |
---|
| 80 | |
---|
| 81 | */ |
---|
[ca1abdd] | 82 | uint_t aubio_pitch_set_unit (aubio_pitch_t * o, |
---|
[93177fa] | 83 | char_t * mode); |
---|
[96fb8ad] | 84 | |
---|
| 85 | #ifdef __cplusplus |
---|
| 86 | } |
---|
| 87 | #endif |
---|
| 88 | |
---|
[ca1abdd] | 89 | #endif /*PITCH_H*/ |
---|