Home
last modified time | relevance | path

Searched refs:MIDI_STATUS_NOTE_OFF (Results 1 – 25 of 39) sorted by relevance

12

/dports/audio/carla/Carla-2.4.1/source/includes/
H A DCarlaMIDI.h30 #define MIDI_STATUS_NOTE_OFF 0x80 /* note (0-127), velocity (0-127) */ macro
39 #define MIDI_IS_CHANNEL_MESSAGE(status) ((status) >= MIDI_STATUS_NOTE_OFF && (status) < MIDI_STATU…
44 … (MIDI_IS_CHANNEL_MESSAGE(status) && ((status) & MIDI_STATUS_BIT) == MIDI_STATUS_NOTE_OFF)
/dports/audio/sdl_mixer/SDL_mixer-1.2.12/native_midi/
H A Dnative_midi_common.h28 #define MIDI_STATUS_NOTE_OFF 0x8
H A Dnative_midi_mac.c357 case MIDI_STATUS_NOTE_OFF:
400 if ((noteOffPos->status&0xF0)>>4 == MIDI_STATUS_NOTE_OFF
H A Dnative_midi_win32.c112 case MIDI_STATUS_NOTE_OFF: in MIDItoStream()
H A Dnative_midi_common.c179 case MIDI_STATUS_NOTE_OFF: in MIDITracktoStream()
/dports/audio/sdl2_mixer/SDL2_mixer-2.0.4/native_midi/
H A Dnative_midi_common.h28 #define MIDI_STATUS_NOTE_OFF 0x8 macro
H A Dnative_midi_mac.c362 case MIDI_STATUS_NOTE_OFF: in BuildTuneSequence()
405 if ((noteOffPos->status&0xF0)>>4 == MIDI_STATUS_NOTE_OFF in BuildTuneSequence()
H A Dnative_midi_win32.c112 case MIDI_STATUS_NOTE_OFF:
H A Dnative_midi_common.c177 case MIDI_STATUS_NOTE_OFF: in MIDITracktoStream()
/dports/games/exult/exult-snapshot-v1.7.0.20211128/audio/midi_drivers/
H A DXMidiEvent.h24 #define MIDI_STATUS_NOTE_OFF 0x8 macro
/dports/audio/carla/Carla-2.4.1/source/frontend/
H A Dmidipattern-ui234 self.send([msg, note_stop, 3, MIDI_STATUS_NOTE_OFF, note, vel])
241 self.send([msg, note_stop, 3, MIDI_STATUS_NOTE_OFF, note, vel])
307 elif status == MIDI_STATUS_NOTE_OFF:
/dports/games/dunelegacy/dunelegacy-0.96.4/include/FileClasses/xmidi/
H A Dxmidi.h39 #define MIDI_STATUS_NOTE_OFF 0x8 macro
/dports/audio/carla/Carla-2.4.1/source/backend/plugin/
H A DCarlaPluginSFZero.cpp510 …if ((status == MIDI_STATUS_NOTE_OFF || status == MIDI_STATUS_NOTE_ON) && (pData->options & PLUGIN_… in process()
523 status = MIDI_STATUS_NOTE_OFF; in process()
538 else if (status == MIDI_STATUS_NOTE_OFF) in process()
H A DCarlaPluginJack.cpp1041 …data1 = uint8_t((note.velo > 0 ? MIDI_STATUS_NOTE_ON : MIDI_STATUS_NOTE_OFF) | (note.channel & MID… in process()
1204 …if ((status == MIDI_STATUS_NOTE_OFF || status == MIDI_STATUS_NOTE_ON) && (pData->options & PLUGIN_… in process()
1217 status = MIDI_STATUS_NOTE_OFF; in process()
1235 else if (status == MIDI_STATUS_NOTE_OFF) in process()
H A DCarlaPluginJuce.cpp1031 …midiEvent[0] = uint8_t((note.velo > 0 ? MIDI_STATUS_NOTE_ON : MIDI_STATUS_NOTE_OFF) | (note.channe… in process()
1240 …if ((status == MIDI_STATUS_NOTE_OFF || status == MIDI_STATUS_NOTE_ON) && (pData->options & PLUGIN_… in process()
1253 status = MIDI_STATUS_NOTE_OFF; in process()
1266 else if (status == MIDI_STATUS_NOTE_OFF) in process()
/dports/net/wireshark-lite/wireshark-3.6.1/epan/dissectors/
H A Dpacket-osc.c80 MIDI_STATUS_NOTE_OFF = 0x8, enumerator
92 { MIDI_STATUS_NOTE_OFF, "Note Off" },
582 case MIDI_STATUS_NOTE_OFF: in dissect_osc_message()
646 case MIDI_STATUS_NOTE_OFF: in dissect_osc_message()
/dports/net/wireshark/wireshark-3.6.1/epan/dissectors/
H A Dpacket-osc.c80 MIDI_STATUS_NOTE_OFF = 0x8,
92 { MIDI_STATUS_NOTE_OFF, "Note Off" },
582 case MIDI_STATUS_NOTE_OFF:
646 case MIDI_STATUS_NOTE_OFF:
/dports/net/tshark-lite/wireshark-3.6.1/epan/dissectors/
H A Dpacket-osc.c80 MIDI_STATUS_NOTE_OFF = 0x8,
92 { MIDI_STATUS_NOTE_OFF, "Note Off" },
582 case MIDI_STATUS_NOTE_OFF:
646 case MIDI_STATUS_NOTE_OFF:
/dports/net/tshark/wireshark-3.6.1/epan/dissectors/
H A Dpacket-osc.c80 MIDI_STATUS_NOTE_OFF = 0x8, enumerator
92 { MIDI_STATUS_NOTE_OFF, "Note Off" },
582 case MIDI_STATUS_NOTE_OFF: in dissect_osc_message()
646 case MIDI_STATUS_NOTE_OFF: in dissect_osc_message()
/dports/audio/carla/Carla-2.4.1/source/native-plugins/
H A Dmidi-base.hpp121 noteOffEvent->data[0] = uint8_t(MIDI_STATUS_NOTE_OFF | (channel & MIDI_CHANNEL_BIT)); in addNoteOff()
181 rawEvent->data[0] = uint8_t(MIDI_STATUS_NOTE_OFF | (data[0] & MIDI_CHANNEL_BIT)); in addRaw()
H A Dmidi-pattern.cpp422 const uint8_t status = on ? MIDI_STATUS_NOTE_ON : MIDI_STATUS_NOTE_OFF; in msgReceived()
473 const uint8_t status = MIDI_STATUS_NOTE_OFF | (data[0] & MIDI_CHANNEL_BIT); in msgReceived()
H A Dmidi-transpose.c149 if (status == MIDI_STATUS_NOTE_OFF || status == MIDI_STATUS_NOTE_ON) in miditranspose_process()
H A Dmidi-gain.c189 …if (midiEvent->size == 3 && ((applyNotes && (status == MIDI_STATUS_NOTE_OFF || status == MIDI… in midigain_process()
H A Dxycontroller.cpp228 const uint8_t status = onOff ? MIDI_STATUS_NOTE_ON : MIDI_STATUS_NOTE_OFF; in msgReceived()
/dports/audio/wildmidi/wildmidi-wildmidi-0.4.2/src/
H A Dxmi2mid.c37 #define MIDI_STATUS_NOTE_OFF 0x8 macro
791 case MIDI_STATUS_NOTE_OFF: in ConvertFiletoList()

12