Changes in / [20ae690:5f9df77]


Ignore:
Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/mathutils.c

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

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

    r20ae690 r5f9df77  
    117117void del_aubio_tss(aubio_tss_t *s)
    118118{
    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);
     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);
    124124  AUBIO_FREE(s);
    125125}
Note: See TracChangeset for help on using the changeset viewer.