Re: [fluid-dev] Proposal for a new feature: lazy-loading of SoundFonts

2018-04-15 Thread Marcus Weseloh
Hi all, I've finished the first draft of the dynamic sample loading. You can see the change in this pull request: https://github.com/FluidSynth/fluidsynth/pull/366 If you want to try out the changes, please check out the dynamic-sample-loading branch: https://github.com/FluidSynth/fluidsynth/tree

Re: [fluid-dev] Parallelize rendering using openMP

2018-04-15 Thread Tom M.
> do you think that it would be possible to implement this thing in addition to > existing code? Technically it would be possible, but having three implementations around would make this part completely unmaintainable. So no, sry. Why are you asking? Tom __

Re: [fluid-dev] Parallelize rendering using openMP

2018-04-15 Thread Carlo Bramini
Hello, do you think that it would be possible to implement this thing in addition to existing code? For example, something like: #if THREADING_MODE_RVOICE == MODEL_SYNC_OPENMP3 ... #elif THREADING_MODE_RVOICE == MODEL_SYNC_THREAD ... #else // THREADING_MODE_RVOICE == MODEL_SYNC_NONE ... #endif