Skip to content

Commit

Permalink
Fixes #8: Disable "synth-parallel-render" option, that has been depre…
Browse files Browse the repository at this point in the history
…cated in FluidSynth 2.0.4.
  • Loading branch information
jofemodo authored and falkTX committed Jul 24, 2022
1 parent 8457f10 commit 43c5f3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/FluidPlug.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ static LV2_Handle lv2_instantiate(const struct _LV2_Descriptor* descriptor, doub
//fluid_settings_setint(settings, "synth.audio-channels", use16Outs ? 16 : 1);
//fluid_settings_setint(settings, "synth.audio-groups", use16Outs ? 16 : 1);
fluid_settings_setnum(settings, "synth.sample-rate", sampleRate);
fluid_settings_setint(settings, "synth.parallel-render", 1);
//fluid_settings_setint(settings, "synth.parallel-render", 1);
fluid_settings_setint(settings, "synth.threadsafe-api", 0);

fluid_synth_t* const synth = new_fluid_synth(settings);
Expand Down

0 comments on commit 43c5f3d

Please sign in to comment.