Changeset 32669d9
- Timestamp:
- Aug 9, 2005, 11:09:43 AM (20 years ago)
- 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
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/peakpick.c
rb4b0324 r32669d9 114 114 115 115 /** 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)116 uint_t aubio_peakpick_pimrt_wt(fvec_t * onset, aubio_pickpeak_t * p, smpl_t* peakval) 117 117 { 118 118 fvec_t * onset_keep = (fvec_t *)p->onset_keep; -
src/peakpick.h
rb4b0324 r32669d9 34 34 typedef uint_t (*aubio_pickerfn_t)(fvec_t *input, uint_t pos); 35 35 typedef struct _aubio_pickpeak_t aubio_pickpeak_t; 36 /* alias for backward compatibility */37 typedef aubio_pickpeak_t pickparams_t;38 36 39 37 aubio_pickpeak_t * new_aubio_peakpicker(smpl_t threshold); 40 38 uint_t aubio_peakpick_pimrt(fvec_t * DF, aubio_pickpeak_t * p); 41 39 /** 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); 40 uint_t aubio_peakpick_pimrt_wt( fvec_t* DF, aubio_pickpeak_t* p, smpl_t* peakval ); 44 41 void del_aubio_peakpicker(aubio_pickpeak_t * p); 45 42
Note: See TracChangeset
for help on using the changeset viewer.