Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/pitch/pitchschmitt.h

    r69b11d8 r3ac7cb0  
    1919*/
    2020
    21 /** \file
     21/** \file 
    2222
    23    Pitch detection using a Schmitt trigger
    24 
     23   Pitch detection using a Schmitt trigger 
     24 
    2525   This pitch extraction method implements a Schmitt trigger to estimate the
    2626   period of a signal.
     
    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-pitchschmitt.c
     30   
     31   see http://delysid.org/tuneit.html
    3432
    3533*/
     
    4543typedef struct _aubio_pitchschmitt_t aubio_pitchschmitt_t;
    4644
    47 /** execute pitch detection on an input buffer
    48 
    49   \param p pitch detection object as returned by new_aubio_pitchschmitt
    50   \param samples_in input signal vector (length as specified at creation time)
    51   \param cands_out pitch period estimates, in samples
    52 
     45/** execute pitch detection on an input buffer 
     46 
     47  \param p pitch detection object as returned by new_aubio_pitchschmitt 
     48  \param input input signal window (length as specified at creation time)
     49  \param output pitch period estimates, in samples
     50 
    5351*/
    54 void aubio_pitchschmitt_do (aubio_pitchschmitt_t * p, fvec_t * samples_in,
    55     fvec_t * cands_out);
     52void aubio_pitchschmitt_do (aubio_pitchschmitt_t * p, fvec_t * in,
     53    fvec_t * out);
    5654
    5755/** creation of the pitch detection object
    58 
    59   \param buf_size size of the input buffer to analyse
    60 
     56 
     57  \param buf_size size of the input buffer to analyse 
     58 
    6159*/
    6260aubio_pitchschmitt_t *new_aubio_pitchschmitt (uint_t buf_size);
    6361
    6462/** deletion of the pitch detection object
    65 
    66   \param p pitch detection object as returned by new_aubio_pitchschmitt
    67 
     63 
     64  \param p pitch detection object as returned by new_aubio_pitchschmitt 
     65 
    6866*/
    6967void del_aubio_pitchschmitt (aubio_pitchschmitt_t * p);
Note: See TracChangeset for help on using the changeset viewer.