Browse Source

Improved some MidiBuffer comments

tags/2021-05-28
jules 10 years ago
parent
commit
7a8c90e253
1 changed files with 6 additions and 4 deletions
  1. +6
    -4
      modules/juce_audio_basics/midi/juce_MidiBuffer.h

+ 6
- 4
modules/juce_audio_basics/midi/juce_MidiBuffer.h View File

@@ -186,9 +186,10 @@ public:
/** Retrieves a copy of the next event from the buffer.
@param result on return, this will be the message (the MidiMessage's timestamp
is not set)
@param samplePosition on return, this will be the position of the event
@param result on return, this will be the message. The MidiMessage's timestamp
is set to the same value as samplePosition.
@param samplePosition on return, this will be the position of the event, as a
sample index in the buffer
@returns true if an event was found, or false if the iterator has reached
the end of the buffer
*/
@@ -203,7 +204,8 @@ public:
temporarily until the MidiBuffer is altered.
@param numBytesOfMidiData on return, this is the number of bytes of data used by the
midi message
@param samplePosition on return, this will be the position of the event
@param samplePosition on return, this will be the position of the event, as a
sample index in the buffer
@returns true if an event was found, or false if the iterator has reached
the end of the buffer
*/


Loading…
Cancel
Save