From b774ef1e204ba7de99f32a4a7678b7ca4b74b228 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 6 Mar 2019 23:50:07 +0100 Subject: [PATCH] Remove unused fluidsynth setting (since fluidsynth 2.0) --- libs/ardour/fluid_synth.cc | 1 - libs/plugins/a-fluidsynth.lv2/a-fluidsynth.cc | 1 - 2 files changed, 2 deletions(-) diff --git a/libs/ardour/fluid_synth.cc b/libs/ardour/fluid_synth.cc index 9d20f95358..f55db3e7c9 100644 --- a/libs/ardour/fluid_synth.cc +++ b/libs/ardour/fluid_synth.cc @@ -40,7 +40,6 @@ FluidSynth::FluidSynth (float samplerate, int polyphony) } fluid_settings_setnum (_settings, "synth.sample-rate", samplerate); - fluid_settings_setint (_settings, "synth.parallel-render", 1); fluid_settings_setint (_settings, "synth.threadsafe-api", 0); _synth = new_fluid_synth (_settings); diff --git a/libs/plugins/a-fluidsynth.lv2/a-fluidsynth.cc b/libs/plugins/a-fluidsynth.lv2/a-fluidsynth.cc index 393c29b117..e25dd52c13 100644 --- a/libs/plugins/a-fluidsynth.lv2/a-fluidsynth.cc +++ b/libs/plugins/a-fluidsynth.lv2/a-fluidsynth.cc @@ -320,7 +320,6 @@ instantiate (const LV2_Descriptor* descriptor, } fluid_settings_setnum (self->settings, "synth.sample-rate", rate); - fluid_settings_setint (self->settings, "synth.parallel-render", 1); fluid_settings_setint (self->settings, "synth.threadsafe-api", 0); fluid_settings_setstr (self->settings, "synth.midi-bank-select", "mma");