Ignore:
Timestamp:
Oct 15, 2009, 9:06:56 PM (15 years ago)
Author:
Paul Brossier <piem@piem.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:
28c162c
Parents:
e8ae95ac
Message:

src/pitch/pitchdetection.{c,h}: update documentation, return ints in set methods

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/pitch/pitchdetection.c

    re8ae95ac r93177fa  
    242242      break;
    243243  }
    244   return 0;
    245 }
    246 
    247 void aubio_pitchdetection_set_tolerance(aubio_pitchdetection_t *p, smpl_t tol) {
     244  return AUBIO_OK;
     245}
     246
     247uint_t aubio_pitchdetection_set_tolerance(aubio_pitchdetection_t *p, smpl_t tol) {
    248248  switch(p->type) {
    249249    case aubio_pitch_yin:
     
    256256      break;
    257257  }
     258  return AUBIO_OK;
    258259}
    259260
Note: See TracChangeset for help on using the changeset viewer.