NO-OP: whitespace

This commit is contained in:
Robin Gareus 2023-06-27 18:54:42 +02:00
parent 651dcbc96e
commit bef4596dd1
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -30,18 +30,18 @@ static int _debug_mode = 0;
#endif
/**
/**
* MIDI Data flow
*
*
* (A) INPUT (incoming from outside the application)
*
*
* - midiInputCallback (in its own thread, async WRT process callback):
* takes OS X MIDIPacket, copies into lock-free ringbuffer
*
* - processCallback (in its own thread):
*
* (1) loop on all input ports:
* 1A) call recv_event() to read from ringbuffer into stack buffer, also assign-timestamp,
* 1A) call recv_event() to read from ringbuffer into stack buffer, also assign-timestamp,
* 1B) call parse_events() using stack buffer, when appropriate
* pushes CoreMidiEvent into std::vector<CoreMidiEvent>
*