fluidsynth/doc
jjceresa 0288466f40 Chorus enhancement. (#548)
This adds new LFO modulators:
 - these modulators are computed on the fly, instead of using lfo lookup table. Advantages:
      - Avoiding a lost of 608272 memory bytes when lfo speed is low (0.3Hz).
      - Allows to diminish the lfo speed lower limit to 0.1Hz instead of 0.3Hz.
        A speed of 0.1 is interesting for chorus. Using a lookup table for 0.1Hz
        would require too much memory (1824816 bytes).
      - Make use of first-order all-pass interpolator instead of bandlimited interpolation.
      - Although lfo modulator is computed on the fly, cpu load is lower than using
        lfo lookup table with bandlimited interpolator.

Also adds a stereo unit controlled by WIDTH macro. WIDTH [0..10] value define a stereo separation between left and right.
 - When 0, the output is monophonic.
 - When > 0 , the output is stereophonic.

 WIDTH is currently fixed to maximum value to provide maximum stereo effect.
2019-10-23 16:41:13 +02:00
..
android Build fluidsynth for Android in RelWithDebInfo 2019-10-21 15:16:35 +02:00
polymono fix typos and grammar in FluidPolyMono-0004.pdf (#440) 2018-10-09 14:57:17 +02:00
CMakeLists.txt remove fop-level "fluidsynth" directory node 2017-09-03 13:30:26 +02:00
doxy_formula.css update API doc of fluid_synth_process() and add usage example 2018-05-17 14:43:59 +02:00
Doxyfile bump to 2.0.7 2019-09-24 16:23:55 +02:00
Doxyfile.cmake cleanup 2.0 API docs 2018-05-18 16:28:09 +02:00
example.c enforce coding style guide 2018-06-24 13:13:18 +02:00
FluidProfile_0004.pdf Add profiling command interface (#345) 2018-03-12 18:25:16 +01:00
fluidsettings.xml Chorus enhancement. (#548) 2019-10-23 16:41:13 +02:00
fluidsettings.xsl fluidsettings: report boolean settings as int 2018-06-17 20:02:46 +02:00
FluidSostenuto-005.pdf Add Sostenuto PDF documentation (#559) 2019-09-14 17:19:43 +03:00
FluidSynth Thread safety paper for LAC 2011.odt remove fop-level "fluidsynth" directory node 2017-09-03 13:30:26 +02:00
fluidsynth-v20-devdoc.txt Chorus enhancement. (#548) 2019-10-23 16:41:13 +02:00
fluidsynth.1 bump to version 2.0.2 2018-11-18 09:39:09 +01:00
fluidsynth_arpeggio.c Fix example code in the API docs 2019-08-25 10:59:11 +02:00
fluidsynth_fx.c Merge branch 'master' into fluid-synth-process 2018-06-25 17:12:29 +02:00
fluidsynth_metronome.c Fix example code in the API docs 2019-08-25 10:59:11 +02:00
fluidsynth_process.c extend documentation on multi-channel rendering 2018-07-16 12:10:07 +02:00
fluidsynth_register_adriver.c enforce coding style guide 2018-06-24 13:13:18 +02:00
fluidsynth_sfload_mem.c Fix the sfload_mem example to actually read back the pointer address 2018-09-19 01:18:42 +02:00
fluidsynth_simple.c enforce coding style guide 2018-06-24 13:13:18 +02:00
ladspa.md Information about LADSPA on non-Linux platforms and some reformatting 2017-11-19 21:12:49 +01:00
README update doc/README 2017-12-15 19:29:12 +01:00

To build FluidSynth API reference documentation, make sure you have Doxygen
installed.

If you are using the cmake build system, change to the build directory and
execute the following command in this doc/ directory:

$ make doxygen

The latest generated API HTML docs can also be found at:
http://www.fluidsynth.org/api/

Even more documentation references are provided on our wiki page:
https://github.com/FluidSynth/fluidsynth/wiki/Documentation