Changeset e45345d for src


Ignore:
Timestamp:
Dec 7, 2018, 1:16:37 PM (5 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/timestretch, fix/ffmpeg5, master
Children:
6383ca4
Parents:
d91566e (diff), dd47431 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into feature/pydocstrings

Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/pitch/pitchspecacf.c

    rd91566e re45345d  
    9393  del_fvec (p->sqrmag);
    9494  del_fvec (p->fftout);
     95  del_fvec (p->acf);
    9596  AUBIO_FREE (p);
    9697}
  • src/spectral/awhitening.c

    rd91566e re45345d  
    4444{
    4545  uint_t i = 0;
    46   for (i = 0; i < o->peak_values->length; i++) {
     46  uint_t length = MIN(fftgrain->length, o->peak_values->length);
     47  for (i = 0; i < length; i++) {
    4748    smpl_t tmp = MAX(o->r_decay * o->peak_values->data[i], o->floor);
    4849    o->peak_values->data[i] = MAX(fftgrain->norm[i], tmp);
  • src/utils/hist.c

    rd91566e re45345d  
    4545  uint_t i;
    4646  if ((sint_t)nelems <= 0) {
     47    AUBIO_FREE(s);
    4748    return NULL;
    4849  }
Note: See TracChangeset for help on using the changeset viewer.