Re: [fluid-dev] fluidsynth, programming reverb

2018-01-07 Thread David Back
Thanks Tom, some very enlightening comments -- especially about the lack of errors.I had already noted that fluidsynth was not good at reporting errors. I have now implemented fluid_synth_set_reverb() and of course it now works beautifully and Iget the currently set values from   value = fluid_

Re: [fluid-dev] Android Support

2018-01-07 Thread Philippe Simons
https://github.com/VolcanoMobile/fluidsynth-android this is my fork of Fluidsynth basically, I removed the glib dep and all the drivers, so it's up to you to call fluid_synth_write_s16 to fill a buffer. it can be a OpenSL buffer, AAudio, or even an AudioTrack you can build it by calling ndk-buil

Re: [fluid-dev] Android Support

2018-01-07 Thread Nick Heyworth
If OpenSLES support were basically in place, I could contribute by testing it on Android, and with other Android-related stuff. I have a lot of experience with C/C++, Java, JNI, Windows, and Android, but unfortunately I'm not very good at setting up builds in a Unix environment. I understand t

Re: [fluid-dev] fluidsynth, programming reverb

2018-01-07 Thread Element Green
On Sun, Jan 7, 2018 at 11:17 AM, Tom M. wrote: > > P.S.: fluidsynth.org/api/ is currently down, give it 20 hours to recover. > > > There were no files in the generated api directory on the website. I ran the same script the cron job runs and so it should be back up now. Not sure why it wasn't t

Re: [fluid-dev] fluidsynth, programming reverb

2018-01-07 Thread Tom M.
> I can only guess where to begin as the documented reverb API is limited to > turning reverb on or off (which I have done and it is working) Reverb is a feature of the synth, you should therefore have a look at the numerous functions the synth provides: http://www.fluidsynth.org/api/synth_8h.h

Re: [fluid-dev] Android Support

2018-01-07 Thread Tom M.
Supporting OpenSLES would definitely be a nice feature and I already asked Atsushi to draft another PR at github, but no reaction so far: https://sourceforge.net/p/fluidsynth/code-git/merge-requests/3/ Overall it looks quite well, however I have no means to actually test this, so any effort I p

[fluid-dev] Android Support

2018-01-07 Thread Nick Heyworth
Hi, this is my first attempt to post to the fluidsynth list :-) I am attempting to use fluidsynth in an Android app I am developing. If my understanding is correct, there is currently no direct support for Android. I came across this fork https://github.com/atsushieno/fluidsynth which seems to

[fluid-dev] fluidsynth, programming reverb

2018-01-07 Thread David Back
Hi All I can only guess where to begin as the documented reverb API is limited to turning reverbon or off (which I have done and it is working) I have assumed that the doubles: roomsize, damp, width and level are settings and thuscan be set by:fluid_settings_setnum(settings, "name", value); I hav