fluidsynth-v11-devdoc.txt
上传用户:tjmskj2
上传日期:2020-08-17
资源大小:577k
文件大小:49k
源码类别:

midi

开发平台:

C/C++

  1. /*! 
  2. mainpage FluidSynth 1.1 Developer Documentation 
  3. author Peter Hanappe
  4. author Conrad Berhörster
  5. author Antoine Schmitt
  6. author Pedro López-Cabanillas
  7. author Josh Green
  8. author Copyright © 2003-2009 Peter Hanappe, Conrad Berhörster, Antoine Schmitt, Pedro López-Cabanillas, Josh Green
  9. version Revision 1.1.1
  10. date 2009-10-20
  11. All the source code examples in this document are in the public domain; you can use them as you please. This document is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/ . The FluidSynth library is distributed under the GNU Library General Public License. A copy of the GNU Library General Public License is contained in the FluidSynth package; if not, visit http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt or write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  12. section Abstract
  13. <a href="http://www.fluidsynth.org">FluidSynth</a> is a software synthesizer based on the <a href="http://en.wikipedia.org/wiki/SoundFont">SoundFont 2</a> specifications. The synthesizer is available as a shared object that can easily be reused in any application that wants to use wave-table synthesis. This document explains the basic usage of FluidSynth. Some of the more advanced features are not yet discussed but will be added in future versions.
  14. section Contents Table of Contents
  15. - ref Disclaimer 
  16. - ref Introduction 
  17. - ref NewIn1_1_1
  18. - ref NewIn1_1_0
  19. - ref CreatingSettings 
  20. - ref CreatingSynth 
  21. - ref CreatingAudioDriver 
  22. - ref UsingSynth 
  23. - ref LoadingSoundfonts 
  24. - ref SendingMIDI
  25. - ref RealtimeMIDI
  26. - ref MIDIPlayer
  27. - ref MIDIRouter 
  28. - ref Sequencer
  29. - ref Shell
  30. - ref Advanced 
  31. section Disclaimer
  32. This documentation, in its current version, is incomplete. As always, the source code is the final reference.
  33. SoundFont(R) is a registered trademark of E-mu Systems, Inc.
  34. section Introduction
  35. What is FluidSynth?
  36. - FluidSynth is a software synthesizer based on the SoundFont 2 specifications. The synthesizer is available as a shared object (a concept also named Dynamic Linking Library, or DLL) that can be easily reused in any application for wave-table synthesis. This document explains the basic usage of FluidSynth.
  37. - FluidSynth provides a Command Line Interface program ready to be used from the console terminal, offering most of the library functionalities to end users, among them the ability of render and play Standard MIDI Files, receive real-time MIDI events from external hardware ports and other applications, perform advanced routing of such events, enabling at the same time a local shell as well as a remote server commands interface.
  38. - FluidSynth is an API (Application Programming Interface) relieving programmers from a lot of details of reading SoundFont and MIDI events and files, and sending the digital audio output to a Sound Card. These tasks can be accomplished using a small set of functions. This document explains most of the API functions and gives short examples about them.
  39. - FluidSynth uses instrument samples contained in standard SF2 (SoundFont 2) files, having a file structure based on the RIFF format. The specification can be obtained here: http://connect.creativelabs.com/developer/SoundFont/Forms/AllItems.aspx but most users don't need to know any details of the format.
  40. - FluidSynth can easily be embedded in an application. It has a main header file, fluidsynth.h, and one dynamically linkable library. FluidSynth runs on Linux, Mac OS 9, Mac OS X, and the Win32 platforms. It has audio and midi drivers for all mentioned platforms but you can use it with your own drivers if your application already handles MIDI and audio input/output. This document explains the basic usage of FluidSynth and provides examples that you can reuse. 
  41. - FluidSynth is open source, in active development. For more details, take a look at http://www.fluidsynth.org
  42. section NewIn1_1_1 Whats new in 1.1.1?
  43. Changes in FluidSynth 1.1.1 concerning developers:
  44. - fluid_synth_get_channel_preset() marked as deprecated.  New function
  45.   fluid_synth_get_channel_info() added which is thread safe and should replace
  46.   most uses of the older function.
  47. - Added fluid_synth_unset_program() to unset the active preset on a channel.
  48. section NewIn1_1_0 Whats new in 1.1.0?
  49. Overview of changes in FluidSynth 1.1.0 concerning developers:
  50. - Extensive work to make FluidSynth thread safe.  Previous versions had many multi-thread
  51.   issues which could lead to crashes or synthesis glitches.  Some of the API additions,
  52.   deprecations and function recommended conditions of use are related to this work.
  53. - File renderer object for rendering audio to files.
  54. - Sequencer objects can now use the system timer or the sample clock.  When using the sample
  55.   clock, events are triggered based on the current output audio sample position.  This means
  56.   that MIDI is synchronized with the audio and identical output will be achieved for the same
  57.   MIDI event input.
  58. - libsndfile support for rendering audio to different formats and file types.
  59. - API for using the MIDI router subsystem.
  60. - MIDI Tuning Standard functions were added for specifying whether to activate tuning changes
  61.   in realtime or not.
  62. - SYSEX support (MIDI Tuning Standard only at the moment).
  63. - Changed all yes/no boolean string settings to integer #FLUID_HINT_TOGGLED settings with
  64.   backwards compatibility (assignment and query of boolean values as strings).
  65. - Many other improvements and bug fixes.
  66. API additions:
  67. - A file renderer can be created with new_fluid_file_renderer(), deleted with
  68.   delete_fluid_file_renderer() and a block of audio processed with fluid_file_renderer_process_block().
  69. - Additional functions were added for using the MIDI router subsystem.
  70.   To clear all rules from a router use fluid_midi_router_clear_rules() and to set a router to default rules
  71.   use fluid_midi_router_set_default_rules().
  72.   To create a router rule use new_fluid_midi_router_rule() and to delete a rule use
  73.   delete_fluid_midi_router_rule() (seldom used).  Set values of a router rule with
  74.   fluid_midi_router_rule_set_chan(), fluid_midi_router_rule_set_param1() and fluid_midi_router_rule_set_param2().
  75.   fluid_midi_router_add_rule() can be used to add a rule to a router.
  76. - New MIDI event functions were added, including fluid_event_channel_pressure(), fluid_event_system_reset(),
  77.   and fluid_event_unregistering().  
  78. - Additional sequencer functions include fluid_sequencer_add_midi_event_to_buffer(),
  79.   fluid_sequencer_get_use_system_timer() and fluid_sequencer_process().  new_fluid_sequencer2() was added to
  80.   allow for the timer type to be specified (system or sample clock). 
  81. - The settings subsystem has some new functions for thread safety: fluid_settings_copystr() and fluid_settings_dupstr().
  82.   Also there are new convenience functions to count the number of string options for a setting: fluid_settings_option_count()
  83.   and for concatenating setting options with a separator: fluid_settings_option_concat().
  84. - MIDI Tuning Standard functions added include: fluid_synth_activate_key_tuning(), fluid_synth_activate_octave_tuning(),
  85.   fluid_synth_activate_tuning() and fluid_synth_deactivate_tuning().  All of which provide a parameter for specifying if
  86.   tuning changes should occur in realtime (affect existing voices) or not.
  87. - Additional synthesizer API: fluid_synth_get_sfont_by_name() to get a SoundFont by name,
  88.   fluid_synth_program_select_by_sfont_name() to select an instrument by SoundFont name/bank/program,
  89.   fluid_synth_set_gen2() for specifying additional parameters when assigning a generator value,
  90.   fluid_synth_sysex() for sending SYSEX messages to the synth and fluid_synth_get_active_voice_count() to
  91.   get the current number of active synthesis voices.
  92. - Miscellaneous additions: fluid_player_set_loop() to set playlist loop count and fluid_player_get_status() to get current player state.
  93. section CreatingSettings Creating and changing the settings
  94. Before you can use the synthesizer, you have to create a settings object. The settings objects is used by many components of the FluidSynth library. It gives a unified API to set the parameters of the audio drivers, the midi drivers, the synthesizer, and so forth. A number of default settings are defined by the current implementation.
  95. All settings have a name that follows the "dotted-name" notation. For example, "synth.polyphony" refers to the number of voices (polyphony) preallocated by the synthesizer. The settings also have a type. There are currently three types: strings, numbers (double floats), and integers. You can change the values of a setting using the fluid_settings_setstr(), fluid_settings_setnum(), and fluid_settings_setint() functions. For example: 
  96. code
  97. #include <fluidsynth.h>
  98. int main(int argc, char** argv) 
  99. {
  100.     fluid_settings_t* settings = new_fluid_settings();
  101.     fluid_synth_setint(settings, "synth.polyphony", 128);
  102.     /* ... */
  103.     delete_fluid_settings(settings);
  104.     return 0;
  105. }
  106. endcode
  107. The API contains the functions to query the type, the current value, the default value, the range and the "hints" of a setting. The range is the minimum and maximum value of the setting. The hints gives additional information about a setting. For example, whether a string represents a filename. Or whether a number should be interpreted on on a logarithmic scale. Check the settings.h API documentation for a description of all functions. 
  108. section CreatingSynth Creating the synthesizer
  109. To create the synthesizer, you pass it the settings object, as in the following example: 
  110. code
  111. #include <fluidsynth.h>
  112. int main(int argc, char** argv) 
  113. {
  114.     fluid_settings_t* settings;
  115.     fluid_synth_t* synth;
  116.     settings = new_fluid_settings();
  117.     synth = new_fluid_synth(settings);
  118.     /* Do useful things here */
  119.     delete_fluid_synth(synth);
  120.     delete_fluid_settings(settings);
  121.     return 0;
  122. }
  123. endcode
  124. The following table provides details on all the settings used by the synthesizer. 
  125. <table border="1" cellspacing="0">
  126.   <caption>Table 1. Synthesizer settings</caption>
  127.   <tr>
  128.     <td>synth.audio-channels</td>
  129.     <td>Type</td>
  130.     <td>integer</td>
  131.   </tr>
  132.   <tr>
  133.     <td></td>
  134.     <td>Default</td>
  135.     <td>1</td>
  136.   </tr>
  137.   <tr>
  138.     <td></td>
  139.     <td>Min-Max</td>
  140.     <td>1-128</td>
  141.   </tr>
  142.   <tr>
  143.     <td></td>
  144.     <td>Description</td>
  145.     <td>By default, the synthesizer outputs a single stereo signal.
  146.     Using this option, the synthesizer can output multichannel
  147.     audio. Sets the number of stereo channel pairs. So 1 is actually
  148.     2 channels (a stereo pair).</td>
  149.   </tr>
  150.   <tr>
  151.     <td>synth.audio-groups</td>
  152.     <td>Type</td>
  153.     <td>integer</td>
  154.   </tr>
  155.   <tr>
  156.     <td></td>
  157.     <td>Default</td>
  158.     <td>1</td>
  159.   </tr>
  160.   <tr>
  161.     <td></td>
  162.     <td>Min-Max</td>
  163.     <td>1-128</td>
  164.   </tr>
  165.   <tr>
  166.     <td></td>
  167.     <td>Description</td>
  168.     <td>Normally the same value as synth.audio-channels. LADSPA
  169.     effects subsystem can use this value though, in which case it may
  170.     differ.</td>
  171.   </tr>
  172.   <tr>
  173.     <td>synth.chorus.active</td>
  174.     <td>Type</td>
  175.     <td>boolean</td>
  176.   </tr>
  177.   <tr>
  178.     <td></td>
  179.     <td>Default</td>
  180.     <td>1 (TRUE)</td>
  181.   </tr>
  182.   <tr>
  183.     <td></td>
  184.     <td>Description</td>
  185.     <td>When set to 1 (TRUE) the chorus effects module is activated.
  186.     Otherwise, no chorus will be added to the output signal. Note
  187.     that the amount of signal sent to the chorus module depends on the
  188.     "chorus send" generator defined in the SoundFont.</td>
  189.   </tr>
  190.   <tr>
  191.     <td>synth.cpu-cores</td>
  192.     <td>Type</td>
  193.     <td>integer</td>
  194.   </tr>
  195.   <tr>
  196.     <td></td>
  197.     <td>Default</td>
  198.     <td>1</td>
  199.   </tr>
  200.   <tr>
  201.     <td></td>
  202.     <td>Min-Max</td>
  203.     <td>1-256</td>
  204.   </tr>
  205.   <tr>
  206.     <td></td>
  207.     <td>Description</td>
  208.     <td>(Experimental) Sets the number of synthesis CPU cores. If set to a value
  209.     greater than 1, then additional synthesis threads will be created to take
  210.     advantage of a multi CPU or CPU core system. This has the affect of
  211.     utilizing more of the total CPU for voices or decreasing render times
  212.     when synthesizing audio to a file.</td>
  213.   </tr>
  214.   <tr>
  215.     <td>synth.device-id</td>
  216.     <td>Type</td>
  217.     <td>integer</td>
  218.   </tr>
  219.   <tr>
  220.     <td></td>
  221.     <td>Default</td>
  222.     <td>0</td>
  223.   </tr>
  224.   <tr>
  225.     <td></td>
  226.     <td>Min-Max</td>
  227.     <td>0-126</td>
  228.   </tr>
  229.   <tr>
  230.     <td></td>
  231.     <td>Description</td>
  232.     <td>Device identifier used for SYSEX commands, such as MIDI
  233.     Tuning Standard commands. Only those SYSEX commands destined
  234.     for this ID or to all devices will be acted upon.</td>
  235.   </tr>
  236.   <tr>
  237.     <td>synth.dump</td>
  238.     <td>Type</td>
  239.     <td>boolean</td>
  240.   </tr>
  241.   <tr>
  242.     <td></td>
  243.     <td>Default</td>
  244.     <td>0 (FALSE)</td>
  245.   </tr>
  246.   <tr>
  247.     <td></td>
  248.     <td>Description</td>
  249.     <td>Does nothing currently.</td>
  250.   </tr>
  251.   <tr>
  252.     <td>synth.effects-channels</td>
  253.     <td>Type</td>
  254.     <td>integer</td>
  255.   </tr>
  256.   <tr>
  257.     <td></td>
  258.     <td>Default</td>
  259.     <td>2</td>
  260.   </tr>
  261.   <tr>
  262.     <td></td>
  263.     <td>Min-Max</td>
  264.     <td>2-2</td>
  265.   </tr>
  266.   <tr>
  267.     <td></td>
  268.     <td>Description</td>
  269.     <td></td>
  270.   </tr>
  271.   <tr>
  272.     <td>synth.gain</td>
  273.     <td>Type</td>
  274.     <td>number</td>
  275.   </tr>
  276.   <tr>
  277.     <td></td>
  278.     <td>Default</td>
  279.     <td>0.2</td>
  280.   </tr>
  281.   <tr>
  282.     <td></td>
  283.     <td>Min-Max</td>
  284.     <td>0.0-10.0</td>
  285.   </tr>
  286.   <tr>
  287.     <td></td>
  288.     <td>Description</td>
  289.     <td>The gain is applied to the final or master output of the
  290.     synthesizer. It is set to a low value by default to avoid the
  291.     saturation of the output when many notes are played.</td>
  292.   </tr>
  293.   <tr>
  294.     <td>synth.ladspa.active</td>
  295.     <td>Type</td>
  296.     <td>boolean</td>
  297.   </tr>
  298.   <tr>
  299.     <td></td>
  300.     <td>Default</td>
  301.     <td>0 (FALSE)</td>
  302.   </tr>
  303.   <tr>
  304.     <td></td>
  305.     <td>Description</td>
  306.     <td>When set to "yes" the LADSPA subsystem will be enabled. This
  307.     subsystem allows to load and interconnect LADSPA plug-ins. The
  308.     output of the synthesizer is processed by the LADSPA subsystem.
  309.     Note that the synthesizer has to be compiled with LADSPA
  310.     support. More information about the LADSPA subsystem
  311.     later.</td>
  312.   </tr>
  313.   <tr>
  314.     <td>synth.midi-channels</td>
  315.     <td>Type</td>
  316.     <td>integer</td>
  317.   </tr>
  318.   <tr>
  319.     <td></td>
  320.     <td>Default</td>
  321.     <td>16</td>
  322.   </tr>
  323.   <tr>
  324.     <td></td>
  325.     <td>Min-Max</td>
  326.     <td>16-256</td>
  327.   </tr>
  328.   <tr>
  329.     <td></td>
  330.     <td>Description</td>
  331.     <td>This setting defines the number of MIDI channels of the
  332.     synthesizer. The MIDI standard defines 16 channels, so MIDI
  333.     hardware is limited to this number. Internally FluidSynth can use
  334.     more channels which can be mapped to different MIDI sources.</td>
  335.   </tr>
  336.   <tr>
  337.     <td>synth.min-note-length</td>
  338.     <td>Type</td>
  339.     <td>integer</td>
  340.   </tr>
  341.   <tr>
  342.     <td></td>
  343.     <td>Default</td>
  344.     <td>10</td>
  345.   </tr>
  346.   <tr>
  347.     <td></td>
  348.     <td>Min-Max</td>
  349.     <td>0-65535</td>
  350.   </tr>
  351.   <tr>
  352.     <td></td>
  353.     <td>Description</td>
  354.     <td>Sets the minimum note duration in milliseconds. This
  355.     ensures that really short duration note events, such as
  356.     percussion notes, have a better chance of sounding as
  357.     intended. Set to 0 to disable this feature.</td>
  358.   </tr>
  359.   <tr>
  360.     <td>synth.polyphony</td>
  361.     <td>Type</td>
  362.     <td>integer</td>
  363.   </tr>
  364.   <tr>
  365.     <td></td>
  366.     <td>Default</td>
  367.     <td>256</td>
  368.   </tr>
  369.   <tr>
  370.     <td></td>
  371.     <td>Min-Max</td>
  372.     <td>16-4096</td>
  373.   </tr>
  374.   <tr>
  375.     <td></td>
  376.     <td>Description</td>
  377.     <td>The polyphony defines how many voices can be played in
  378.     parallel. A note event produces one or more voices.
  379.     Its good to set this to a value which the system can handle
  380.     and will thus limit FluidSynth's CPU usage. When FluidSynth
  381.     runs out of voices it will begin terminating lower priority
  382.     voices for new note events.</td>
  383.   </tr>
  384.   <tr>
  385.     <td>synth.reverb.active</td>
  386.     <td>Type</td>
  387.     <td>boolean</td>
  388.   </tr>
  389.   <tr>
  390.     <td></td>
  391.     <td>Default</td>
  392.     <td>1 (TRUE)</td>
  393.   </tr>
  394.   <tr>
  395.     <td></td>
  396.     <td>Description</td>
  397.     <td>When set to 1 (TRUE) the reverb effects module is activated.
  398.     Otherwise, no reverb will be added to the output signal. Note
  399.     that the amount of signal sent to the reverb module depends on the
  400.     "reverb send" generator defined in the SoundFont.</td>
  401.   </tr>
  402.   <tr>
  403.     <td>synth.sample-rate</td>
  404.     <td>Type</td>
  405.     <td>number</td>
  406.   </tr>
  407.   <tr>
  408.     <td></td>
  409.     <td>Default</td>
  410.     <td>44100</td>
  411.   </tr>
  412.   <tr>
  413.     <td></td>
  414.     <td>Min-Max</td>
  415.     <td>22050-96000</td>
  416.   </tr>
  417.   <tr>
  418.     <td></td>
  419.     <td>Description</td>
  420.     <td>The sample rate of the audio generated by the
  421.     synthesizer.</td>
  422.   </tr>
  423.   <tr>
  424.     <td>synth.verbose</td>
  425.     <td>Type</td>
  426.     <td>boolean</td>
  427.   </tr>
  428.   <tr>
  429.     <td></td>
  430.     <td>Default</td>
  431.     <td>0 (FALSE)</td>
  432.   </tr>
  433.   <tr>
  434.     <td></td>
  435.     <td>Description</td>
  436.     <td>When set to 1 (TRUE) the synthesizer will print out
  437.     information about the received MIDI events to the stdout. This
  438.     can be helpful for debugging. This setting cannot be changed
  439.     after the synthesizer has started.</td>
  440.   </tr>
  441. </table>
  442. section CreatingAudioDriver Creating the Audio Driver
  443. The synthesizer itself does not write any audio to the audio output. This allows application developers to manage the audio output themselves if they wish. The next section describes the use of the synthesizer without an audio driver in more detail.
  444. Creating the audio driver is straightforward: set the appropriate settings and create the driver object. Because the FluidSynth has support for several audio systems, you may want to change which one you want to use. The list below shows the audio systems that are currently supported. It displays the name, as used by the fluidsynth library, and a description. 
  445. - jack: JACK Audio Connection Kit (Linux, Mac OS X, Windows)
  446. - alsa: Advanced Linux Sound Architecture (Linux)
  447. - oss: Open Sound System (Linux, Unix)
  448. - pulseaudio: PulseAudio (Linux, Mac OS X, Windows)
  449. - coreaudio: Apple CoreAudio (Mac OS X)
  450. - dsound: Microsoft DirectSound (Windows)
  451. - portaudio: PortAudio Library (Mac OS 9 & X, Windows, Linux)
  452. - sndman: Apple SoundManager (Mac OS Classic)
  453. - dart: DART sound driver (OS/2)
  454. - file: Driver to output audio to a file
  455. The default audio driver depends on the settings with which FluidSynth was compiled. You can get the default driver with fluid_settings_getstr_default(). To get the list of available drivers use the fluid_settings_foreach_option() function. Finally, you can set the driver with fluid_settings_setstr(). In most cases, the default driver should work out of the box. 
  456. Additional options that define the audio quality and latency are "audio.sample-format", "audio.period-size", and "audio.periods". The details are described later. 
  457. You create the audio driver with the new_fluid_audio_driver() function. This function takes the settings and synthesizer object as arguments. For example: 
  458. code
  459. void init() 
  460. {
  461.     fluid_settings_t* settings;
  462.     fluid_synth_t* synth;
  463.     fluid_audio_driver_t* adriver;
  464.     settings = new_fluid_settings();
  465.     /* Set the synthesizer settings, if necessary */
  466.     synth = new_fluid_synth(settings);
  467.     fluid_settings_setstr(settings, "audio.driver", "jack");
  468.     adriver = new_fluid_audio_driver(settings, synth);
  469. }
  470. endcode
  471. As soon as the audio driver is created, it will start playing. The audio driver creates a separate thread that uses the synthesizer object to generate the audio.
  472.  
  473. There are a number of general audio driver settings. The audio.driver settings define the audio subsystem that will be used. The audio.periods and audio.period-size settings define the latency and robustness against scheduling delays. There are additional settings for the audio subsystems used which are documented in another table.
  474. <table border="1" cellspacing="0">
  475.   <caption>Table 2. General audio driver settings</caption>
  476.   <tr>
  477.     <td>audio.driver</td>
  478.     <td>Type</td>
  479.     <td>string</td>
  480.   </tr>
  481.   <tr>
  482.     <td></td>
  483.     <td>Default</td>
  484.     <td>jack (Linux), dsound (Windows), sndman (MacOS9), coreaudio
  485.     (Mac OS X), dart (OS/2)</td>
  486.   </tr>
  487.   <tr>
  488.     <td></td>
  489.     <td>Options</td>
  490.     <td>jack, alsa, oss, pulseaudio, coreaudio, dsound, portaudio, sndman, dart, file</td>
  491.   </tr>
  492.   <tr>
  493.     <td></td>
  494.     <td>Description</td>
  495.     <td>The audio system to be used.</td>
  496.   </tr>
  497.   <tr>
  498.     <td>audio.periods</td>
  499.     <td>Type</td>
  500.     <td>int</td>
  501.   </tr>
  502.   <tr>
  503.     <td></td>
  504.     <td>Default</td>
  505.     <td>16 (Linux, Mac OS X), 8 (Windows)</td>
  506.   </tr>
  507.   <tr>
  508.     <td></td>
  509.     <td>Min-Max</td>
  510.     <td>2-64</td>
  511.   </tr>
  512.   <tr>
  513.     <td></td>
  514.     <td>Description</td>
  515.     <td>The number of the audio buffers used by the driver. This
  516.     number of buffers, multiplied by the buffer size (see setting
  517.     audio.period-size), determines the maximum latency of the audio
  518.     driver.</td>
  519.   </tr>
  520.   <tr>
  521.     <td>audio.period-size</td>
  522.     <td>Type</td>
  523.     <td>integer</td>
  524.   </tr>
  525.   <tr>
  526.     <td></td>
  527.     <td>Default</td>
  528.     <td>64 (Linux, Mac OS X), 512 (Windows)</td>
  529.   </tr>
  530.   <tr>
  531.     <td></td>
  532.     <td>Min-Max</td>
  533.     <td>64-8192</td>
  534.   </tr>
  535.   <tr>
  536.     <td></td>
  537.     <td>Description</td>
  538.     <td>The size of the audio buffers (in frames).</td>
  539.   </tr>
  540.   <tr>
  541.     <td>audio.realtime-prio</td>
  542.     <td>Type</td>
  543.     <td>integer</td>
  544.   </tr>
  545.   <tr>
  546.     <td></td>
  547.     <td>Default</td>
  548.     <td>60</td>
  549.   </tr>
  550.   <tr>
  551.     <td></td>
  552.     <td>Min-Max</td>
  553.     <td>0-99</td>
  554.   </tr>
  555.   <tr>
  556.     <td></td>
  557.     <td>Description</td>
  558.     <td>Sets the realtime scheduling priority of the audio synthesis thread
  559.     (0 disables high priority scheduling).  Linux is the only platform which
  560.     currently makes use of different priority levels.  Drivers which use this
  561.     option: alsa, oss and pulseaudio</td>
  562.   </tr>
  563.   <tr>
  564.     <td>audio.sample-format</td>
  565.     <td>Type</td>
  566.     <td>string</td>
  567.   </tr>
  568.   <tr>
  569.     <td></td>
  570.     <td>Default</td>
  571.     <td>"16bits"</td>
  572.   </tr>
  573.   <tr>
  574.     <td></td>
  575.     <td>Options</td>
  576.     <td>"16bits", "float"</td>
  577.   </tr>
  578.   <tr>
  579.     <td></td>
  580.     <td>Description</td>
  581.     <td>The format of the audio samples. This is currently only an
  582.     indication; the audio driver may ignore this setting if it
  583.     can't handle the specified format.</td>
  584.   </tr>
  585. </table>
  586. The following table describes audio driver specific settings.
  587. <table border="1" cellspacing="0">
  588.   <caption>Table 3. Audio driver specific settings</caption>
  589.   <tr>
  590.     <td>audio.alsa.device</td>
  591.     <td>Type</td>
  592.     <td>string</td>
  593.   </tr>
  594.   <tr>
  595.     <td></td>
  596.     <td>Default</td>
  597.     <td>"default"</td>
  598.   </tr>
  599.   <tr>
  600.     <td></td>
  601.     <td>Options</td>
  602.     <td>ALSA device string, such as: "hw:0", "plughw:1", etc.</td>
  603.   </tr>
  604.   <tr>
  605.     <td></td>
  606.     <td>Description</td>
  607.     <td>Selects the ALSA audio device to use.</td>
  608.   </tr>
  609.   <tr>
  610.     <td>audio.coreaudio.device</td>
  611.     <td>Type</td>
  612.     <td>string</td>
  613.   </tr>
  614.   <tr>
  615.     <td></td>
  616.     <td>Default</td>
  617.     <td>"default"</td>
  618.   </tr>
  619.   <tr>
  620.     <td></td>
  621.     <td>Description</td>
  622.     <td>Selects the CoreAudio device to use.</td>
  623.   </tr>
  624.   <tr>
  625.     <td>audio.dart.device</td>
  626.     <td>Type</td>
  627.     <td>string</td>
  628.   </tr>
  629.   <tr>
  630.     <td></td>
  631.     <td>Default</td>
  632.     <td>"default"</td>
  633.   </tr>
  634.   <tr>
  635.     <td></td>
  636.     <td>Description</td>
  637.     <td>Selects the Dart (OS/2 driver) device to use.</td>
  638.   </tr>
  639.   <tr>
  640.     <td>audio.dsound.device</td>
  641.     <td>Type</td>
  642.     <td>string</td>
  643.   </tr>
  644.   <tr>
  645.     <td></td>
  646.     <td>Default</td>
  647.     <td>"default"</td>
  648.   </tr>
  649.   <tr>
  650.     <td></td>
  651.     <td>Description</td>
  652.     <td>Selects the DirectSound (Windows) device to use.</td>
  653.   </tr>
  654.   <tr>
  655.     <td>audio.file.endian</td>
  656.     <td>Type</td>
  657.     <td>string</td>
  658.   </tr>
  659.   <tr>
  660.     <td></td>
  661.     <td>Default</td>
  662.     <td>'auto' if libsndfile support is built in, 'cpu' otherwise.</td>
  663.   </tr>
  664.   <tr>
  665.     <td></td>
  666.     <td>Options</td>
  667.     <td>auto, big, cpu, little ('cpu' is all that is supported if libsndfile
  668.     support is not built in)</td>
  669.   </tr>
  670.   <tr>
  671.     <td></td>
  672.     <td>Description</td>
  673.     <td>Defines the byte order when using the 'file' driver or file renderer to
  674.     store audio to a file. 'auto' uses the default for the given file type,
  675.     'cpu' uses the CPU byte order, 'big' uses big endian byte order and 'little' uses
  676.     little endian byte order.</td>
  677.   </tr>
  678.   <tr>
  679.     <td>audio.file.format</td>
  680.     <td>Type</td>
  681.     <td>string</td>
  682.   </tr>
  683.   <tr>
  684.     <td></td>
  685.     <td>Default</td>
  686.     <td>s16</td>
  687.   </tr>
  688.   <tr>
  689.     <td></td>
  690.     <td>Options</td>
  691.     <td>double, float, s16, s24, s32, s8, u8 ('s16' is all that is supported if
  692.     libsndfile support not built in)</td>
  693.   </tr>
  694.   <tr>
  695.     <td></td>
  696.     <td>Description</td>
  697.     <td>Defines the audio format when rendering audio to a file. 'double' is
  698.     64 bit floating point, 'float' is 32 bit floating point, 's16' is 16 bit signed
  699.     PCM, 's24' is 24 bit signed PCM, 's32' is 32 bit signed PCM, 's8' is 8 bit
  700.     signed PCM and 'u8' is 8 bit unsigned PCM.</td>
  701.   </tr>
  702.   <tr>
  703.     <td>audio.file.name</td>
  704.     <td>Type</td>
  705.     <td>string</td>
  706.   </tr>
  707.   <tr>
  708.     <td></td>
  709.     <td>Default</td>
  710.     <td>'fluidsynth.wav' if libsndfile support is built in, 'fluidsynth.raw'
  711.     otherwise.</td>
  712.   </tr>
  713.   <tr>
  714.     <td></td>
  715.     <td>Description</td>
  716.     <td>Specifies the file name to store the audio to, when rendering audio to
  717.     a file.</td>
  718.   </tr>
  719.   <tr>
  720.     <td>audio.file.type</td>
  721.     <td>Type</td>
  722.     <td>string</td>
  723.   </tr>
  724.   <tr>
  725.     <td></td>
  726.     <td>Default</td>
  727.     <td>'auto' if libsndfile support is built in, 'raw' otherwise.</td>
  728.   </tr>
  729.   <tr>
  730.     <td></td>
  731.     <td>Options</td>
  732.     <td>aiff, au, auto, avr, caf, flac, htk, iff, mat, oga, paf, pvf, raw, sd2, sds,
  733.     sf, voc, w64, wav, xi (actual list of types may vary and depends on the
  734.     libsndfile library used, 'raw' is the only type available if no libsndfile
  735.     support is built in).</td>
  736.   </tr>
  737.   <tr>
  738.     <td></td>
  739.     <td>Description</td>
  740.     <td>Sets the file type of the file which the audio will be stored to.
  741.     'auto' attempts to determine the file type from the audio.file.name file
  742.     extension and falls back to 'wav' if the extension doesn't match any types.</td>
  743.   </tr>
  744.   <tr>
  745.     <td>audio.jack.autoconnect</td>
  746.     <td>Type</td>
  747.     <td>boolean</td>
  748.   </tr>
  749.   <tr>
  750.     <td></td>
  751.     <td>Default</td>
  752.     <td>0 (FALSE)</td>
  753.   </tr>
  754.   <tr>
  755.     <td></td>
  756.     <td>Description</td>
  757.     <td>If 1 (TRUE), then FluidSynth output is automatically connected to jack
  758.     system audio output.</td>
  759.   </tr>
  760.   <tr>
  761.     <td>audio.jack.id</td>
  762.     <td>Type</td>
  763.     <td>string</td>
  764.   </tr>
  765.   <tr>
  766.     <td></td>
  767.     <td>Default</td>
  768.     <td>fluidsynth</td>
  769.   </tr>
  770.   <tr>
  771.     <td></td>
  772.     <td>Description</td>
  773.     <td>ID used when creating Jack client connection.</td>
  774.   </tr>
  775.   <tr>
  776.     <td>audio.jack.multi</td>
  777.     <td>Type</td>
  778.     <td>boolean</td>
  779.   </tr>
  780.   <tr>
  781.     <td></td>
  782.     <td>Default</td>
  783.     <td>0 (FALSE)</td>
  784.   </tr>
  785.   <tr>
  786.     <td></td>
  787.     <td>Description</td>
  788.     <td>If 1 (TRUE), then multi-channel Jack output will be enabled if
  789.     synth.audio-channels is greater than 1.</td>
  790.   </tr>
  791.   <tr>
  792.     <td>audio.jack.server</td>
  793.     <td>Type</td>
  794.     <td>string</td>
  795.   </tr>
  796.   <tr>
  797.     <td></td>
  798.     <td>Default</td>
  799.     <td></td>
  800.   </tr>
  801.   <tr>
  802.     <td></td>
  803.     <td>Description</td>
  804.     <td>Jack server to connect to. Defaults to an empty string, which uses
  805.     default Jack server.</td>
  806.   </tr>
  807.   <tr>
  808.     <td>audio.oss.device</td>
  809.     <td>Type</td>
  810.     <td>string</td>
  811.   </tr>
  812.   <tr>
  813.     <td></td>
  814.     <td>Default</td>
  815.     <td>/dev/dsp</td>
  816.   </tr>
  817.   <tr>
  818.     <td></td>
  819.     <td>Description</td>
  820.     <td>Device to use for OSS audio output.</td>
  821.   </tr>
  822.   <tr>
  823.     <td>audio.portaudio.device</td>
  824.     <td>Type</td>
  825.     <td>string</td>
  826.   </tr>
  827.   <tr>
  828.     <td></td>
  829.     <td>Default</td>
  830.     <td>PortAudio Default</td>
  831.   </tr>
  832.   <tr>
  833.     <td></td>
  834.     <td>Description</td>
  835.     <td>Device to use for PortAudio driver output. Note that 'PortAudio Default'
  836.     is a special value which outputs to the default PortAudio device.</td>
  837.   </tr>
  838.   <tr>
  839.     <td>audio.pulseaudio.device</td>
  840.     <td>Type</td>
  841.     <td>string</td>
  842.   </tr>
  843.   <tr>
  844.     <td></td>
  845.     <td>Default</td>
  846.     <td>"default"</td>
  847.   </tr>
  848.   <tr>
  849.     <td></td>
  850.     <td>Description</td>
  851.     <td>Device to use for PulseAudio driver output</td>
  852.   </tr>
  853.   <tr>
  854.     <td>audio.pulseaudio.server</td>
  855.     <td>Type</td>
  856.     <td>string</td>
  857.   </tr>
  858.   <tr>
  859.     <td></td>
  860.     <td>Default</td>
  861.     <td>"default"</td>
  862.   </tr>
  863.   <tr>
  864.     <td></td>
  865.     <td>Description</td>
  866.     <td>Server to use for PulseAudio driver output</td>
  867.   </tr>
  868. </table>
  869. section UsingSynth Using the synthesizer without an audio driver
  870. It is possible to use the synthesizer object without creating an audio driver. This is desirable if the application using FluidSynth manages the audio output itself. The synthesizer has several API functions that can be used to obtain the audio output: 
  871. fluid_synth_write_s16() fills two buffers (left and right channel) with samples coded as signed 16 bits (the endian-ness is machine dependent). fluid_synth_write_float() fills a left and right audio buffer with 32 bits floating point samples. For multi channel audio output, the function fluid_synth_nwrite_float() has to be used.
  872. The function fluid_synth_process() is still experimental and its use is therefore not recommended but it will probably become the generic interface in future versions. 
  873. section LoadingSoundfonts Loading and managing SoundFonts
  874. Before any sound can be produced, the synthesizer needs a SoundFont.
  875. SoundFonts are loaded with the fluid_synth_sfload() function. The function takes the path to a SoundFont file and a boolean to indicate whether the presets of the MIDI channels should be updated after the SoundFont is loaded. When the boolean value is TRUE, all MIDI channel bank and program numbers will be refreshed, which may cause new instruments to be selected from the newly loaded SoundFont.
  876. The synthesizer can load any number of SoundFonts. The loaded SoundFonts are treated as a stack, where each new loaded SoundFont is placed at the top of the stack. When selecting presets by bank and program numbers, SoundFonts are searched beginning at the top of the stack. In the case where there are presets in different SoundFonts with identical bank and program numbers, the preset from the most recently loaded SoundFont is used. The fluid_synth_program_select() can be used for unambiguously selecting a preset or bank offsets could be applied to each SoundFont with fluid_synth_set_bank_offset(), to try and ensure that each preset has unique bank and program numbers.
  877. The fluid_synth_sfload() function returns the unique identifier of the loaded SoundFont, or -1 in case of an error. This identifier is used in subsequent management functions: fluid_synth_sfunload() removes the SoundFont, fluid_synth_sfreload() reloads the SoundFont. When a SoundFont is reloaded, it retains it's ID and position on the SoundFont stack.
  878. Additional API functions are provided to get the number of loaded SoundFonts and to get a pointer to the SoundFont. 
  879. section SendingMIDI Sending MIDI Events
  880. Once the synthesizer is up and running and a SoundFont is loaded, most people will want to do something useful with it. Make noise, for example. MIDI messages can be sent using the fluid_synth_noteon(), fluid_synth_noteoff(), fluid_synth_cc(), fluid_synth_pitch_bend(), fluid_synth_pitch_wheel_sens(), and fluid_synth_program_change() functions. For convenience, there's also a fluid_synth_bank_select() function (the bank select message is normally sent using a control change message). 
  881. The following example show a generic graphical button that plays a note when clicked: 
  882. code
  883. class SoundButton : public SomeButton
  884. {
  885. public:
  886.     SoundButton() : SomeButton() {
  887.         if (!_synth) {
  888.             initSynth();
  889.         }
  890.     }
  891.     static void initSynth() {
  892.         _settings = new_fluid_settings();
  893.         _synth = new_fluid_synth(_settings);
  894.         _adriver = new_fluid_audio_driver(_settings, _synth);
  895.     }
  896.     /* ... */
  897.     virtual int handleMouseDown(int x, int y) {
  898.         /* Play a note on key 60 with velocity 100 on MIDI channel 0 */
  899.         fluid_synth_noteon(_synth, 0, 60, 100);
  900.     }
  901.     virtual int handleMouseUp(int x, int y) {
  902.         /* Release the note on key 60 */
  903.         fluid_synth_noteoff(_synth, 0, 60);
  904.     }
  905. protected:
  906.     static fluid_settings_t* _settings;
  907.     static fluid_synth_t* _synth;
  908.     static fluid_audio_driver_t* _adriver;
  909. };
  910. endcode
  911. section RealtimeMIDI Creating a Real-time MIDI Driver
  912. FluidSynth can process real-time MIDI events received from hardware MIDI ports or other applications. To do so, the client must create a MIDI input driver. It is a very similar process to the creation of the audio driver: you initialize some properties in a settings instance and call the new_fluid_midi_driver() function providing a callback function that will be invoked when a MIDI event is received. The following MIDI drivers are currently supported:
  913. - jack: JACK Audio Connection Kit MIDI driver (Linux, Mac OS X)
  914. - oss: Open Sound System raw MIDI (Linux, Unix)
  915. - alsa_raw: ALSA raw MIDI interface (Linux)
  916. - alsa_seq: ALSA sequencer MIDI interface (Linux)
  917. - winmidi: Microsoft Windows MM System (Windows)
  918. - midishare: MIDI Share (Linux, Mac OS X)
  919. - coremidi: Apple CoreMIDI (Mac OS X)
  920. code
  921. #include <fluidsynth.h>
  922. int handle_midi_event(void* data, fluid_midi_event_t* event)
  923. {
  924.     printf("event type: %dn", fluid_midi_event_get_type(event));
  925. }
  926. int main(int argc, char** argv)
  927. {
  928.     fluid_settings_t* settings;
  929.     fluid_midi_driver_t* mdriver;
  930.     settings = new_fluid_settings();
  931.     mdriver = new_fluid_midi_driver(settings, handle_midi_event, NULL);
  932.     /* ... */    
  933.     delete_fluid_midi_driver(mdriver);
  934.     return 0;
  935. }
  936. endcode
  937. There are a number of general MIDI driver settings. The midi.driver setting
  938. defines the MIDI subsystem that will be used. There are additional settings for
  939. the MIDI subsystems used, which are described in a following table. 
  940. <table border="1" cellspacing="0">
  941.   <caption>Table 4. General MIDI driver settings</caption>
  942.   <tr>
  943.     <td>midi.driver</td>
  944.     <td>Type</td>
  945.     <td>string</td>
  946.   </tr>
  947.   <tr>
  948.     <td></td>
  949.     <td>Default</td>
  950.     <td>alsa_seq (Linux), winmidi (Windows), jack (Mac OS X)</td>
  951.   </tr>
  952.   <tr>
  953.     <td></td>
  954.     <td>Options</td>
  955.     <td>alsa_raw, alsa_seq, coremidi, jack, midishare, oss, winmidi</td>
  956.   </tr>
  957.   <tr>
  958.     <td></td>
  959.     <td>Description</td>
  960.     <td>The MIDI system to be used.</td>
  961.   </tr>
  962.   <tr>
  963.     <td>midi.realtime-prio</td>
  964.     <td>Type</td>
  965.     <td>integer</td>
  966.   </tr>
  967.   <tr>
  968.     <td></td>
  969.     <td>Default</td>
  970.     <td>50</td>
  971.   </tr>
  972.   <tr>
  973.     <td></td>
  974.     <td>Min-Max</td>
  975.     <td>0-99</td>
  976.   </tr>
  977.   <tr>
  978.     <td></td>
  979.     <td>Description</td>
  980.     <td>Sets the realtime scheduling priority of the MIDI thread
  981.     (0 disables high priority scheduling).  Linux is the only platform which
  982.     currently makes use of different priority levels.  Drivers which use this
  983.     option: alsa_raw, alsa_seq, oss</td>
  984.   </tr>
  985. </table>
  986. The following table defines MIDI driver specific settings.
  987. <table border="1" cellspacing="0">
  988.   <caption>Table 5. MIDI driver specific settings</caption>
  989.   <tr>
  990.     <td>midi.alsa.device</td>
  991.     <td>Type</td>
  992.     <td>string</td>
  993.   </tr>
  994.   <tr>
  995.     <td></td>
  996.     <td>Default</td>
  997.     <td>"default"</td>
  998.   </tr>
  999.   <tr>
  1000.     <td></td>
  1001.     <td>Description</td>
  1002.     <td>ALSA MIDI device to use for RAW ALSA MIDI driver.</td>
  1003.   </tr>
  1004.   <tr>
  1005.     <td>midi.alsa_seq.device</td>
  1006.     <td>Type</td>
  1007.     <td>string</td>
  1008.   </tr>
  1009.   <tr>
  1010.     <td></td>
  1011.     <td>Default</td>
  1012.     <td>"default"</td>
  1013.   </tr>
  1014.   <tr>
  1015.     <td></td>
  1016.     <td>Description</td>
  1017.     <td>ALSA sequencer device to use for ALSA sequencer driver.</td>
  1018.   </tr>
  1019.   <tr>
  1020.     <td>midi.alsa_seq.id</td>
  1021.     <td>Type</td>
  1022.     <td>string</td>
  1023.   </tr>
  1024.   <tr>
  1025.     <td></td>
  1026.     <td>Default</td>
  1027.     <td>pid</td>
  1028.   </tr>
  1029.   <tr>
  1030.     <td></td>
  1031.     <td>Description</td>
  1032.     <td>ID to use when registering ports with the ALSA sequencer driver. If
  1033.     set to "pid" then the ID will be "FLUID Synth (PID)", where PID is the
  1034.     FluidSynth process ID of the audio thread otherwise the provided string
  1035.     will be used in place of PID.</td>
  1036.   </tr>
  1037.   <tr>
  1038.     <td>midi.jack.id</td>
  1039.     <td>Type</td>
  1040.     <td>string</td>
  1041.   </tr>
  1042.   <tr>
  1043.     <td></td>
  1044.     <td>Default</td>
  1045.     <td>fluidsynth-midi</td>
  1046.   </tr>
  1047.   <tr>
  1048.     <td></td>
  1049.     <td>Description</td>
  1050.     <td>Client ID to use with the Jack MIDI driver.</td>
  1051.   </tr>
  1052.   <tr>
  1053.     <td>midi.jack.server</td>
  1054.     <td>Type</td>
  1055.     <td>string</td>
  1056.   </tr>
  1057.   <tr>
  1058.     <td></td>
  1059.     <td>Default</td>
  1060.     <td></td>
  1061.   </tr>
  1062.   <tr>
  1063.     <td></td>
  1064.     <td>Description</td>
  1065.     <td>Jack server to connect to for Jack MIDI driver. If an empty string then
  1066.     the default server will be used.</td>
  1067.   </tr>
  1068.   <tr>
  1069.     <td>midi.oss.device</td>
  1070.     <td>Type</td>
  1071.     <td>string</td>
  1072.   </tr>
  1073.   <tr>
  1074.     <td></td>
  1075.     <td>Default</td>
  1076.     <td>/dev/midi</td>
  1077.   </tr>
  1078.   <tr>
  1079.     <td></td>
  1080.     <td>Description</td>
  1081.     <td>Device to use for OSS MIDI driver.</td>
  1082.   </tr>
  1083.   <tr>
  1084.     <td>midi.portname</td>
  1085.     <td>Type</td>
  1086.     <td>string</td>
  1087.   </tr>
  1088.   <tr>
  1089.     <td></td>
  1090.     <td>Default</td>
  1091.     <td></td>
  1092.   </tr>
  1093.   <tr>
  1094.     <td></td>
  1095.     <td>Description</td>
  1096.     <td>Used by coremidi and alsa_seq drivers for the portnames registered with
  1097.     the MIDI subsystem.</td>
  1098.   </tr>
  1099. </table>
  1100. section MIDIPlayer Loading and Playing a MIDI file
  1101. FluidSynth can be used to play MIDI files, using the MIDI File Player interface. It follows a high level implementation, though its implementation is currently incomplete. After initializing the synthesizer, create the player passing the synth instance to new_fluid_player(). Then, you can add some SMF file names to the player using fluid_player_add(), and finally call fluid_player_play() to start the playback. You can check if the player has finished by calling fluid_player_get_status(), or wait for the player to terminate using fluid_player_join().
  1102. code
  1103. #include <fluidsynth.h>
  1104. int main(int argc, char** argv) 
  1105. {
  1106.     int i;
  1107.     fluid_settings_t* settings;
  1108.     fluid_synth_t* synth;
  1109.     fluid_player_t* player;
  1110.     fluid_audio_driver_t* adriver;
  1111.     settings = new_fluid_settings();
  1112.     synth = new_fluid_synth(settings);
  1113.     player = new_fluid_player(synth);
  1114.     adriver = new_fluid_audio_driver(settings, synth);
  1115.     /* process command line arguments */
  1116.     for (i = 1; i < argc; i++) {
  1117.         if (fluid_is_soundfont(argv[i])) {
  1118.            fluid_synth_sfload(synth, argv[1], 1);
  1119.         }
  1120.         if (fluid_is_midifile(argv[i])) {
  1121.             fluid_player_add(player, argv[i]);
  1122.         }
  1123.     }
  1124.     /* play the midi files, if any */
  1125.     fluid_player_play(player);
  1126.     /* wait for playback termination */
  1127.     fluid_player_join(player);
  1128.     /* cleanup */
  1129.     delete_fluid_audio_driver(adriver);
  1130.     delete_fluid_player(player);
  1131.     delete_fluid_synth(synth);
  1132.     delete_fluid_settings(settings);
  1133.     return 0;
  1134. }
  1135. endcode
  1136. Settings which the MIDI player uses are documented below.
  1137. <table border="1" cellspacing="0">
  1138.   <caption>Table 6. General MIDI driver settings</caption>
  1139.   <tr>
  1140.     <td>player.reset-synth</td>
  1141.     <td>type</td>
  1142.     <td>boolean</td>
  1143.   </tr>
  1144.   <tr>
  1145.     <td></td>
  1146.     <td>default</td>
  1147.     <td>1 (TRUE)</td>
  1148.   </tr>
  1149.   <tr>
  1150.     <td></td>
  1151.     <td>description</td>
  1152.     <td>If true, reset the synth before starting a new MIDI song, so the state of a previous song can't affect the new song. Turn it off for seamless looping of a song.</td>
  1153.   </tr>
  1154.   <tr>
  1155.     <td>player.timing-source</td>
  1156.     <td>type</td>
  1157.     <td>string</td>
  1158.   </tr>
  1159.   <tr>
  1160.     <td></td>
  1161.     <td>default</td>
  1162.     <td>'sample'</td>
  1163.   </tr>
  1164.   <tr>
  1165.     <td></td>
  1166.     <td>options</td>
  1167.     <td>'sample', 'system'</td>
  1168.   </tr>
  1169.   <tr>
  1170.     <td></td>
  1171.     <td>description</td>
  1172.     <td>Determines the timing source of the player sequencer. 'sample' uses
  1173.     the sample clock (how much audio has been output) to sequence events,
  1174.     in which case audio is synchronized with MIDI events. 'system' uses the
  1175.     system clock, audio and MIDI are not synchronized exactly.</td>
  1176.   </tr>
  1177. </table>
  1178. section MIDIRouter Real-time MIDI router
  1179. The MIDI router is one more processing layer directly behind the MIDI input. It processes incoming MIDI events and generates control events for the synth. It can be used to filter or modify events prior to sending them to the synthesizer. When created, the MIDI router is transparent and simply passes all MIDI events. Router "rules" must be added to actually make use of its capabilities.
  1180. Some examples of MIDI router usage:
  1181. - Filter messages (Example: Pass sustain pedal CCs only to selected channels)
  1182. - Split the keyboard (Example: noteon with notenr < x: to ch 1, >x to ch 2)
  1183. - Layer sounds (Example: for each noteon received on ch 1, create a noteon on ch1, ch2, ch3,...)
  1184. - Velocity scaling (Example: for each noteon event, scale the velocity by 1.27)
  1185. - Velocity switching (Example: v <= 100: "Angel Choir"; v > 100: "Hell's Bells")
  1186. - Get rid of aftertouch
  1187. The MIDI driver API has a clean separation between the midi thread and the synthesizer. That opens the door to add a midi router module.
  1188. MIDI events coming from the MIDI player do not pass through the MIDI router.
  1189. code
  1190. #include <fluidsynth.h>
  1191. int main(int argc, char** argv) 
  1192. {
  1193.     fluid_settings_t* settings;
  1194.     fluid_synth_t* synth;
  1195.     fluid_midi_router_t* router;
  1196.     fluid_midi_router_rule_t* rule;
  1197.     settings = new_fluid_settings();
  1198.     synth = new_fluid_synth(settings);
  1199.     /* Create the MIDI router and pass events to the synthesizer */
  1200.     router = new_fluid_midi_router (settings, fluid_synth_handle_midi_event, synth);
  1201.     /* Clear default rules */
  1202.     fluid_midi_router_clear_rules (router);
  1203.     /* Add rule to map all notes < MIDI note #60 on any channel to channel 4 */
  1204.     rule = new_fluid_midi_router_rule ();
  1205.     fluid_midi_router_rule_set_chan (rule, 0, 15, 0.0, 4); /* Map all to channel 4 */
  1206.     fluid_midi_router_rule_set_param1 (rule, 0, 59, 1.0, 0); /* Match notes < 60 */
  1207.     fluid_midi_router_add_rule (router, rule, FLUID_MIDI_ROUTER_RULE_NOTE);
  1208.     /* Add rule to map all notes >= MIDI note #60 on any channel to channel 5 */
  1209.     rule = new_fluid_midi_router_rule ();
  1210.     fluid_midi_router_rule_set_chan (rule, 0, 15, 0.0, 5); /* Map all to channel 5 */
  1211.     fluid_midi_router_rule_set_param1 (rule, 60, 127, 1.0, 0); /* Match notes >= 60 */
  1212.     fluid_midi_router_add_rule (router, rule, FLUID_MIDI_ROUTER_RULE_NOTE);
  1213.     /* Add rule to reverse direction of pitch bender on channel 7 */
  1214.     rule = new_fluid_midi_router_rule ();
  1215.     fluid_midi_router_rule_set_chan (rule, 7, 7, 1.0, 0);       /* Match channel 7 only */
  1216.     fluid_midi_router_rule_set_param1 (rule, 0, 16383, -1.0, 16383);  /* Reverse pitch bender */
  1217.     fluid_midi_router_add_rule (router, rule, FLUID_MIDI_ROUTER_RULE_PITCH_BEND);
  1218.     /* ... Create audio driver, process events, etc ... */
  1219.     /* cleanup */
  1220.     delete_fluid_midi_router(router);
  1221.     delete_fluid_synth(synth);
  1222.     delete_fluid_settings(settings);
  1223.     return 0;
  1224. }
  1225. endcode
  1226. section Sequencer
  1227. FluidSynth's sequencer can be used to play MIDI events in a more flexible way than using the MIDI file player, which expects the events to be stored as Standard MIDI Files. Using the sequencer, you can provide the events one by one, with an optional timestamp for scheduling. 
  1228. The client program should first initialize the sequencer instance using the function new_fluid_sequencer2(). There is a complementary function delete_fluid_sequencer() to delete it. After creating the sequencer instance, the destinations can be registered using fluid_sequencer_register_fluidsynth() for the synthesizer destination, and optionally using fluid_sequencer_register_client() for the client destination providing a suitable callback function. It can be unregistered using fluid_sequencer_unregister_client(). After the initialization, events can be sent with fluid_sequencer_send_now() and scheduled to the future with fluid_sequencer_send_at(). The registration functions return identifiers, that can be used as destinations of an event using fluid_event_set_dest().
  1229. The function fluid_sequencer_get_tick() returns the current playing position. A program may choose a new timescale in milliseconds using fluid_sequencer_set_time_scale().
  1230. The following example uses the fluidsynth sequencer to implement a sort of music box. FluidSynth internal clock is used to schedule repetitive sequences of notes. The next sequence is scheduled on advance before the end of the current one, using a timer event that triggers a callback function. The scheduling times are always absolute values, to avoid slippage.
  1231. code
  1232. #include "fluidsynth.h"
  1233. fluid_synth_t* synth;
  1234. fluid_audio_driver_t* adriver;
  1235. fluid_sequencer_t* sequencer;
  1236. short synthSeqID, mySeqID;
  1237. unsigned int now;
  1238. unsigned int seqduration;
  1239. // prototype
  1240. void seq_callback(unsigned int time, fluid_event_t* event, fluid_sequencer_t* seq, void* data);
  1241. void createsynth() 
  1242. {
  1243.     fluid_settings_t* settings;
  1244.     settings = new_fluid_settings();
  1245.     fluid_settings_setstr(settings, "synth.reverb.active", "yes");
  1246.     fluid_settings_setstr(settings, "synth.chorus.active", "no");
  1247.     synth = new_fluid_synth(settings);
  1248.     adriver = new_fluid_audio_driver(settings, synth);
  1249.     sequencer = new_fluid_sequencer2(0);
  1250.     // register synth as first destination
  1251.     synthSeqID = fluid_sequencer_register_fluidsynth(sequencer, synth);
  1252.     // register myself as second destination
  1253.     mySeqID = fluid_sequencer_register_client(sequencer, "me", seq_callback, NULL);
  1254.     // the sequence duration, in ms
  1255.     seqduration = 1000;
  1256. }
  1257. void deletesynth() 
  1258. {
  1259.     delete_fluid_sequencer(sequencer);
  1260.     delete_fluid_audio_driver(adriver);
  1261.     delete_fluid_synth(synth);
  1262. }
  1263. void loadsoundfont() 
  1264. {
  1265.     int fluid_res;
  1266.     // put your own path here
  1267.     fluid_res = fluid_synth_sfload(synth, "Inside:VintageDreamsWaves-v2.sf2", 1);
  1268. }
  1269. void sendnoteon(int chan, short key, unsigned int date) 
  1270. {
  1271.     int fluid_res;
  1272.     fluid_event_t *evt = new_fluid_event();
  1273.     fluid_event_set_source(evt, -1);
  1274.     fluid_event_set_dest(evt, synthSeqID);
  1275.     fluid_event_noteon(evt, chan, key, 127);
  1276.     fluid_res = fluid_sequencer_send_at(sequencer, evt, date, 1);
  1277.     delete_fluid_event(evt);
  1278. }
  1279. void schedule_next_callback() 
  1280. {
  1281.     int fluid_res;
  1282.     // I want to be called back before the end of the next sequence
  1283.     unsigned int callbackdate = now + seqduration/2;
  1284.     fluid_event_t *evt = new_fluid_event();
  1285.     fluid_event_set_source(evt, -1);
  1286.     fluid_event_set_dest(evt, mySeqID);
  1287.     fluid_event_timer(evt, NULL);
  1288.     fluid_res = fluid_sequencer_send_at(sequencer, evt, callbackdate, 1);
  1289.     delete_fluid_event(evt);
  1290. }
  1291. void schedule_next_sequence() {
  1292.     // Called more or less before each sequence start
  1293.     // the next sequence start date
  1294.     now = now + seqduration;
  1295.     // the sequence to play
  1296.     // the beat : 2 beats per sequence
  1297.     sendnoteon(0, 60, now + seqduration/2);
  1298.     sendnoteon(0, 60, now + seqduration);
  1299.     // melody
  1300.     sendnoteon(1, 45, now + seqduration/10);
  1301.     sendnoteon(1, 50, now + 4*seqduration/10);
  1302.     sendnoteon(1, 55, now + 8*seqduration/10);
  1303.     // so that we are called back early enough to schedule the next sequence
  1304.     schedule_next_callback();
  1305. }
  1306. /* sequencer callback */
  1307. void seq_callback(unsigned int time, fluid_event_t* event, fluid_sequencer_t* seq, void* data) {
  1308.     schedule_next_sequence();
  1309. }
  1310. int main(void) {
  1311.     createsynth();
  1312.     loadsoundfont();
  1313.     // initialize our absolute date
  1314.     now = fluid_sequencer_get_tick(sequencer);
  1315.     schedule_next_sequence();
  1316.     sleep(100000);
  1317.     deletesynth();
  1318.     return 0;
  1319. }
  1320. endcode
  1321. section Shell Shell interface
  1322. The shell interface allows you to send simple textual commands to the synthesizer, to parse a command file, or to read commands from the stdin or other input streams. To find the list of currently supported commands, please check the fluid_cmd.c file or type "help" in the fluidsynth command line shell.
  1323. <table border="1" cellspacing="0">
  1324.   <caption>Table 7. General MIDI driver settings</caption>
  1325.   <tr>
  1326.     <td>shell.prompt</td>
  1327.     <td>type</td>
  1328.     <td>string</td>
  1329.   </tr>
  1330.   <tr>
  1331.     <td></td>
  1332.     <td>default</td>
  1333.     <td>""</td>
  1334.   </tr>
  1335.   <tr>
  1336.     <td></td>
  1337.     <td>description</td>
  1338.     <td>In dump mode we set the prompt to "". the ui cannot easily
  1339.     handle lines, which don't end with cr. changing the prompt
  1340.     cannot be done through a command, because the current shell
  1341.     does not handle empty arguments.</td>
  1342.   </tr>
  1343.   <tr>
  1344.     <td>shell.port</td>
  1345.     <td>type</td>
  1346.     <td>number</td>
  1347.   </tr>
  1348.   <tr>
  1349.     <td></td>
  1350.     <td>default</td>
  1351.     <td>9800</td>
  1352.   </tr>
  1353.   <tr>
  1354.     <td></td>
  1355.     <td>min-max</td>
  1356.     <td>1-65535</td>
  1357.   </tr>
  1358.   <tr>
  1359.     <td></td>
  1360.     <td>description</td>
  1361.     <td>The shell can be used in a client/server mode. This setting
  1362.     controls what TCP/IP port the server uses.</td>
  1363.   </tr>
  1364. </table>
  1365. section Advanced Advanced features, not yet documented.  API reference may contain more info.
  1366. - Accessing low-level voice parameters
  1367. - Reverb settings
  1368. - Chorus settings
  1369. - Interpolation settings (set_gen, get_gen, NRPN)
  1370. - LADSPA effects unit
  1371. - Multi-channel audio
  1372. - MIDI tunings
  1373. - Fast file renderer for rendering audio to file in non-realtime
  1374. */
  1375. /*!
  1376. example example.c
  1377. Example producing short random music with FluidSynth
  1378. */
  1379. /*!
  1380. example fluidsynth_simple.c
  1381. A basic example of using fluidsynth to play a single note
  1382. */
  1383. /*!
  1384. example fluidsynth_fx.c
  1385. Example of using effects with fluidsynth
  1386. */
  1387. /*!
  1388. example fluidsynth_metronome.c
  1389. Example of a simple metronome using the MIDI sequencer API 
  1390. */
  1391. /*!
  1392. example fluidsynth_arpeggio.c
  1393. Example of an arpeggio generated using the MIDI sequencer API
  1394. */