Home
last modified time | relevance | path

Searched refs:MIDI_STATUS_PROGRAM_CHANGE (Results 1 – 15 of 15) sorted by relevance

/dports/audio/carla/Carla-2.4.1/source/includes/
H A DCarlaMIDI.h34 #define MIDI_STATUS_PROGRAM_CHANGE 0xC0 /* program (0-127), none */ macro
48 … (MIDI_IS_CHANNEL_MESSAGE(status) && ((status) & MIDI_STATUS_BIT) == MIDI_STATUS_PROGRAM_CHANGE)
/dports/audio/carla/Carla-2.4.1/source/tests.old/
H A DEngineEvents.cpp103 assert(data[0] == MIDI_STATUS_PROGRAM_CHANGE); in testControlEventDump()
239 data[0] = MIDI_STATUS_PROGRAM_CHANGE; in testEventMidiFill()
/dports/audio/carla/Carla-2.4.1/source/backend/engine/
H A DCarlaEngineData.cpp64 data[0] = static_cast<uint8_t>(MIDI_STATUS_PROGRAM_CHANGE | (channel & MIDI_CHANNEL_BIT)); in convertToMidiData()
150 else if (midiStatus == MIDI_STATUS_PROGRAM_CHANGE) in fillFromMidiData()
H A DCarlaEnginePorts.cpp302 if (status == MIDI_STATUS_PROGRAM_CHANGE) in writeMidiEvent()
/dports/net/wireshark-lite/wireshark-3.6.1/epan/dissectors/
H A Dpacket-osc.c84 MIDI_STATUS_PROGRAM_CHANGE = 0xC, enumerator
96 { MIDI_STATUS_PROGRAM_CHANGE, "Program Change" },
/dports/net/wireshark/wireshark-3.6.1/epan/dissectors/
H A Dpacket-osc.c84 MIDI_STATUS_PROGRAM_CHANGE = 0xC,
96 { MIDI_STATUS_PROGRAM_CHANGE, "Program Change" },
/dports/net/tshark-lite/wireshark-3.6.1/epan/dissectors/
H A Dpacket-osc.c84 MIDI_STATUS_PROGRAM_CHANGE = 0xC,
96 { MIDI_STATUS_PROGRAM_CHANGE, "Program Change" },
/dports/net/tshark/wireshark-3.6.1/epan/dissectors/
H A Dpacket-osc.c84 MIDI_STATUS_PROGRAM_CHANGE = 0xC, enumerator
96 { MIDI_STATUS_PROGRAM_CHANGE, "Program Change" },
/dports/audio/carla/Carla-2.4.1/source/native-plugins/
H A Dmidi-base.hpp152 programEvent->data[0] = uint8_t(MIDI_STATUS_PROGRAM_CHANGE | (channel & MIDI_CHANNEL_BIT)); in addProgram()
/dports/audio/carla/Carla-2.4.1/source/frontend/widgets/
H A Dpianoroll.py50 MIDI_STATUS_PROGRAM_CHANGE = 0xC0 # program (0-127), none variable
64 …return MIDI_IS_CHANNEL_MESSAGE(status) and (status & MIDI_STATUS_BIT) == MIDI_STATUS_PROGRAM_CHANGE
/dports/audio/carla/Carla-2.4.1/source/libjack/
H A Dlibjack.cpp689 … ev.buffer[0] = jack_midi_data_t(MIDI_STATUS_PROGRAM_CHANGE | (channel & MIDI_CHANNEL_BIT)); in handleRtData()
/dports/audio/carla/Carla-2.4.1/source/backend/plugin/
H A DCarlaPluginJuce.cpp1192 … midiData[0] = uint8_t(MIDI_STATUS_PROGRAM_CHANGE | (event.channel & MIDI_CHANNEL_BIT)); in process()
H A DCarlaPluginVST2.cpp1560 … vstMidiEvent.midiData[0] = char(MIDI_STATUS_PROGRAM_CHANGE | (event.channel & MIDI_CHANNEL_BIT)); in process()
H A DCarlaPluginNative.cpp2130 … nativeEvent.data[0] = uint8_t(MIDI_STATUS_PROGRAM_CHANGE | (event.channel & MIDI_CHANNEL_BIT)); in process()
H A DCarlaPluginLV2.cpp4117 … midiData[0] = uint8_t(MIDI_STATUS_PROGRAM_CHANGE | (event.channel & MIDI_CHANNEL_BIT)); in process()