remove unimplemented "synth.dump" setting

This commit is contained in:
derselbst 2017-09-19 16:45:38 +02:00
parent 201aa5e0d4
commit 0f6c4c83a1
5 changed files with 0 additions and 24 deletions

View file

@ -371,22 +371,6 @@ The following table provides details on all the settings used by the synthesizer
for this ID or to all devices will be acted upon.</td>
</tr>
<tr>
<td>synth.dump</td>
<td>Type</td>
<td>boolean</td>
</tr>
<tr>
<td></td>
<td>Default</td>
<td>0 (FALSE)</td>
</tr>
<tr>
<td></td>
<td>Description</td>
<td>Does nothing currently.</td>
</tr>
<tr>
<td>synth.effects-channels</td>
<td>Type</td>

View file

@ -164,9 +164,6 @@ Number of CPU cores to use for multi-core support.
.B synth.device\-id INT [min=0, max=126, def=0] REALTIME
Device ID to use for accepting incoming SYSEX messages.
.TP
.B synth.dump BOOL [def=False]
No effect currently.
.TP
.B synth.effects\-channels INT [min=2, max=2, def=2]
No effect currently.
.TP

View file

@ -418,7 +418,6 @@ int main(int argc, char** argv)
fluid_settings_setint(settings, "audio.periods", atoi(optarg));
break;
case 'd':
fluid_settings_setint(settings, "synth.dump", TRUE);
dump = 1;
break;
case 'E':

View file

@ -175,8 +175,6 @@ void fluid_synth_settings(fluid_settings_t* settings)
{
fluid_settings_register_int(settings, "synth.verbose", 0, 0, 1,
FLUID_HINT_TOGGLED, NULL, NULL);
fluid_settings_register_int(settings, "synth.dump", 0, 0, 1,
FLUID_HINT_TOGGLED, NULL, NULL);
fluid_settings_register_int(settings, "synth.reverb.active", 1, 0, 1,
FLUID_HINT_TOGGLED, NULL, NULL);
fluid_settings_register_int(settings, "synth.chorus.active", 1, 0, 1,
@ -577,7 +575,6 @@ new_fluid_synth(fluid_settings_t *settings)
fluid_settings_getint(settings, "synth.reverb.active", &synth->with_reverb);
fluid_settings_getint(settings, "synth.chorus.active", &synth->with_chorus);
fluid_settings_getint(settings, "synth.verbose", &synth->verbose);
fluid_settings_getint(settings, "synth.dump", &synth->dump);
fluid_settings_getint(settings, "synth.polyphony", &synth->polyphony);
fluid_settings_getnum(settings, "synth.sample-rate", &synth->sample_rate);

View file

@ -116,7 +116,6 @@ struct _fluid_synth_t
int with_reverb; /**< Should the synth use the built-in reverb unit? */
int with_chorus; /**< Should the synth use the built-in chorus unit? */
int verbose; /**< Turn verbose mode on? */
int dump; /**< Dump events to stdout to hook up a user interface? */
double sample_rate; /**< The sample rate */
int midi_channels; /**< the number of MIDI channels (>= 16) */
int bank_select; /**< the style of Bank Select MIDI messages */