Ignore:
Timestamp:
Aug 9, 2005, 12:09:36 PM (19 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:
5e9c68a
Parents:
ea865c9
Message:

prefix mathutils function with aubio_

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/pitchdetection.c

    rea865c9 r28d8c4a  
    139139        aubio_pvoc_do(p->pv,ibuf,p->fftgrain);
    140140        pitch = aubio_pitchmcomb_detect(p->mcomb,p->fftgrain);
    141         /** \bug should move the >0 check within bintofreq */
     141        /** \bug should move the >0 check within aubio_bintofreq */
    142142        if (pitch>0.) {
    143                 pitch = bintofreq(pitch,p->srate,p->bufsize);
     143                pitch = aubio_bintofreq(pitch,p->srate,p->bufsize);
    144144        } else {
    145145                pitch = 0.;
Note: See TracChangeset for help on using the changeset viewer.