Changes in src/notes/notes.c [4724f60:c5ee130]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/notes/notes.c
r4724f60 rc5ee130 84 84 85 85 o->onset = new_aubio_onset (onset_method, o->onset_buf_size, o->hop_size, o->samplerate); 86 if (o->onset == NULL) goto fail; 86 87 if (o->onset_threshold != 0.) aubio_onset_set_threshold (o->onset, o->onset_threshold); 87 88 o->onset_output = new_fvec (1); … … 99 100 o->note_buffer = new_fvec(o->median); 100 101 o->note_buffer2 = new_fvec(o->median); 102 103 if (!o->onset_output || !o->pitch_output || 104 !o->note_buffer || !o->note_buffer2) goto fail; 101 105 102 106 o->curnote = -1.;
Note: See TracChangeset
for help on using the changeset viewer.