Changeset acf7d30 for src/utils


Ignore:
Timestamp:
Oct 2, 2009, 2:10:25 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:
1498ced
Parents:
c0b295c
Message:

src/mathutils.c and co: use 0.0, not 0.0f

Location:
src/utils
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/utils/hist.c

    rc0b295c racf7d30  
    149149smpl_t aubio_hist_mean (aubio_hist_t *s) {
    150150  uint_t i,j;
    151   smpl_t tmp = 0.0f;
     151  smpl_t tmp = 0.0;
    152152  for (i=0; i < s->channels; i++)
    153153    for (j=0; j < s->nelems; j++)
  • src/utils/scale.c

    rc0b295c racf7d30  
    5757  s->ohig = ohig;
    5858  if (inputrange == 0) {
    59     s->scaler = 0.0f;
     59    s->scaler = 0.0;
    6060  } else {
    6161    s->scaler = outputrange/inputrange;
Note: See TracChangeset for help on using the changeset viewer.