2016-08-23 12:50:54 -04:00
|
|
|
/* FluidSynth - A Software Synthesizer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2003 Peter Hanappe and others.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2018-10-17 18:41:02 -04:00
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2.1 of
|
2016-08-23 12:50:54 -04:00
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2018-10-17 18:41:02 -04:00
|
|
|
* Lesser General Public License for more details.
|
2016-08-23 12:50:54 -04:00
|
|
|
*
|
2018-10-17 18:41:02 -04:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2016-08-23 12:50:54 -04:00
|
|
|
* License along with this library; if not, write to the Free
|
|
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _FLUID_SYNTH_H
|
|
|
|
#define _FLUID_SYNTH_H
|
|
|
|
|
|
|
|
|
|
|
|
/***************************************************************
|
|
|
|
*
|
|
|
|
* INCLUDES
|
|
|
|
*/
|
|
|
|
|
2018-10-17 18:41:02 -04:00
|
|
|
#include "fluid_sys.h"
|
2016-08-23 12:50:54 -04:00
|
|
|
#include "fluid_list.h"
|
|
|
|
#include "fluid_rev.h"
|
|
|
|
#include "fluid_voice.h"
|
|
|
|
#include "fluid_chorus.h"
|
|
|
|
#include "fluid_rvoice_event.h"
|
|
|
|
|
|
|
|
/***************************************************************
|
|
|
|
*
|
|
|
|
* DEFINES
|
|
|
|
*/
|
|
|
|
#define FLUID_NUM_PROGRAMS 128
|
|
|
|
#define DRUM_INST_BANK 128
|
|
|
|
|
|
|
|
#define FLUID_UNSET_PROGRAM 128 /* Program number used to unset a preset */
|
|
|
|
|
2018-10-17 18:41:02 -04:00
|
|
|
#define FLUID_REVERB_DEFAULT_ROOMSIZE 0.2f /**< Default reverb room size */
|
|
|
|
#define FLUID_REVERB_DEFAULT_DAMP 0.0f /**< Default reverb damping */
|
|
|
|
#define FLUID_REVERB_DEFAULT_WIDTH 0.5f /**< Default reverb width */
|
|
|
|
#define FLUID_REVERB_DEFAULT_LEVEL 0.9f /**< Default reverb level */
|
2016-08-23 12:50:54 -04:00
|
|
|
|
2018-10-17 18:41:02 -04:00
|
|
|
#define FLUID_CHORUS_DEFAULT_N 3 /**< Default chorus voice count */
|
|
|
|
#define FLUID_CHORUS_DEFAULT_LEVEL 2.0f /**< Default chorus level */
|
|
|
|
#define FLUID_CHORUS_DEFAULT_SPEED 0.3f /**< Default chorus speed */
|
|
|
|
#define FLUID_CHORUS_DEFAULT_DEPTH 8.0f /**< Default chorus depth */
|
|
|
|
#define FLUID_CHORUS_DEFAULT_TYPE FLUID_CHORUS_MOD_SINE /**< Default chorus waveform type */
|
2016-08-23 12:50:54 -04:00
|
|
|
|
|
|
|
/***************************************************************
|
|
|
|
*
|
|
|
|
* ENUM
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bank Select MIDI message styles. Default style is GS.
|
|
|
|
*/
|
|
|
|
enum fluid_midi_bank_select
|
|
|
|
{
|
|
|
|
FLUID_BANK_STYLE_GM, /**< GM style, bank = 0 always (CC0/MSB and CC32/LSB ignored) */
|
|
|
|
FLUID_BANK_STYLE_GS, /**< GS style, bank = CC0/MSB (CC32/LSB ignored) */
|
|
|
|
FLUID_BANK_STYLE_XG, /**< XG style, bank = CC32/LSB (CC0/MSB ignored) */
|
|
|
|
FLUID_BANK_STYLE_MMA /**< MMA style bank = 128*MSB+LSB */
|
|
|
|
};
|
|
|
|
|
|
|
|
enum fluid_synth_status
|
|
|
|
{
|
2018-10-17 18:41:02 -04:00
|
|
|
FLUID_SYNTH_CLEAN,
|
|
|
|
FLUID_SYNTH_PLAYING,
|
|
|
|
FLUID_SYNTH_QUIET,
|
|
|
|
FLUID_SYNTH_STOPPED
|
2016-08-23 12:50:54 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#define SYNTH_REVERB_CHANNEL 0
|
|
|
|
#define SYNTH_CHORUS_CHANNEL 1
|
|
|
|
|
|
|
|
/*
|
|
|
|
* fluid_synth_t
|
|
|
|
*
|
|
|
|
* Mutual exclusion notes (as of 1.1.2):
|
|
|
|
*
|
|
|
|
* All variables are considered belongning to the "public API" thread,
|
|
|
|
* which processes all MIDI, except for:
|
|
|
|
*
|
|
|
|
* ticks_since_start - atomic, set by rendering thread only
|
|
|
|
* cpu_load - atomic, set by rendering thread only
|
|
|
|
* cur, curmax, dither_index - used by rendering thread only
|
2018-10-17 18:41:02 -04:00
|
|
|
* ladspa_fx - same instance copied in rendering thread. Synchronising handled internally.
|
2016-08-23 12:50:54 -04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct _fluid_synth_t
|
|
|
|
{
|
2018-10-17 18:41:02 -04:00
|
|
|
fluid_rec_mutex_t mutex; /**< Lock for public API */
|
|
|
|
int use_mutex; /**< Use mutex for all public API functions? */
|
|
|
|
int public_api_count; /**< How many times the mutex is currently locked */
|
|
|
|
|
|
|
|
fluid_settings_t *settings; /**< the synthesizer settings */
|
|
|
|
int device_id; /**< Device ID used for SYSEX messages */
|
|
|
|
int polyphony; /**< Maximum polyphony */
|
|
|
|
int with_reverb; /**< Should the synth use the built-in reverb unit? */
|
|
|
|
int with_chorus; /**< Should the synth use the built-in chorus unit? */
|
|
|
|
int verbose; /**< Turn verbose mode on? */
|
|
|
|
double sample_rate; /**< The sample rate */
|
|
|
|
int midi_channels; /**< the number of MIDI channels (>= 16) */
|
|
|
|
int bank_select; /**< the style of Bank Select MIDI messages */
|
|
|
|
int audio_channels; /**< the number of audio channels (1 channel=left+right) */
|
|
|
|
int audio_groups; /**< the number of (stereo) 'sub'groups from the synth.
|
2016-08-23 12:50:54 -04:00
|
|
|
Typically equal to audio_channels. */
|
2018-10-17 18:41:02 -04:00
|
|
|
int effects_channels; /**< the number of effects channels (>= 2) */
|
|
|
|
int effects_groups; /**< the number of effects units (>= 1) */
|
|
|
|
int state; /**< the synthesizer state */
|
|
|
|
fluid_atomic_uint_t ticks_since_start; /**< the number of audio samples since the start */
|
|
|
|
unsigned int start; /**< the start in msec, as returned by system clock */
|
|
|
|
fluid_overflow_prio_t overflow; /**< parameters for overflow priority (aka voice-stealing) */
|
|
|
|
|
|
|
|
fluid_list_t *loaders; /**< the SoundFont loaders */
|
|
|
|
fluid_list_t *sfont; /**< List of fluid_sfont_info_t for each loaded SoundFont (remains until SoundFont is unloaded) */
|
|
|
|
int sfont_id; /**< Incrementing ID assigned to each loaded SoundFont */
|
2021-04-18 15:25:20 -04:00
|
|
|
fluid_list_t *fonts_to_be_unloaded; /**< list of timers that try to unload a soundfont */
|
2018-10-17 18:41:02 -04:00
|
|
|
|
|
|
|
float gain; /**< master gain */
|
|
|
|
fluid_channel_t **channel; /**< the channels */
|
|
|
|
int nvoice; /**< the length of the synthesis process array (max polyphony allowed) */
|
|
|
|
fluid_voice_t **voice; /**< the synthesis voices */
|
|
|
|
int active_voice_count; /**< count of active voices */
|
|
|
|
unsigned int noteid; /**< the id is incremented for every new note. it's used for noteoff's */
|
|
|
|
unsigned int storeid;
|
|
|
|
int fromkey_portamento; /**< fromkey portamento */
|
|
|
|
fluid_rvoice_eventhandler_t *eventhandler;
|
|
|
|
|
2021-04-18 15:25:20 -04:00
|
|
|
/**< Shadow of reverb parameter: roomsize, damping, width, level */
|
|
|
|
double reverb_param[FLUID_REVERB_PARAM_LAST];
|
2018-10-17 18:41:02 -04:00
|
|
|
|
2021-04-18 15:25:20 -04:00
|
|
|
/**< Shadow of chorus parameter: chorus number, level, speed, depth, type */
|
|
|
|
double chorus_param[FLUID_CHORUS_PARAM_LAST];
|
2018-10-17 18:41:02 -04:00
|
|
|
|
|
|
|
int cur; /**< the current sample in the audio buffers to be output */
|
|
|
|
int curmax; /**< current amount of samples present in the audio buffers */
|
|
|
|
int dither_index; /**< current index in random dither value buffer: fluid_synth_(write_s16|dither_s16) */
|
|
|
|
|
|
|
|
fluid_atomic_float_t cpu_load; /**< CPU load in percent (CPU time required / audio synthesized time * 100) */
|
|
|
|
|
|
|
|
fluid_tuning_t ***tuning; /**< 128 banks of 128 programs for the tunings */
|
|
|
|
fluid_private_t tuning_iter; /**< Tuning iterators per each thread */
|
|
|
|
|
|
|
|
fluid_sample_timer_t *sample_timers; /**< List of timers triggered before a block is processed */
|
|
|
|
unsigned int min_note_length_ticks; /**< If note-offs are triggered just after a note-on, they will be delayed */
|
|
|
|
|
|
|
|
int cores; /**< Number of CPU cores (1 by default) */
|
|
|
|
|
|
|
|
fluid_mod_t *default_mod; /**< the (dynamic) list of default modulators */
|
2016-08-23 12:50:54 -04:00
|
|
|
|
|
|
|
#ifdef LADSPA
|
2018-10-17 18:41:02 -04:00
|
|
|
fluid_ladspa_fx_t *ladspa_fx; /**< Effects unit for LADSPA support */
|
2016-08-23 12:50:54 -04:00
|
|
|
#endif
|
2018-10-17 18:41:02 -04:00
|
|
|
enum fluid_iir_filter_type custom_filter_type; /**< filter type of the user-defined filter currently used for all voices */
|
|
|
|
enum fluid_iir_filter_flags custom_filter_flags; /**< filter type of the user-defined filter currently used for all voices */
|
2016-08-23 12:50:54 -04:00
|
|
|
};
|
|
|
|
|
2018-10-17 18:41:02 -04:00
|
|
|
/**
|
|
|
|
* Type definition of the synthesizer's audio callback function.
|
|
|
|
* @param synth FluidSynth instance
|
|
|
|
* @param len Count of audio frames to synthesize
|
|
|
|
* @param out1 Array to store left channel of audio to
|
|
|
|
* @param loff Offset index in 'out1' for first sample
|
|
|
|
* @param lincr Increment between samples stored to 'out1'
|
|
|
|
* @param out2 Array to store right channel of audio to
|
|
|
|
* @param roff Offset index in 'out2' for first sample
|
|
|
|
* @param rincr Increment between samples stored to 'out2'
|
|
|
|
*/
|
|
|
|
typedef int (*fluid_audio_callback_t)(fluid_synth_t *synth, int len,
|
|
|
|
void *out1, int loff, int lincr,
|
|
|
|
void *out2, int roff, int rincr);
|
|
|
|
|
2021-04-18 15:25:20 -04:00
|
|
|
typedef int (*fluid_audio_channels_callback_t)(fluid_synth_t *synth, int len,
|
|
|
|
int channels_count,
|
|
|
|
void *channels_out[], int channels_off[],
|
|
|
|
int channels_incr[]);
|
|
|
|
|
|
|
|
int
|
|
|
|
fluid_synth_write_float_channels_LOCAL(fluid_synth_t *synth, int len,
|
|
|
|
int channels_count,
|
|
|
|
void *channels_out[], int channels_off[],
|
|
|
|
int channels_incr[],
|
|
|
|
int (*block_render_func)(fluid_synth_t *, int));
|
|
|
|
|
|
|
|
int
|
|
|
|
fluid_synth_write_s16_channels(fluid_synth_t *synth, int len,
|
|
|
|
int channels_count,
|
|
|
|
void *channels_out[], int channels_off[],
|
|
|
|
int channels_incr[]);
|
|
|
|
int
|
|
|
|
fluid_synth_write_float_channels(fluid_synth_t *synth, int len,
|
|
|
|
int channels_count,
|
|
|
|
void *channels_out[], int channels_off[],
|
|
|
|
int channels_incr[]);
|
|
|
|
|
2018-10-17 18:41:02 -04:00
|
|
|
fluid_preset_t *fluid_synth_find_preset(fluid_synth_t *synth,
|
|
|
|
int banknum,
|
|
|
|
int prognum);
|
|
|
|
void fluid_synth_sfont_unref(fluid_synth_t *synth, fluid_sfont_t *sfont);
|
|
|
|
|
2018-11-23 08:36:52 -05:00
|
|
|
void fluid_synth_dither_s16(int *dither_index, int len, const float *lin, const float *rin,
|
2018-10-17 18:41:02 -04:00
|
|
|
void *lout, int loff, int lincr,
|
|
|
|
void *rout, int roff, int rincr);
|
|
|
|
|
|
|
|
int fluid_synth_reset_reverb(fluid_synth_t *synth);
|
|
|
|
int fluid_synth_set_reverb_preset(fluid_synth_t *synth, unsigned int num);
|
2021-04-18 15:25:20 -04:00
|
|
|
int fluid_synth_reverb_set_param(fluid_synth_t *synth, int fx_group,
|
|
|
|
int param,
|
|
|
|
double value);
|
|
|
|
int fluid_synth_set_reverb_full(fluid_synth_t *synth, int fx_group, int set,
|
|
|
|
const double values[]);
|
2016-08-23 12:50:54 -04:00
|
|
|
|
2018-10-17 18:41:02 -04:00
|
|
|
int fluid_synth_reset_chorus(fluid_synth_t *synth);
|
2021-04-18 15:25:20 -04:00
|
|
|
int fluid_synth_chorus_set_param(fluid_synth_t *synth, int fx_group,
|
|
|
|
int param, double value);
|
|
|
|
int fluid_synth_set_chorus_full(fluid_synth_t *synth, int fx_group, int set,
|
|
|
|
const double values[]);
|
2016-08-23 12:50:54 -04:00
|
|
|
|
2018-10-17 18:41:02 -04:00
|
|
|
fluid_sample_timer_t *new_fluid_sample_timer(fluid_synth_t *synth, fluid_timer_callback_t callback, void *data);
|
|
|
|
void delete_fluid_sample_timer(fluid_synth_t *synth, fluid_sample_timer_t *timer);
|
2019-09-03 22:22:24 -04:00
|
|
|
void fluid_sample_timer_reset(fluid_synth_t *synth, fluid_sample_timer_t *timer);
|
2016-08-23 12:50:54 -04:00
|
|
|
|
2018-10-17 18:41:02 -04:00
|
|
|
void fluid_synth_process_event_queue(fluid_synth_t *synth);
|
2016-08-23 12:50:54 -04:00
|
|
|
|
2019-04-19 09:25:47 -04:00
|
|
|
int fluid_synth_set_gen2(fluid_synth_t *synth, int chan,
|
|
|
|
int param, float value,
|
|
|
|
int absolute, int normalized);
|
|
|
|
|
|
|
|
int
|
|
|
|
fluid_synth_process_LOCAL(fluid_synth_t *synth, int len, int nfx, float *fx[],
|
2021-04-18 15:25:20 -04:00
|
|
|
int nout, float *out[], int (*block_render_func)(fluid_synth_t *, int));
|
2019-12-02 17:58:15 -05:00
|
|
|
int
|
|
|
|
fluid_synth_write_float_LOCAL(fluid_synth_t *synth, int len,
|
2021-04-18 15:25:20 -04:00
|
|
|
void *lout, int loff, int lincr,
|
|
|
|
void *rout, int roff, int rincr,
|
|
|
|
int (*block_render_func)(fluid_synth_t *, int));
|
2016-08-23 12:50:54 -04:00
|
|
|
/*
|
|
|
|
* misc
|
|
|
|
*/
|
2018-10-17 18:41:02 -04:00
|
|
|
void fluid_synth_settings(fluid_settings_t *settings);
|
2021-04-18 15:25:20 -04:00
|
|
|
void fluid_synth_set_sample_rate_immediately(fluid_synth_t *synth, float sample_rate);
|
2018-10-17 18:41:02 -04:00
|
|
|
|
|
|
|
|
|
|
|
/* extern declared in fluid_synth_monopoly.c */
|
|
|
|
|
|
|
|
int fluid_synth_noteon_mono_staccato(fluid_synth_t *synth, int chan, int key, int vel);
|
|
|
|
int fluid_synth_noteon_mono_LOCAL(fluid_synth_t *synth, int chan, int key, int vel);
|
|
|
|
int fluid_synth_noteoff_mono_LOCAL(fluid_synth_t *synth, int chan, int key);
|
|
|
|
int fluid_synth_noteon_monopoly_legato(fluid_synth_t *synth, int chan, int fromkey, int tokey, int vel);
|
|
|
|
int fluid_synth_noteoff_monopoly(fluid_synth_t *synth, int chan, int key, char Mono);
|
2016-08-23 12:50:54 -04:00
|
|
|
|
2018-10-17 18:41:02 -04:00
|
|
|
fluid_voice_t *
|
|
|
|
fluid_synth_alloc_voice_LOCAL(fluid_synth_t *synth, fluid_sample_t *sample, int chan, int key, int vel, fluid_zone_range_t *zone_range);
|
2016-08-23 12:50:54 -04:00
|
|
|
|
2018-10-17 18:41:02 -04:00
|
|
|
void fluid_synth_release_voice_on_same_note_LOCAL(fluid_synth_t *synth, int chan, int key);
|
2016-08-23 12:50:54 -04:00
|
|
|
#endif /* _FLUID_SYNTH_H */
|