|
private static byte runningStatus; |
Currently in this library any byte received above or equal to 128 becomes the new running status, however this is not matching the spec according to this page: http://midi.teragonaudio.com/tech/midispec/run.htm
I think it needs to be changed to:
- not change running status if the byte is RealTime Category (0xF8 to 0xFF)
- clear the running status if the byte is System Common (0xF0 to 0xF7)
- ignore data bytes if there is no running status
managed-midi/Commons.Music.Midi.Shared/SMF.cs
Line 312 in 98e269a
Currently in this library any byte received above or equal to 128 becomes the new running status, however this is not matching the spec according to this page: http://midi.teragonaudio.com/tech/midispec/run.htm
I think it needs to be changed to: