Changeset 7f3ccc5e for src/pitchmcomb.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/pitchmcomb.c

    rba11e53 r7f3ccc5e  
    161161  vec_alpha_normalise(mag,p->alpha); /* alpha normalisation  */
    162162  /* skipped */                      /* low pass filtering   */
    163   /** \bug: vec_movind_thres writes out of bounds */
     163  /** \bug vec_moving_thres may write out of bounds */
    164164  vec_adapt_thres(mag,tmp,p->win_post,p->win_pre); /* adaptative threshold */
    165165  vec_add(mag,-p->threshold);        /* fixed threshold      */
     
    325325aubio_pitchmcomb_t * new_aubio_pitchmcomb(uint_t bufsize, uint_t hopsize, uint_t channels, uint_t samplerate) {
    326326  aubio_pitchmcomb_t * p = AUBIO_NEW(aubio_pitchmcomb_t);
    327   /** \bug should check if size / 8 > post+pre+1 */
     327  /* bug: should check if size / 8 > post+pre+1 */
    328328  uint_t i;
    329329  uint_t spec_size;
Note: See TracChangeset for help on using the changeset viewer.