Changes in src/pitch/pitchfcomb.h [69b11d8:168337e]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/pitch/pitchfcomb.h
r69b11d8 r168337e 28 28 This file was derived from the tuneit project, written by Mario Lang to 29 29 detect the fundamental frequency of a sound. 30 31 See http://delysid.org/tuneit.html 32 33 \example pitch/test-pitchfcomb.c 30 31 see http://delysid.org/tuneit.html 34 32 35 33 */ … … 45 43 typedef struct _aubio_pitchfcomb_t aubio_pitchfcomb_t; 46 44 47 /** execute pitch detection on an input buffer 48 45 /** execute pitch detection on an input buffer 46 49 47 \param p pitch detection object as returned by new_aubio_pitchfcomb 50 \param input input signal window (length as specified at creation time) 48 \param input input signal window (length as specified at creation time) 51 49 \param output pitch candidates in bins 52 50 53 51 */ 54 52 void aubio_pitchfcomb_do (aubio_pitchfcomb_t * p, fvec_t * input, … … 56 54 57 55 /** creation of the pitch detection object 58 59 \param buf_size size of the input buffer to analyse 60 \param hop_size step size between two consecutive analysis instant 61 56 57 \param buf_size size of the input buffer to analyse 58 \param hop_size step size between two consecutive analysis instant 59 62 60 */ 63 61 aubio_pitchfcomb_t *new_aubio_pitchfcomb (uint_t buf_size, uint_t hop_size); 64 62 65 63 /** deletion of the pitch detection object 66 64 67 65 \param p pitch detection object as returned by new_aubio_pitchfcomb 68 66 69 67 */ 70 68 void del_aubio_pitchfcomb (aubio_pitchfcomb_t * p);
Note: See TracChangeset
for help on using the changeset viewer.