Changeset 1186c98
- Timestamp:
- Dec 11, 2016, 4:04:17 PM (8 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, sampler, yinfft+
- Children:
- ab7212f
- Parents:
- 90581a8
- Location:
- examples
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/aubionotes.c
r90581a8 r1186c98 73 73 74 74 // send a last note off 75 send_noteon (lastmidi, 0); 75 if (usejack) { 76 send_noteon (lastmidi, 0); 77 } 76 78 77 79 del_aubio_notes (notes); -
examples/aubioonset.c
r90581a8 r1186c98 85 85 86 86 // send a last note off 87 send_noteon (miditap_note, 0); 87 if (usejack) { 88 send_noteon (miditap_note, 0); 89 } 88 90 89 91 del_aubio_onset (o); -
examples/aubiotrack.c
r90581a8 r1186c98 89 89 90 90 // send a last note off 91 send_noteon (miditap_note, 0); 91 if (usejack) { 92 send_noteon (miditap_note, 0); 93 } 92 94 93 95 del_aubio_tempo(tempo);
Note: See TracChangeset
for help on using the changeset viewer.