mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
Merge d124a1a17e into 0e43b31e50
This commit is contained in:
commit
accb9ea266
2 changed files with 8 additions and 5 deletions
|
|
@ -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();
|
||||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -230,8 +230,11 @@ public:
|
|||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue