Changeset 7f3ccc5e for src/pitchyinfft.c


Ignore:
Timestamp:
May 17, 2006, 8:16:59 PM (18 years ago)
Author:
Paul Brossier <piem@altern.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
78fa561
Parents:
ba11e53
Message:

update pitch method comments
update pitch method comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/pitchyinfft.c

    rba11e53 r7f3ccc5e  
    1616   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    1717*/
    18 
    19 /* This algorithm was developped by A. de Cheveigne and H. Kawahara and
    20  * published in:
    21  *
    22  * de Cheveigné, A., Kawahara, H. (2002) "YIN, a fundamental frequency
    23  * estimator for speech and music", J. Acoust. Soc. Am. 111, 1917-1930. 
    24  *
    25  * see http://recherche.ircam.fr/equipes/pcm/pub/people/cheveign.html
    26  *
    27  * This implementation is using an FFT to compute the square difference
    28  * function, which allows spectral weighting
    29  *
    30  */
    3118
    3219#include "aubio_priv.h"
     
    139126          /* 3 point quadratic interpolation */
    140127          //return vec_quadint_min(yin,tau,1);
    141           /* additional check nlikely octave doubling in higher frequencies */
     128          /* additional check for (unlikely) octave doubling in higher frequencies */
    142129          if (tau>35) {
    143130                  return vec_quadint_min(yin,tau,1)+1;
Note: See TracChangeset for help on using the changeset viewer.