Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/pitch/pitchfcomb.h

    r69b11d8 r168337e  
    2828   This file was derived from the tuneit project, written by Mario Lang to
    2929   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
    3432
    3533*/
     
    4543typedef struct _aubio_pitchfcomb_t aubio_pitchfcomb_t;
    4644
    47 /** execute pitch detection on an input buffer
    48 
     45/** execute pitch detection on an input buffer 
     46 
    4947  \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) 
    5149  \param output pitch candidates in bins
    52 
     50 
    5351*/
    5452void aubio_pitchfcomb_do (aubio_pitchfcomb_t * p, fvec_t * input,
     
    5654
    5755/** 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 
    6260*/
    6361aubio_pitchfcomb_t *new_aubio_pitchfcomb (uint_t buf_size, uint_t hop_size);
    6462
    6563/** deletion of the pitch detection object
    66 
     64 
    6765  \param p pitch detection object as returned by new_aubio_pitchfcomb
    68 
     66 
    6967*/
    7068void del_aubio_pitchfcomb (aubio_pitchfcomb_t * p);
Note: See TracChangeset for help on using the changeset viewer.