Changeset b4f5967 for src/onset/onsetdetection.h
- Timestamp:
- Oct 15, 2009, 5:09:34 PM (15 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:
- cd77c15
- Parents:
- 27fa522
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/onset/onsetdetection.h
r27fa522 rb4f5967 39 39 #endif 40 40 41 /** onsetdetection types */42 typedef enum {43 aubio_onset_energy, /**< energy based */44 aubio_onset_specdiff, /**< spectral diff */45 aubio_onset_hfc, /**< high frequency content */46 aubio_onset_complex, /**< complex domain */47 aubio_onset_phase, /**< phase fast */48 aubio_onset_kl, /**< Kullback Liebler */49 aubio_onset_mkl, /**< modified Kullback Liebler */50 aubio_onset_specflux, /**< spectral flux */51 } aubio_onsetdetection_type;52 53 41 /** onsetdetection structure */ 54 42 typedef struct _aubio_onsetdetection_t aubio_onsetdetection_t; … … 70 58 71 59 */ 72 aubio_onsetdetection_t * new_aubio_onsetdetection( aubio_onsetdetection_type type, uint_tsize, uint_t channels);60 aubio_onsetdetection_t * new_aubio_onsetdetection(char_t * onset_mode, uint_t buf_size, uint_t channels); 73 61 /** deletion of an onset detection object 74 62
Note: See TracChangeset
for help on using the changeset viewer.