Ignore:
Timestamp:
Oct 2, 2009, 1:19:10 AM (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:
38e9732
Parents:
2f64b0e
Message:

src/mathutils.{c,h}: rename all vec_ to fvec_

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/pitch/pitchyinfft.c

    r2f64b0e r5c4ec3c  
    125125    //return tau;
    126126    /* 3 point quadratic interpolation */
    127     //return vec_quadint_min(yin,tau,1);
     127    //return fvec_quadint_min(yin,tau,1);
    128128    /* additional check for (unlikely) octave doubling in higher frequencies */
    129129    if (tau>35) {
    130       return vec_quadint(yin,tau,1);
     130      return fvec_quadint(yin,tau,1);
    131131    } else {
    132132      /* should compare the minimum value of each interpolated peaks */
    133133      halfperiod = FLOOR(tau/2+.5);
    134134      if (yin->data[0][halfperiod] < tol)
    135         return vec_quadint(yin,halfperiod,1);
     135        return fvec_quadint(yin,halfperiod,1);
    136136      else
    137         return vec_quadint(yin,tau,1);
     137        return fvec_quadint(yin,tau,1);
    138138    }
    139139  } else
Note: See TracChangeset for help on using the changeset viewer.