Changeset 2a00568


Ignore:
Timestamp:
Nov 21, 2007, 11:26:57 AM (16 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:
ec2fa2a
Parents:
15b97d9
Message:

aubio.i: add del_aubio_onsetdetection, aubioclass.py: replace _free with del_aubio_onsetdetection

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/aubio/aubioclass.py

    r15b97d9 r2a00568  
    7474        aubio_onsetdetection(self.od,tc(),tf())
    7575    def __del__(self):
    76         aubio_onsetdetection_free(self.od)
     76        del_aubio_onsetdetection(self.od)
    7777
    7878class peakpick:
  • swig/aubio.i

    r15b97d9 r2a00568  
    178178aubio_onsetdetection_t * new_aubio_onsetdetection(aubio_onsetdetection_type type, uint_t size, uint_t channels);
    179179void aubio_onsetdetection(aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset);
     180void del_aubio_onsetdetection(aubio_onsetdetection_t *o);
    180181
    181182/* should these still be exposed ? */
Note: See TracChangeset for help on using the changeset viewer.