Home
last modified time | relevance | path

Searched refs:synthUnit (Results 1 – 4 of 4) sorted by relevance

/dports/audio/tuxguitar/tuxguitar-src-1.2/TuxGuitar-CoreAudio/jni/
H A Dorg_herac_tuxguitar_player_impl_midiport_coreaudio_MidiReceiverJNI.cpp77 AudioUnit synthUnit; variable
87 require_noerr (result = CreateAUGraph (graph, synthUnit), home); in init()
94 require_noerr (result = MusicDeviceMIDIEvent(synthUnit, in init()
99 require_noerr (result = MusicDeviceMIDIEvent(synthUnit, in init()
123 require_noerr (result = MusicDeviceMIDIEvent(synthUnit, progamChange, instrument, 0, 0), home); in programChange()
141 …require_noerr (result = MusicDeviceMIDIEvent(synthUnit, controlChange, controller, value, 0), home… in controlChange()
152 require_noerr (result = MusicDeviceMIDIEvent(synthUnit, pitchChange, 0, value, 0), home); in pitchBend()
163 require_noerr (result = MusicDeviceMIDIEvent(synthUnit, noteOnCommand, pitchID, volume, 0), home); in noteOn()
177 require_noerr (result = MusicDeviceMIDIEvent(synthUnit, noteOffCommand, pitchID, 0, 0), home); in noteOff()
/dports/audio/tuxguitar/tuxguitar-src-1.2/TuxGuitar-AudioUnit/jni/
H A Dorg_herac_tuxguitar_player_impl_midiport_audiounit_MidiReceiverJNI.cpp35 AudioUnit synthUnit; member in MidiPlayer
85 require_noerr (result = this->createAUGraph (graph, synthUnit), ctor_home); in MidiPlayer()
95 require_noerr (result = AudioUnitSetProperty (synthUnit, in MidiPlayer()
137 …require_noerr (result = MusicDeviceMIDIEvent(synthUnit, noteOnCommand, noteNum, onVelocity, 0), ho… in noteOn()
150 …require_noerr (result = MusicDeviceMIDIEvent(synthUnit, noteOffCommand, noteNum, 0, 0), home_note_… in noteOff()
162 require_noerr (result = MusicDeviceMIDIEvent(synthUnit, in programChange()
175 require_noerr (result = MusicDeviceMIDIEvent(synthUnit, in setBank()
188 require_noerr (result = MusicDeviceMIDIEvent(synthUnit, in controlEvent()
201 require_noerr (result = MusicDeviceMIDIEvent(synthUnit, in pitchBend()
/dports/multimedia/vlc/vlc-3.0.16/modules/codec/
H A Daudiotoolbox_midi.c71 AudioUnit synthUnit; member
166 static int SetSoundfont(decoder_t *p_dec, AudioUnit synthUnit, const char *sfPath) { in SetSoundfont() argument
179 OSStatus status = AudioUnitSetProperty(synthUnit, in SetSoundfont()
206 status = CreateAUGraph(&p_sys->graph, &p_sys->synthUnit, &p_sys->outputUnit); in Open()
215 ret = SetSoundfont(p_dec, p_sys->synthUnit, sfPath); in Open()
267 MusicDeviceMIDIEvent(p_sys->synthUnit, in Open()
318 …MusicDeviceMIDIEvent(p_sys->synthUnit, kMidiMessage_ControlChange | channel, kMidiController_AllSo… in Flush()
362 MusicDeviceMIDIEvent(p_sys->synthUnit, event, data1, data2, 0); in DecodeBlock()
367 MusicDeviceSysEx(p_sys->synthUnit, p_block->p_buffer, (UInt32)p_block->i_buffer); in DecodeBlock()
/dports/emulators/bochs/bochs-2.7/iodev/sound/
H A Dsoundosx.cc72 AudioUnit synthUnit; variable
518 AUGraphGetNodeInfo (MidiGraph, synthNode, NULL, NULL, NULL, &synthUnit); in openmidioutput()
520 AudioUnitSetProperty (synthUnit, kMusicDeviceProperty_UsesInternalReverb, in openmidioutput()
540 MusicDeviceMIDIEvent (synthUnit, command, arg1, arg2, delta); in sendmidicommand()
543 MusicDeviceSysEx (synthUnit, data, length); in sendmidicommand()