cmMidiOsx.c : Added comment on a possible problem with the time stamp

computation in _cmMpMIDISystemReadProc().
Bu işleme şunda yer alıyor:
kevin 2013-12-10 16:33:43 -05:00
ebeveyn 4c44c396fd
işleme 40a9f35e18

Dosyayı Görüntüle

@ -513,6 +513,9 @@ void _cmMpMIDISystemReadProc( const MIDIPacketList *pktListPtr, void* readProcRe
// 1000 times that for microSeconds:
double microSecs = 1000.0f * nanoSeconds;
// BUG BUG BUG: How can multiplying the nanoseconds produce microseconds?
// Shouldn't the nano to micro conversion be a divide?
double deltaMicroSecs = microSecs - pp->prevMicroSecs;
pp->prevMicroSecs = microSecs;