| 91 | } |
| 92 | |
| 93 | double MidiFileWriter::_BPMToMicrosecondsPerQuarterNote(double inTempoBPM) |
| 94 | { |
| 95 | // Beats per second |
| 96 | double bps = inTempoBPM / 60.0; |
| 97 | // Seconds per beat |
| 98 | double spb = 1 / bps; |
| 99 | // Microseconds per beat |
| 100 | return 1.0e6 * spb; |
| 101 | } |
nothing calls this directly
no outgoing calls
no test coverage detected