Changes in src/onset/onset.c [763a7f1:65c352e]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/onset/onset.c
r763a7f1 r65c352e 24 24 #include "spectral/specdesc.h" 25 25 #include "spectral/phasevoc.h" 26 #include "spectral/awhitening.h" 26 27 #include "onset/peakpicker.h" 27 28 #include "mathutils.h" 28 29 #include "onset/onset.h" 30 31 void aubio_onset_default_parameters (aubio_onset_t *o, char_t * method); 29 32 30 33 /** structure to store object state */ … … 43 46 uint_t total_frames; /**< total number of frames processed since the beginning */ 44 47 uint_t last_onset; /**< last detected onset location, in frames */ 48 49 uint_t apply_adaptive_whitening; 50 aubio_spectral_whitening_t *spectral_whitening; 45 51 }; 46 52 … … 50 56 smpl_t isonset = 0; 51 57 aubio_pvoc_do (o->pv,input, o->fftgrain); 58 /* 59 if (apply_filtering) { 60 } 61 if (apply_compression) { 62 } 63 */ 64 if (o->apply_adaptive_whitening) { 65 aubio_spectral_whitening_do(o->spectral_whitening, o->fftgrain); 66 } 52 67 aubio_specdesc_do (o->od, o->fftgrain, o->desc); 53 68 aubio_peakpicker_do(o->pp, o->desc, onset); … … 100 115 } 101 116 117 uint_t aubio_onset_set_adaptive_whitening (aubio_onset_t *o, uint_t apply_adaptive_whitening) 118 { 119 o->apply_adaptive_whitening = apply_adaptive_whitening; 120 return AUBIO_OK; 121 } 122 123 uint_t aubio_onset_get_adaptive_whitening (aubio_onset_t *o) 124 { 125 return o->apply_adaptive_whitening; 126 } 127 102 128 uint_t aubio_onset_set_silence(aubio_onset_t * o, smpl_t silence) { 103 129 o->silence = silence; … … 209 235 o->desc = new_fvec(1); 210 236 211 /* set some default parameter */ 212 aubio_onset_set_threshold (o, 0.3); 213 aubio_onset_set_delay(o, 4.3 * hop_size); 214 aubio_onset_set_minioi_ms(o, 20.); 215 aubio_onset_set_silence(o, -70.); 237 o->spectral_whitening = new_aubio_spectral_whitening(buf_size, hop_size, samplerate); 238 239 aubio_onset_default_parameters (o, onset_mode); 216 240 217 241 /* initialize internal variables */ … … 225 249 } 226 250 251 void aubio_onset_default_parameters (aubio_onset_t * o, char_t * onset_mode) 252 { 253 /* set some default parameter */ 254 aubio_onset_set_threshold (o, 0.3); 255 aubio_onset_set_delay (o, 4.3 * o->hop_size); 256 aubio_onset_set_minioi_ms (o, 50.); 257 aubio_onset_set_silence (o, -70.); 258 aubio_onset_set_adaptive_whitening (o, 1); 259 260 /* method specific optimisations */ 261 if (strcmp (onset_mode, "energy") == 0) { 262 } else if (strcmp (onset_mode, "hfc") == 0) { 263 aubio_onset_set_adaptive_whitening (o, 0); 264 } else if (strcmp (onset_mode, "complexdomain") == 0 265 || strcmp (onset_mode, "complex") == 0) { 266 aubio_onset_set_delay (o, 4.6 * o->hop_size); 267 aubio_onset_set_threshold (o, 0.15); 268 } else if (strcmp (onset_mode, "phase") == 0) { 269 aubio_onset_set_adaptive_whitening (o, 0); 270 } else if (strcmp (onset_mode, "mkl") == 0) { 271 aubio_onset_set_threshold (o, 0.05); 272 } else if (strcmp (onset_mode, "kl") == 0) { 273 aubio_onset_set_threshold (o, 0.35); 274 } else if (strcmp (onset_mode, "specflux") == 0) { 275 aubio_onset_set_threshold (o, 0.4); 276 } else if (strcmp (onset_mode, "specdiff") == 0) { 277 } else if (strcmp (onset_mode, "default") == 0) { 278 } else { 279 AUBIO_ERR ("onset: unknown spectral descriptor type %s, " 280 "using default parameters.\n", onset_mode); 281 } 282 } 283 227 284 void del_aubio_onset (aubio_onset_t *o) 228 285 { 286 del_aubio_spectral_whitening(o->spectral_whitening); 229 287 del_aubio_specdesc(o->od); 230 288 del_aubio_peakpicker(o->pp);
Note: See TracChangeset
for help on using the changeset viewer.