Changeset e9d8cfe


Ignore:
Timestamp:
Jul 12, 2006, 6:43:08 PM (18 years ago)
Author:
Paul Brossier <piem@altern.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:
c84300e
Parents:
637a3ce
Message:

add del_aubio_onsetdetection, aubio_onsetdetection_free is obsolete
add del_aubio_onsetdetection, aubio_onsetdetection_free is obsolete

Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/onsetdetection.c

    r637a3ce re9d8cfe  
    278278
    279279void aubio_onsetdetection_free (aubio_onsetdetection_t *o){
     280  del_aubio_onsetdetection(o);
     281}
     282
     283void del_aubio_onsetdetection (aubio_onsetdetection_t *o){
    280284
    281285        switch(o->type) {
  • src/onsetdetection.h

    r637a3ce re9d8cfe  
    163163
    164164*/
     165void del_aubio_onsetdetection(aubio_onsetdetection_t *o);
     166/** deletion of an onset detection object (obsolete)
     167
     168  \param o onset detection object as returned by new_aubio_pitchfcomb
     169
     170*/
    165171void aubio_onsetdetection_free(aubio_onsetdetection_t *o);
     172
    166173
    167174#ifdef __cplusplus
Note: See TracChangeset for help on using the changeset viewer.