mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 06:51:54 +00:00
Elaborate API docs
fluid_synth_all_sounds_off() and fluid_synth_all_notes_off()
This commit is contained in:
parent
b266cf21a3
commit
08848864d2
1 changed files with 2 additions and 2 deletions
|
@ -2207,7 +2207,7 @@ fluid_synth_sysex_midi_tuning(fluid_synth_t *synth, const char *data, int len,
|
|||
}
|
||||
|
||||
/**
|
||||
* Turn off all notes on a MIDI channel (put them into release phase).
|
||||
* Turn off all voices that are playing on the given MIDI channel, by putting them into release phase.
|
||||
* @param synth FluidSynth instance
|
||||
* @param chan MIDI channel number (0 to MIDI channel count - 1), (chan=-1 selects all channels)
|
||||
* @return #FLUID_OK on success, #FLUID_FAILED otherwise
|
||||
|
@ -2257,7 +2257,7 @@ fluid_synth_all_notes_off_LOCAL(fluid_synth_t *synth, int chan)
|
|||
}
|
||||
|
||||
/**
|
||||
* Immediately stop all notes on a MIDI channel (skips release phase).
|
||||
* Immediately stop all voices on the given MIDI channel (skips release phase).
|
||||
* @param synth FluidSynth instance
|
||||
* @param chan MIDI channel number (0 to MIDI channel count - 1), (chan=-1 selects all channels)
|
||||
* @return #FLUID_OK on success, #FLUID_FAILED otherwise
|
||||
|
|
Loading…
Reference in a new issue