Changeset 32669d9 for src


Ignore:
Timestamp:
Aug 9, 2005, 11:09:43 AM (19 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:
ea865c9
Parents:
b4b0324
Message:

removed obsoleted pickparams_t

Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/peakpick.c

    rb4b0324 r32669d9  
    114114
    115115/** function added by Miguel Ramirez to return the onset detection amplitude in peakval */
    116 uint_t aubio_peakpick_pimrt_wt(fvec_t * onset,  pickparams_t * p, smpl_t* peakval)
     116uint_t aubio_peakpick_pimrt_wt(fvec_t * onset,  aubio_pickpeak_t * p, smpl_t* peakval)
    117117{
    118118        fvec_t * onset_keep = (fvec_t *)p->onset_keep;
  • src/peakpick.h

    rb4b0324 r32669d9  
    3434typedef uint_t (*aubio_pickerfn_t)(fvec_t *input, uint_t pos);
    3535typedef struct _aubio_pickpeak_t aubio_pickpeak_t;
    36 /* alias for backward compatibility */
    37 typedef aubio_pickpeak_t pickparams_t;
    3836
    3937aubio_pickpeak_t * new_aubio_peakpicker(smpl_t threshold);
    4038uint_t aubio_peakpick_pimrt(fvec_t * DF, aubio_pickpeak_t * p);
    4139/** function added by Miguel Ramirez to return the onset detection amplitude in peakval */
    42 uint_t aubio_peakpick_pimrt_wt( fvec_t* DF, pickparams_t* p, smpl_t* peakval );
    43 //smpl_t aubio_peakpick_samerpp(fvec_t * DF, aubio_pickpeak_t * p);
     40uint_t aubio_peakpick_pimrt_wt( fvec_t* DF, aubio_pickpeak_t* p, smpl_t* peakval );
    4441void del_aubio_peakpicker(aubio_pickpeak_t * p);
    4542
Note: See TracChangeset for help on using the changeset viewer.