Changeset 7f3ccc5e for src/pitchyinfft.c
- Timestamp:
- May 17, 2006, 8:16:59 PM (18 years ago)
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/pitchyinfft.c
rba11e53 r7f3ccc5e 16 16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 17 17 */ 18 19 /* This algorithm was developped by A. de Cheveigne and H. Kawahara and20 * published in:21 *22 * de Cheveigné, A., Kawahara, H. (2002) "YIN, a fundamental frequency23 * estimator for speech and music", J. Acoust. Soc. Am. 111, 1917-1930.24 *25 * see http://recherche.ircam.fr/equipes/pcm/pub/people/cheveign.html26 *27 * This implementation is using an FFT to compute the square difference28 * function, which allows spectral weighting29 *30 */31 18 32 19 #include "aubio_priv.h" … … 139 126 /* 3 point quadratic interpolation */ 140 127 //return vec_quadint_min(yin,tau,1); 141 /* additional check nlikelyoctave doubling in higher frequencies */128 /* additional check for (unlikely) octave doubling in higher frequencies */ 142 129 if (tau>35) { 143 130 return vec_quadint_min(yin,tau,1)+1;
Note: See TracChangeset
for help on using the changeset viewer.