mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-02-21 19:31:40 +00:00
implement handling of FLUID_SEQ_ALLSOUNDSOFF
This commit is contained in:
parent
9c6de2bb79
commit
7dee2c18e9
2 changed files with 12 additions and 1 deletions
|
@ -22,6 +22,7 @@ All the source code examples in this document are in the public domain; you can
|
||||||
- \ref Disclaimer
|
- \ref Disclaimer
|
||||||
- \ref Introduction
|
- \ref Introduction
|
||||||
- \ref NewIn2_0_0
|
- \ref NewIn2_0_0
|
||||||
|
- \ref NewIn1_1_9
|
||||||
- \ref NewIn1_1_8
|
- \ref NewIn1_1_8
|
||||||
- \ref NewIn1_1_7
|
- \ref NewIn1_1_7
|
||||||
- \ref NewIn1_1_6
|
- \ref NewIn1_1_6
|
||||||
|
@ -97,6 +98,16 @@ Changes in FluidSynth 2.0.0 concerning developers:
|
||||||
- introduce a separate data type for sequencer client IDs: #fluid_seq_id_t
|
- introduce a separate data type for sequencer client IDs: #fluid_seq_id_t
|
||||||
|
|
||||||
|
|
||||||
|
\section NewIn1_1_9 Whats new in 1.1.9?
|
||||||
|
|
||||||
|
Changes in FluidSynth 1.1.9 concerning developers:
|
||||||
|
|
||||||
|
- implement handling of #FLUID_SEQ_ALLSOUNDSOFF events in fluid_seq_fluidsynth_callback()
|
||||||
|
- fix return value of fluid_file_set_encoding_quality()
|
||||||
|
|
||||||
|
- For a full list of bug fixes, see
|
||||||
|
https://github.com/FluidSynth/fluidsynth/wiki/ChangeLog#fluidsynth-119
|
||||||
|
|
||||||
\section NewIn1_1_8 Whats new in 1.1.8?
|
\section NewIn1_1_8 Whats new in 1.1.8?
|
||||||
|
|
||||||
Changes in FluidSynth 1.1.8 concerning developers:
|
Changes in FluidSynth 1.1.8 concerning developers:
|
||||||
|
|
|
@ -151,7 +151,7 @@ fluid_seq_fluidsynth_callback(unsigned int time, fluid_event_t* evt, fluid_seque
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case FLUID_SEQ_ALLSOUNDSOFF:
|
case FLUID_SEQ_ALLSOUNDSOFF:
|
||||||
/* NYI */
|
fluid_synth_all_sounds_off(synth, fluid_event_get_channel(evt));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case FLUID_SEQ_ALLNOTESOFF:
|
case FLUID_SEQ_ALLNOTESOFF:
|
||||||
|
|
Loading…
Reference in a new issue