annotate implementations/midi/package.lisp @ 195:f0e742e8de06

The MTP implementation of AMUSE:MONODY now uses the voice of the first event in the piece. darcs-hash:20090723085710-c0ce4-0324442e9897c7a903fa20cfd16d18f880718439.gz
author Marcus Pearce <m.pearce@gold.ac.uk>
date Thu, 23 Jul 2009 09:57:10 +0100
parents fc6848dda767
children 619194befdd4
rev   line source
m@25 1 (cl:defpackage #:amuse-midi
d@64 2 (:use #:common-lisp #:amuse #:amuse-utils #:amuse-tools)
d@33 3 (:export #:midi-composition
d@134 4 #:midifile-id
d@33 5 #:midi-pitched-event
m@31 6 #:midi-percussive-event
m@31 7 #:make-midi-pitched-event
m@25 8 #:make-midi-percussive-event
m@144 9 #:make-midifile-identifier
d@32 10 #:midi-channel
d@32 11 #:midi-track
d@32 12 #:midi-velocity
d@33 13 #:midi-patch
d@33 14 #:midi-drum-sound
d@33 15 #:microsecond-per-crotchet-to-bpm
d@155 16 #:midi-patch
d@33 17 ))