Skip to content

Commit

Permalink
Update MidiMessageSequence::updateMatchedPairs to deal with note-on m…
Browse files Browse the repository at this point in the history
…essages with velocity 0
  • Loading branch information
FangCunWuChang committed Nov 7, 2024
1 parent 5179f4e commit d124a1a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
8 changes: 4 additions & 4 deletions modules/juce_audio_basics/midi/juce_MidiMessageSequence.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,14 +235,14 @@ void MidiMessageSequence::sort() noexcept
[] (const MidiEventHolder* a, const MidiEventHolder* b) { return a->message.getTimeStamp() < b->message.getTimeStamp(); });
}

void MidiMessageSequence::updateMatchedPairs() noexcept
void MidiMessageSequence::updateMatchedPairs(bool regardNoteOnEventsWithVel0AsNoteOff) noexcept
{
for (int i = 0; i < list.size(); ++i)
{
auto* meh = list.getUnchecked (i);
auto& m1 = meh->message;

if (m1.isNoteOn())
if (m1.isNoteOn(!regardNoteOnEventsWithVel0AsNoteOff))
{
meh->noteOffObject = nullptr;
auto note = m1.getNoteNumber();
Expand All @@ -256,13 +256,13 @@ void MidiMessageSequence::updateMatchedPairs() noexcept

if (m.getNoteNumber() == note && m.getChannel() == chan)
{
if (m.isNoteOff())
if (m.isNoteOff(regardNoteOnEventsWithVel0AsNoteOff))
{
meh->noteOffObject = meh2;
break;
}

if (m.isNoteOn())
if (m.isNoteOn(!regardNoteOnEventsWithVel0AsNoteOff))
{
auto newEvent = new MidiEventHolder (MidiMessage::noteOff (chan, note));
list.insert (j, newEvent);
Expand Down
5 changes: 4 additions & 1 deletion modules/juce_audio_basics/midi/juce_MidiMessageSequence.h
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,11 @@ class JUCE_API MidiMessageSequence
Call this after re-ordering messages or deleting/adding messages, and it
will scan the list and make sure all the note-offs in the MidiEventHolder
structures are pointing at the correct ones.
@param regardNoteOnEventWithVel0AsNoteOff if true, note-on events with velocity 0
will be regarded as note-off
*/
void updateMatchedPairs() noexcept;
void updateMatchedPairs(bool regardNoteOnEventsWithVel0AsNoteOff = true) noexcept;

/** Forces a sort of the sequence.
You may need to call this if you've manually modified the timestamps of some
Expand Down

0 comments on commit d124a1a

Please sign in to comment.