Changeset 20ae690


Ignore:
Timestamp:
May 2, 2011, 12:38:00 PM (13 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:
46378b3
Parents:
5f9df77 (diff), c37aee1 (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 aubio.org:/git/aubio/aubio

Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/mathutils.c

    r5f9df77 r20ae690  
    7373      AUBIO_ERR ("unknown window type %s, using default.\n", window_type);
    7474      wintype = aubio_win_default;
    75       return NULL;
    7675  }
    7776  switch(wintype) {
  • src/pitch/pitchschmitt.c

    r5f9df77 r20ae690  
    115115{
    116116  AUBIO_FREE (p->schmittBuffer);
     117  AUBIO_FREE (p->buf);
    117118  AUBIO_FREE (p);
    118119}
  • src/spectral/tss.c

    r5f9df77 r20ae690  
    117117void del_aubio_tss(aubio_tss_t *s)
    118118{
    119   AUBIO_FREE(s->theta1);
    120   AUBIO_FREE(s->theta2);
    121   AUBIO_FREE(s->oft1);
    122   AUBIO_FREE(s->oft2);
    123   AUBIO_FREE(s->dev);
     119  del_fvec(s->theta1);
     120  del_fvec(s->theta2);
     121  del_fvec(s->oft1);
     122  del_fvec(s->oft2);
     123  del_fvec(s->dev);
    124124  AUBIO_FREE(s);
    125125}
Note: See TracChangeset for help on using the changeset viewer.