OpenShot Audio Library | OpenShotAudio 0.3.2
|
#include <juce_MidiMessageCollector.h>
Public Member Functions | |
MidiMessageCollector () | |
~MidiMessageCollector () override | |
void | reset (double sampleRate) |
void | addMessageToQueue (const MidiMessage &message) |
void | removeNextBlockOfMessages (MidiBuffer &destBuffer, int numSamples) |
void | handleNoteOn (MidiKeyboardState *, int midiChannel, int midiNoteNumber, float velocity) override |
void | handleNoteOff (MidiKeyboardState *, int midiChannel, int midiNoteNumber, float velocity) override |
void | handleIncomingMidiMessage (MidiInput *, const MidiMessage &) override |
![]() | |
virtual | ~MidiInputCallback ()=default |
virtual void | handlePartialSysexMessage (MidiInput *source, const uint8 *messageData, int numBytesSoFar, double timestamp) |
Collects incoming realtime MIDI messages and turns them into blocks suitable for processing by a block-based audio callback.
The class can also be used as either a MidiKeyboardStateListener or a MidiInputCallback so it can easily use a midi input or keyboard component as its source.
Definition at line 38 of file juce_MidiMessageCollector.h.
juce::MidiMessageCollector::MidiMessageCollector | ( | ) |
Creates a MidiMessageCollector.
Definition at line 26 of file juce_MidiMessageCollector.cpp.
|
override |
Destructor.
Definition at line 30 of file juce_MidiMessageCollector.cpp.
void juce::MidiMessageCollector::addMessageToQueue | ( | const MidiMessage & | message | ) |
Takes an incoming real-time message and adds it to the queue.
The message's timestamp is taken, and it will be ready for retrieval as part of the block returned by the next call to removeNextBlockOfMessages().
This method is fully thread-safe when overlapping calls are made with removeNextBlockOfMessages().
Definition at line 49 of file juce_MidiMessageCollector.cpp.
Referenced by handleIncomingMidiMessage(), handleNoteOff(), and handleNoteOn().
|
overridevirtual |
Implements juce::MidiInputCallback.
Definition at line 155 of file juce_MidiMessageCollector.cpp.
|
overridevirtual |
Implements juce::MidiKeyboardStateListener.
Definition at line 147 of file juce_MidiMessageCollector.cpp.
|
overridevirtual |
Implements juce::MidiKeyboardStateListener.
Definition at line 139 of file juce_MidiMessageCollector.cpp.
void juce::MidiMessageCollector::removeNextBlockOfMessages | ( | MidiBuffer & | destBuffer, |
int | numSamples | ||
) |
Removes all the pending messages from the queue as a buffer.
This will also correct the messages' timestamps to make sure they're in the range 0 to numSamples - 1.
This call should be made regularly by something like an audio processing callback, because the time that it happens is used in calculating the midi event positions.
This method is fully thread-safe when overlapping calls are made with addMessageToQueue().
Precondition: numSamples must be greater than 0.
Definition at line 71 of file juce_MidiMessageCollector.cpp.
Clears any messages from the queue.
You need to call this method before starting to use the collector, so that it knows the correct sample rate to use.
Definition at line 35 of file juce_MidiMessageCollector.cpp.