Home
last modified time | relevance | path

Searched refs:synth (Results 1 – 6 of 6) sorted by relevance

/RvlSDK-2.1/include/revolution/
Dsyn.h51 typedef void (*SYNCallback)(AXVPB *axvpb, SYNSYNTH *synth, u8 midiChannel);
110 SYNSYNTH *synth, // user allocated synth
119 void SYNQuitSynth (SYNSYNTH *synth);
120 void SYNMidiInput (SYNSYNTH *synth, u8 *input);
121 u8 SYNGetMidiController(SYNSYNTH *synth, u8 midiChannel, u8 function);
122 void SYNSetMasterVolume (SYNSYNTH *synth, s32 dB);
123 s32 SYNGetMasterVolume (SYNSYNTH *synth);
124 u32 SYNGetActiveNotes (SYNSYNTH *synth);
126 SYNCallback SYNSetInitCallback (SYNSYNTH *synth, SYNCallback callback);
127 SYNCallback SYNSetUpdateCallback(SYNSYNTH *synth, SYNCallback callback);
Dseq.h81 SYNSYNTH synth; // synth used for this sequence member
/RvlSDK-2.1/build/demos/axdemo/src/
Dsyndemo.c96 SYNSYNTH synth; variable
147 SYNMidiInput(&synth, ch); in programChange()
176 SYNMidiInput(&synth, ch); in startNote()
200 SYNMidiInput(&synth, ch); in stopNote()
215 SYNMidiInput(&synth, ch); in stopNote()
239 SYNMidiInput(&synth, ch); in holdPedalDown()
262 SYNMidiInput(&synth, ch); in holdPedalUp()
374 &synth, // pointer to synth object in main()
384 &synth, // pointer to synth object in main()
Dseqdemo.c737 SYNQuitSynth(&sequence.synth); in MNU_sample()
741 &sequence.synth, in MNU_sample()
751 &sequence.synth, in MNU_sample()
888 DEMOWinLogPrintf(window, "Voices: %d\n", SYNGetActiveNotes(&sequence.synth)); in updateStatus()
/RvlSDK-2.1/build/libraries/seq/src/
Dseq.c259 static void __SEQHandleSynthEvent(SYNSYNTH *synth, SEQTRACK *track) in __SEQHandleSynthEvent() argument
300 SYNMidiInput(synth, ch); in __SEQHandleSynthEvent()
307 static void __SEQRunEvent(SYNSYNTH *synth, SEQTRACK *track) in __SEQRunEvent() argument
311 ASSERT(synth); in __SEQRunEvent()
339 __SEQHandleSynthEvent(synth, track); in __SEQRunEvent()
523 __SEQRunEvent(&sequence->synth, track); in SEQRunAudioFrame()
583 &sequence->synth, in SEQAddSequence()
620 SYNQuitSynth(&sequence->synth); in SEQRemoveSequence()
699 SYNMidiInput(&sequence->synth, ch); in SEQSetState()
763 SYNSetMasterVolume(&sequence->synth, dB); in SEQSetVolume()
[all …]
/RvlSDK-2.1/build/demos/wpaddemo/src/
Dwpad_seqdemo.c50 static void VoiceInitCallback ( AXVPB *axvpb, SYNSYNTH *synth, u8 midiChannel );
51 static void VoiceUpdateCallback ( AXVPB *axvpb, SYNSYNTH *synth, u8 midiChannel );
193 SYNSetMasterVolume( &info[i].Sequence.synth, -960); in main()
194 SYNSetInitCallback( &info[i].Sequence.synth, VoiceInitCallback); in main()
195 SYNSetUpdateCallback(&info[i].Sequence.synth, VoiceUpdateCallback); in main()
539 static void VoiceInitCallback(AXVPB *axvpb, SYNSYNTH *synth, u8 midiChannel) in VoiceInitCallback() argument
547 if (synth == &info[i].Sequence.synth) in VoiceInitCallback()
578 static void VoiceUpdateCallback(AXVPB *axvpb, SYNSYNTH *synth, u8 midiChannel) in VoiceUpdateCallback() argument
581 #pragma unused(synth) in VoiceUpdateCallback()