Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/pitch/pitchmcomb.h

    r69b11d8 r168337e  
    2424
    2525  This fundamental frequency estimation algorithm implements spectral
    26   flattening, multi-comb filtering and peak histogramming.
     26  flattening, multi-comb filtering and peak histogramming. 
    2727
    2828  This method was designed by Juan P. Bello and described in:
     
    3131  Music''.  PhD thesis, Centre for Digital Music, Queen Mary University of
    3232  London, London, UK, 2003.
    33 
    34   \example pitch/test-pitchmcomb.c
    3533
    3634*/
     
    4745
    4846/** execute pitch detection on an input spectral frame
    49 
     47 
    5048  \param p pitch detection object as returned by new_aubio_pitchmcomb
    51   \param in_fftgrain input signal spectrum as computed by aubio_pvoc_do
    52   \param out_cands pitch candidate frequenciess, in bins
    53 
     49  \param fftgrain input signal spectrum as computed by aubio_pvoc_do
     50 
    5451*/
    55 void aubio_pitchmcomb_do (aubio_pitchmcomb_t * p, cvec_t * in_fftgrain,
    56     fvec_t * out_cands);
     52void aubio_pitchmcomb_do (aubio_pitchmcomb_t * p, cvec_t * fftgrain,
     53    fvec_t * output);
    5754
    5855/** creation of the pitch detection object
    59 
    60   \param buf_size size of the input buffer to analyse
    61   \param hop_size step size between two consecutive analysis instant
    62 
     56 
     57  \param buf_size size of the input buffer to analyse
     58  \param hop_size step size between two consecutive analysis instant
     59  \param samplerate sampling rate of the signal
     60 
    6361*/
    6462aubio_pitchmcomb_t *new_aubio_pitchmcomb (uint_t buf_size, uint_t hop_size);
    6563
    6664/** deletion of the pitch detection object
    67 
     65 
    6866  \param p pitch detection object as returned by new_aubio_pitchfcomb
    69 
     67 
    7068*/
    7169void del_aubio_pitchmcomb (aubio_pitchmcomb_t * p);
     
    7573#endif
    7674
    77 #endif /* PITCHMCOMB_H */
     75#endif/*PITCHMCOMB_H*/
Note: See TracChangeset for help on using the changeset viewer.