implement handling of FLUID_SEQ_ALLSOUNDSOFF

This commit is contained in:
derselbst 2017-11-15 17:10:26 +01:00
parent 9c6de2bb79
commit 7dee2c18e9
2 changed files with 12 additions and 1 deletions

View file

@ -22,6 +22,7 @@ All the source code examples in this document are in the public domain; you can
- \ref Disclaimer
- \ref Introduction
- \ref NewIn2_0_0
- \ref NewIn1_1_9
- \ref NewIn1_1_8
- \ref NewIn1_1_7
- \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
\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?
Changes in FluidSynth 1.1.8 concerning developers:

View file

@ -151,7 +151,7 @@ fluid_seq_fluidsynth_callback(unsigned int time, fluid_event_t* evt, fluid_seque
break;
case FLUID_SEQ_ALLSOUNDSOFF:
/* NYI */
fluid_synth_all_sounds_off(synth, fluid_event_get_channel(evt));
break;
case FLUID_SEQ_ALLNOTESOFF: