Changeset 8766cb6 for swig/aubio.i


Ignore:
Timestamp:
Oct 7, 2009, 8:31:43 PM (15 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:
a808d05
Parents:
cfa0f12
Message:

src/onset/peakpick.c: rename aubio_pickpeak_t to aubio_peakpicker_t

File:
1 edited

Legend:

Unmodified
Added
Removed
  • swig/aubio.i

    rcfa0f12 r8766cb6  
    163163/* filterbank */
    164164aubio_filterbank_t * new_aubio_filterbank(uint_t win_s, uint_t channels);
    165 void aubio_filterbank_set_mel_coeffs(aubio_filterbank_t *fb, uint_t samplerate, fvec_t *freqs);
     165void aubio_filterbank_set_triangle_bands (aubio_filterbank_t *fb, uint_t samplerate, fvec_t *freqs);
    166166void aubio_filterbank_set_mel_coeffs_slaney(aubio_filterbank_t *fb, uint_t samplerate);
    167167void del_aubio_filterbank(aubio_filterbank_t * fb);
     
    270270
    271271/* peakpicker */
    272 aubio_pickpeak_t * new_aubio_peakpicker(smpl_t threshold);
    273 smpl_t aubio_peakpicker_do(aubio_pickpeak_t * p, fvec_t * df);
    274 smpl_t aubio_peakpicker_get_thresholded_input(aubio_pickpeak_t* p);
    275 void del_aubio_peakpicker(aubio_pickpeak_t * p);
    276 void aubio_peakpicker_set_threshold(aubio_pickpeak_t * p, smpl_t threshold);
    277 smpl_t aubio_peakpicker_get_threshold(aubio_pickpeak_t * p);
     272aubio_peakpicker_t * new_aubio_peakpicker(smpl_t threshold);
     273smpl_t aubio_peakpicker_do(aubio_peakpicker_t * p, fvec_t * df);
     274smpl_t aubio_peakpicker_get_thresholded_input(aubio_peakpicker_t* p);
     275void del_aubio_peakpicker(aubio_peakpicker_t * p);
     276void aubio_peakpicker_set_threshold(aubio_peakpicker_t * p, smpl_t threshold);
     277smpl_t aubio_peakpicker_get_threshold(aubio_peakpicker_t * p);
    278278
    279279/* transient/steady state separation */
Note: See TracChangeset for help on using the changeset viewer.