-
If you want multiple synths to use the same Soundfont, what is the difference between:
Second seems like it would be more efficient, but might have unintended side effects if the Soundfont state is shared between synths. |
Beta Was this translation helpful? Give feedback.
Answered by
derselbst
Feb 8, 2023
Replies: 1 comment 1 reply
-
Fluidsynth uses a sample cache for all loaded soundfonts. Therefore, reusing the same font between synths is cheap. 1. is your only option. Option 2. results in undefined behavior, because the sfont is already being owned by another synth. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
JBetz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fluidsynth uses a sample cache for all loaded soundfonts. Therefore, reusing the same font between synths is cheap. 1. is your only option.
Option 2. results in undefined behavior, because the sfont is already being owned by another synth.