2003-03-11 16:56:45 +00:00
|
|
|
/* FluidSynth - A Software Synthesizer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2003 Peter Hanappe and others.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2017-07-12 15:45:23 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
2017-07-12 15:53:03 +00:00
|
|
|
* as published by the Free Software Foundation; either version 2.1 of
|
2003-03-11 16:56:45 +00: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
|
2017-07-12 15:45:23 +00:00
|
|
|
* Lesser General Public License for more details.
|
2007-03-04 16:45:05 +00:00
|
|
|
*
|
2017-07-12 15:54:54 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2003-03-11 16:56:45 +00:00
|
|
|
* License along with this library; if not, write to the Free
|
2011-08-15 12:57:10 +00:00
|
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301, USA
|
2003-03-11 16:56:45 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
This header contains a bunch of (mostly) system and machine
|
|
|
|
dependent functions:
|
|
|
|
|
|
|
|
- timers
|
|
|
|
- current time in milliseconds and microseconds
|
|
|
|
- debug logging
|
|
|
|
- profiling
|
|
|
|
- memory locking
|
|
|
|
- checking for floating point exceptions
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _FLUID_SYS_H
|
|
|
|
#define _FLUID_SYS_H
|
|
|
|
|
2009-04-27 19:13:49 +00:00
|
|
|
#include <glib.h>
|
2003-03-11 16:56:45 +00:00
|
|
|
#include "fluidsynth_priv.h"
|
|
|
|
|
|
|
|
|
2009-04-27 19:13:49 +00:00
|
|
|
/**
|
|
|
|
* Macro used for safely accessing a message from a GError and using a default
|
|
|
|
* message if it is NULL.
|
|
|
|
* @param err Pointer to a GError to access the message field of.
|
|
|
|
* @return Message string
|
|
|
|
*/
|
|
|
|
#define fluid_gerror_message(err) ((err) ? err->message : "No error details")
|
|
|
|
|
|
|
|
|
2003-03-11 16:56:45 +00:00
|
|
|
void fluid_sys_config(void);
|
|
|
|
void fluid_log_config(void);
|
|
|
|
void fluid_time_config(void);
|
|
|
|
|
2006-12-10 16:02:04 +00:00
|
|
|
|
2009-09-22 07:04:07 +00:00
|
|
|
/* Misc */
|
|
|
|
|
|
|
|
#define fluid_return_val_if_fail g_return_val_if_fail
|
|
|
|
#define fluid_return_if_fail g_return_if_fail
|
|
|
|
#define FLUID_INLINE inline
|
|
|
|
#define FLUID_POINTER_TO_UINT GPOINTER_TO_UINT
|
2009-09-25 00:56:48 +00:00
|
|
|
#define FLUID_UINT_TO_POINTER GUINT_TO_POINTER
|
|
|
|
#define FLUID_POINTER_TO_INT GPOINTER_TO_INT
|
|
|
|
#define FLUID_INT_TO_POINTER GINT_TO_POINTER
|
2009-10-03 18:12:19 +00:00
|
|
|
#define FLUID_N_ELEMENTS(struct) (sizeof (struct) / sizeof (struct[0]))
|
2009-09-22 07:04:07 +00:00
|
|
|
|
2009-10-13 03:41:19 +00:00
|
|
|
#define FLUID_IS_BIG_ENDIAN (G_BYTE_ORDER == G_BIG_ENDIAN)
|
2009-09-22 07:04:07 +00:00
|
|
|
|
2017-10-25 14:11:43 +00:00
|
|
|
#define FLUID_LE32TOH(x) GINT32_FROM_LE(x)
|
|
|
|
#define FLUID_LE16TOH(x) GINT16_FROM_LE(x)
|
|
|
|
|
2006-12-10 16:02:04 +00:00
|
|
|
/*
|
|
|
|
* Utility functions
|
|
|
|
*/
|
|
|
|
char *fluid_strtok (char **str, char *delim);
|
|
|
|
|
|
|
|
|
2009-04-27 19:13:49 +00:00
|
|
|
#if defined(__OS2__)
|
2009-02-04 07:45:44 +00:00
|
|
|
#define INCL_DOS
|
|
|
|
#include <os2.h>
|
|
|
|
|
|
|
|
typedef int socklen_t;
|
2009-04-27 19:13:49 +00:00
|
|
|
#endif
|
2009-02-04 07:45:44 +00:00
|
|
|
|
|
|
|
unsigned int fluid_curtime(void);
|
|
|
|
double fluid_utime(void);
|
|
|
|
|
2003-03-11 16:56:45 +00:00
|
|
|
|
2007-03-04 16:45:05 +00:00
|
|
|
/**
|
2003-03-11 16:56:45 +00:00
|
|
|
Timers
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* if the callback function returns 1 the timer will continue; if it
|
|
|
|
returns 0 it will stop */
|
|
|
|
typedef int (*fluid_timer_callback_t)(void* data, unsigned int msec);
|
|
|
|
|
|
|
|
typedef struct _fluid_timer_t fluid_timer_t;
|
|
|
|
|
2007-03-04 16:45:05 +00:00
|
|
|
fluid_timer_t* new_fluid_timer(int msec, fluid_timer_callback_t callback,
|
2009-09-22 07:04:07 +00:00
|
|
|
void* data, int new_thread, int auto_destroy,
|
|
|
|
int high_priority);
|
2003-03-11 16:56:45 +00:00
|
|
|
|
2017-10-29 12:23:08 +00:00
|
|
|
void delete_fluid_timer(fluid_timer_t* timer);
|
2003-03-11 16:56:45 +00:00
|
|
|
int fluid_timer_join(fluid_timer_t* timer);
|
|
|
|
int fluid_timer_stop(fluid_timer_t* timer);
|
|
|
|
|
2013-08-19 23:10:43 +00:00
|
|
|
// Macros to use for pre-processor if statements to test which Glib thread API we have (pre or post 2.32)
|
|
|
|
#define NEW_GLIB_THREAD_API (GLIB_MAJOR_VERSION > 2 || (GLIB_MAJOR_VERSION == 2 && GLIB_MINOR_VERSION >= 32))
|
|
|
|
#define OLD_GLIB_THREAD_API (GLIB_MAJOR_VERSION < 2 || (GLIB_MAJOR_VERSION == 2 && GLIB_MINOR_VERSION < 32))
|
|
|
|
|
Added public API functions: fluid_synth_sysex, fluid_synth_activate_key_tuning, fluid_synth_activate_octave_tuning, fluid_synth_tune_notes, fluid_synth_activate_tuning and fluid_synth_deactivate_tuning.
Added audio.realtime, audio.realtime-prio, midi.realtime and midi.realtime-prio (only ALSA updated to use them at this point).
Fixed bug in new_fluid_channel() where tuning field was not initialized.
fluid_settings.h had wrong field order in prototypes for fluid_settings_register_num and fluid_settings_register_int.
Added multi core support: "synth.cpu-cores" setting, fluid_synth_core_thread_func() and many core_ variables to fluid_synth_t.
Switched fluid_mutex_t back to a normal non-recursive mutex and added fluid_rec_mutex_t.
Added fluid_cond_t thread synchronization stuff.
Added fluid_cond_mutex_t which is a dynamically allocated regular mutex for use with fluid_cond_t.
fluid_settings_t and fluid_synth_t are now using fluid_rec_mutex_t (same as before, just name change).
Added platform specific fluid_thread_self_set_prio() functions to fluid_sys.c for activating high priority for the calling thread.
Modified new_fluid_thread() to take a prio and prio_level parameters.
Added missing fluid_atomic_pointer_set().
fluid_voice_write() changed to only take a voice audio buffer to render to, mixing is done separately with new fluid_voice_mix().
fluid_voice_write() now returns the count of samples rendered.
fluid_voice_effects() split into fluid_voice_filter() and fluid_voice_mix().
Added dsp_buf_count field to fluid_voice_t to keep track of last count of samples rendered to dsp_buf.
fluid_voice_get_channel() converted to a macro.
Added FLUID_DEFAULT_AUDIO_RT_PRIO and FLUID_DEFAULT_MIDI_RT_PRIO in fluidsynth_priv.h, set to 90 and 80 respectively which get used for audio.realtime-prio and midi.realtime-prio (was 90 and 90 before).
2009-09-29 21:40:28 +00:00
|
|
|
/* Muteces */
|
|
|
|
|
2013-08-19 23:10:43 +00:00
|
|
|
#if NEW_GLIB_THREAD_API
|
|
|
|
|
|
|
|
/* glib 2.32 and newer */
|
|
|
|
|
|
|
|
/* Regular mutex */
|
|
|
|
typedef GMutex fluid_mutex_t;
|
|
|
|
#define FLUID_MUTEX_INIT { 0 }
|
|
|
|
#define fluid_mutex_init(_m) g_mutex_init (&(_m))
|
|
|
|
#define fluid_mutex_destroy(_m) g_mutex_clear (&(_m))
|
|
|
|
#define fluid_mutex_lock(_m) g_mutex_lock(&(_m))
|
|
|
|
#define fluid_mutex_unlock(_m) g_mutex_unlock(&(_m))
|
|
|
|
|
|
|
|
/* Recursive lock capable mutex */
|
|
|
|
typedef GRecMutex fluid_rec_mutex_t;
|
|
|
|
#define fluid_rec_mutex_init(_m) g_rec_mutex_init(&(_m))
|
|
|
|
#define fluid_rec_mutex_destroy(_m) g_rec_mutex_clear(&(_m))
|
|
|
|
#define fluid_rec_mutex_lock(_m) g_rec_mutex_lock(&(_m))
|
|
|
|
#define fluid_rec_mutex_unlock(_m) g_rec_mutex_unlock(&(_m))
|
|
|
|
|
|
|
|
/* Dynamically allocated mutex suitable for fluid_cond_t use */
|
|
|
|
typedef GMutex fluid_cond_mutex_t;
|
|
|
|
#define fluid_cond_mutex_lock(m) g_mutex_lock(m)
|
|
|
|
#define fluid_cond_mutex_unlock(m) g_mutex_unlock(m)
|
|
|
|
|
|
|
|
static FLUID_INLINE fluid_cond_mutex_t *
|
|
|
|
new_fluid_cond_mutex (void)
|
|
|
|
{
|
|
|
|
GMutex *mutex;
|
|
|
|
mutex = g_new (GMutex, 1);
|
|
|
|
g_mutex_init (mutex);
|
|
|
|
return (mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
static FLUID_INLINE void
|
|
|
|
delete_fluid_cond_mutex (fluid_cond_mutex_t *m)
|
|
|
|
{
|
|
|
|
g_mutex_clear (m);
|
|
|
|
g_free (m);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Thread condition signaling */
|
|
|
|
typedef GCond fluid_cond_t;
|
|
|
|
#define fluid_cond_signal(cond) g_cond_signal(cond)
|
|
|
|
#define fluid_cond_broadcast(cond) g_cond_broadcast(cond)
|
|
|
|
#define fluid_cond_wait(cond, mutex) g_cond_wait(cond, mutex)
|
|
|
|
|
|
|
|
static FLUID_INLINE fluid_cond_t *
|
|
|
|
new_fluid_cond (void)
|
|
|
|
{
|
|
|
|
GCond *cond;
|
|
|
|
cond = g_new (GCond, 1);
|
|
|
|
g_cond_init (cond);
|
|
|
|
return (cond);
|
|
|
|
}
|
|
|
|
|
|
|
|
static FLUID_INLINE void
|
|
|
|
delete_fluid_cond (fluid_cond_t *cond)
|
|
|
|
{
|
|
|
|
g_cond_clear (cond);
|
|
|
|
g_free (cond);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Thread private data */
|
|
|
|
|
|
|
|
typedef GPrivate fluid_private_t;
|
|
|
|
#define fluid_private_init(_priv) memset (&_priv, 0, sizeof (_priv))
|
|
|
|
#define fluid_private_free(_priv)
|
|
|
|
#define fluid_private_get(_priv) g_private_get(&(_priv))
|
|
|
|
#define fluid_private_set(_priv, _data) g_private_set(&(_priv), _data)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
/* glib prior to 2.32 */
|
|
|
|
|
Added public API functions: fluid_synth_sysex, fluid_synth_activate_key_tuning, fluid_synth_activate_octave_tuning, fluid_synth_tune_notes, fluid_synth_activate_tuning and fluid_synth_deactivate_tuning.
Added audio.realtime, audio.realtime-prio, midi.realtime and midi.realtime-prio (only ALSA updated to use them at this point).
Fixed bug in new_fluid_channel() where tuning field was not initialized.
fluid_settings.h had wrong field order in prototypes for fluid_settings_register_num and fluid_settings_register_int.
Added multi core support: "synth.cpu-cores" setting, fluid_synth_core_thread_func() and many core_ variables to fluid_synth_t.
Switched fluid_mutex_t back to a normal non-recursive mutex and added fluid_rec_mutex_t.
Added fluid_cond_t thread synchronization stuff.
Added fluid_cond_mutex_t which is a dynamically allocated regular mutex for use with fluid_cond_t.
fluid_settings_t and fluid_synth_t are now using fluid_rec_mutex_t (same as before, just name change).
Added platform specific fluid_thread_self_set_prio() functions to fluid_sys.c for activating high priority for the calling thread.
Modified new_fluid_thread() to take a prio and prio_level parameters.
Added missing fluid_atomic_pointer_set().
fluid_voice_write() changed to only take a voice audio buffer to render to, mixing is done separately with new fluid_voice_mix().
fluid_voice_write() now returns the count of samples rendered.
fluid_voice_effects() split into fluid_voice_filter() and fluid_voice_mix().
Added dsp_buf_count field to fluid_voice_t to keep track of last count of samples rendered to dsp_buf.
fluid_voice_get_channel() converted to a macro.
Added FLUID_DEFAULT_AUDIO_RT_PRIO and FLUID_DEFAULT_MIDI_RT_PRIO in fluidsynth_priv.h, set to 90 and 80 respectively which get used for audio.realtime-prio and midi.realtime-prio (was 90 and 90 before).
2009-09-29 21:40:28 +00:00
|
|
|
/* Regular mutex */
|
|
|
|
typedef GStaticMutex fluid_mutex_t;
|
2009-10-03 18:12:19 +00:00
|
|
|
#define FLUID_MUTEX_INIT G_STATIC_MUTEX_INIT
|
Added public API functions: fluid_synth_sysex, fluid_synth_activate_key_tuning, fluid_synth_activate_octave_tuning, fluid_synth_tune_notes, fluid_synth_activate_tuning and fluid_synth_deactivate_tuning.
Added audio.realtime, audio.realtime-prio, midi.realtime and midi.realtime-prio (only ALSA updated to use them at this point).
Fixed bug in new_fluid_channel() where tuning field was not initialized.
fluid_settings.h had wrong field order in prototypes for fluid_settings_register_num and fluid_settings_register_int.
Added multi core support: "synth.cpu-cores" setting, fluid_synth_core_thread_func() and many core_ variables to fluid_synth_t.
Switched fluid_mutex_t back to a normal non-recursive mutex and added fluid_rec_mutex_t.
Added fluid_cond_t thread synchronization stuff.
Added fluid_cond_mutex_t which is a dynamically allocated regular mutex for use with fluid_cond_t.
fluid_settings_t and fluid_synth_t are now using fluid_rec_mutex_t (same as before, just name change).
Added platform specific fluid_thread_self_set_prio() functions to fluid_sys.c for activating high priority for the calling thread.
Modified new_fluid_thread() to take a prio and prio_level parameters.
Added missing fluid_atomic_pointer_set().
fluid_voice_write() changed to only take a voice audio buffer to render to, mixing is done separately with new fluid_voice_mix().
fluid_voice_write() now returns the count of samples rendered.
fluid_voice_effects() split into fluid_voice_filter() and fluid_voice_mix().
Added dsp_buf_count field to fluid_voice_t to keep track of last count of samples rendered to dsp_buf.
fluid_voice_get_channel() converted to a macro.
Added FLUID_DEFAULT_AUDIO_RT_PRIO and FLUID_DEFAULT_MIDI_RT_PRIO in fluidsynth_priv.h, set to 90 and 80 respectively which get used for audio.realtime-prio and midi.realtime-prio (was 90 and 90 before).
2009-09-29 21:40:28 +00:00
|
|
|
#define fluid_mutex_destroy(_m) g_static_mutex_free(&(_m))
|
|
|
|
#define fluid_mutex_lock(_m) g_static_mutex_lock(&(_m))
|
|
|
|
#define fluid_mutex_unlock(_m) g_static_mutex_unlock(&(_m))
|
|
|
|
|
2017-10-22 12:45:16 +00:00
|
|
|
#define fluid_mutex_init(_m) do { \
|
2009-10-23 06:52:29 +00:00
|
|
|
if (!g_thread_supported ()) g_thread_init (NULL); \
|
|
|
|
g_static_mutex_init (&(_m)); \
|
2017-10-22 12:45:16 +00:00
|
|
|
} while(0)
|
2009-10-23 06:52:29 +00:00
|
|
|
|
Added public API functions: fluid_synth_sysex, fluid_synth_activate_key_tuning, fluid_synth_activate_octave_tuning, fluid_synth_tune_notes, fluid_synth_activate_tuning and fluid_synth_deactivate_tuning.
Added audio.realtime, audio.realtime-prio, midi.realtime and midi.realtime-prio (only ALSA updated to use them at this point).
Fixed bug in new_fluid_channel() where tuning field was not initialized.
fluid_settings.h had wrong field order in prototypes for fluid_settings_register_num and fluid_settings_register_int.
Added multi core support: "synth.cpu-cores" setting, fluid_synth_core_thread_func() and many core_ variables to fluid_synth_t.
Switched fluid_mutex_t back to a normal non-recursive mutex and added fluid_rec_mutex_t.
Added fluid_cond_t thread synchronization stuff.
Added fluid_cond_mutex_t which is a dynamically allocated regular mutex for use with fluid_cond_t.
fluid_settings_t and fluid_synth_t are now using fluid_rec_mutex_t (same as before, just name change).
Added platform specific fluid_thread_self_set_prio() functions to fluid_sys.c for activating high priority for the calling thread.
Modified new_fluid_thread() to take a prio and prio_level parameters.
Added missing fluid_atomic_pointer_set().
fluid_voice_write() changed to only take a voice audio buffer to render to, mixing is done separately with new fluid_voice_mix().
fluid_voice_write() now returns the count of samples rendered.
fluid_voice_effects() split into fluid_voice_filter() and fluid_voice_mix().
Added dsp_buf_count field to fluid_voice_t to keep track of last count of samples rendered to dsp_buf.
fluid_voice_get_channel() converted to a macro.
Added FLUID_DEFAULT_AUDIO_RT_PRIO and FLUID_DEFAULT_MIDI_RT_PRIO in fluidsynth_priv.h, set to 90 and 80 respectively which get used for audio.realtime-prio and midi.realtime-prio (was 90 and 90 before).
2009-09-29 21:40:28 +00:00
|
|
|
/* Recursive lock capable mutex */
|
|
|
|
typedef GStaticRecMutex fluid_rec_mutex_t;
|
|
|
|
#define fluid_rec_mutex_destroy(_m) g_static_rec_mutex_free(&(_m))
|
|
|
|
#define fluid_rec_mutex_lock(_m) g_static_rec_mutex_lock(&(_m))
|
|
|
|
#define fluid_rec_mutex_unlock(_m) g_static_rec_mutex_unlock(&(_m))
|
2003-03-11 16:56:45 +00:00
|
|
|
|
2017-10-22 12:45:16 +00:00
|
|
|
#define fluid_rec_mutex_init(_m) do { \
|
2009-10-23 06:52:29 +00:00
|
|
|
if (!g_thread_supported ()) g_thread_init (NULL); \
|
|
|
|
g_static_rec_mutex_init (&(_m)); \
|
2017-10-22 12:45:16 +00:00
|
|
|
} while(0)
|
2009-10-23 06:52:29 +00:00
|
|
|
|
Added public API functions: fluid_synth_sysex, fluid_synth_activate_key_tuning, fluid_synth_activate_octave_tuning, fluid_synth_tune_notes, fluid_synth_activate_tuning and fluid_synth_deactivate_tuning.
Added audio.realtime, audio.realtime-prio, midi.realtime and midi.realtime-prio (only ALSA updated to use them at this point).
Fixed bug in new_fluid_channel() where tuning field was not initialized.
fluid_settings.h had wrong field order in prototypes for fluid_settings_register_num and fluid_settings_register_int.
Added multi core support: "synth.cpu-cores" setting, fluid_synth_core_thread_func() and many core_ variables to fluid_synth_t.
Switched fluid_mutex_t back to a normal non-recursive mutex and added fluid_rec_mutex_t.
Added fluid_cond_t thread synchronization stuff.
Added fluid_cond_mutex_t which is a dynamically allocated regular mutex for use with fluid_cond_t.
fluid_settings_t and fluid_synth_t are now using fluid_rec_mutex_t (same as before, just name change).
Added platform specific fluid_thread_self_set_prio() functions to fluid_sys.c for activating high priority for the calling thread.
Modified new_fluid_thread() to take a prio and prio_level parameters.
Added missing fluid_atomic_pointer_set().
fluid_voice_write() changed to only take a voice audio buffer to render to, mixing is done separately with new fluid_voice_mix().
fluid_voice_write() now returns the count of samples rendered.
fluid_voice_effects() split into fluid_voice_filter() and fluid_voice_mix().
Added dsp_buf_count field to fluid_voice_t to keep track of last count of samples rendered to dsp_buf.
fluid_voice_get_channel() converted to a macro.
Added FLUID_DEFAULT_AUDIO_RT_PRIO and FLUID_DEFAULT_MIDI_RT_PRIO in fluidsynth_priv.h, set to 90 and 80 respectively which get used for audio.realtime-prio and midi.realtime-prio (was 90 and 90 before).
2009-09-29 21:40:28 +00:00
|
|
|
/* Dynamically allocated mutex suitable for fluid_cond_t use */
|
|
|
|
typedef GMutex fluid_cond_mutex_t;
|
2009-10-23 06:52:29 +00:00
|
|
|
#define delete_fluid_cond_mutex(m) g_mutex_free(m)
|
|
|
|
#define fluid_cond_mutex_lock(m) g_mutex_lock(m)
|
|
|
|
#define fluid_cond_mutex_unlock(m) g_mutex_unlock(m)
|
|
|
|
|
|
|
|
static FLUID_INLINE fluid_cond_mutex_t *
|
|
|
|
new_fluid_cond_mutex (void)
|
|
|
|
{
|
|
|
|
if (!g_thread_supported ()) g_thread_init (NULL);
|
|
|
|
return g_mutex_new ();
|
|
|
|
}
|
2003-03-11 16:56:45 +00:00
|
|
|
|
Added public API functions: fluid_synth_sysex, fluid_synth_activate_key_tuning, fluid_synth_activate_octave_tuning, fluid_synth_tune_notes, fluid_synth_activate_tuning and fluid_synth_deactivate_tuning.
Added audio.realtime, audio.realtime-prio, midi.realtime and midi.realtime-prio (only ALSA updated to use them at this point).
Fixed bug in new_fluid_channel() where tuning field was not initialized.
fluid_settings.h had wrong field order in prototypes for fluid_settings_register_num and fluid_settings_register_int.
Added multi core support: "synth.cpu-cores" setting, fluid_synth_core_thread_func() and many core_ variables to fluid_synth_t.
Switched fluid_mutex_t back to a normal non-recursive mutex and added fluid_rec_mutex_t.
Added fluid_cond_t thread synchronization stuff.
Added fluid_cond_mutex_t which is a dynamically allocated regular mutex for use with fluid_cond_t.
fluid_settings_t and fluid_synth_t are now using fluid_rec_mutex_t (same as before, just name change).
Added platform specific fluid_thread_self_set_prio() functions to fluid_sys.c for activating high priority for the calling thread.
Modified new_fluid_thread() to take a prio and prio_level parameters.
Added missing fluid_atomic_pointer_set().
fluid_voice_write() changed to only take a voice audio buffer to render to, mixing is done separately with new fluid_voice_mix().
fluid_voice_write() now returns the count of samples rendered.
fluid_voice_effects() split into fluid_voice_filter() and fluid_voice_mix().
Added dsp_buf_count field to fluid_voice_t to keep track of last count of samples rendered to dsp_buf.
fluid_voice_get_channel() converted to a macro.
Added FLUID_DEFAULT_AUDIO_RT_PRIO and FLUID_DEFAULT_MIDI_RT_PRIO in fluidsynth_priv.h, set to 90 and 80 respectively which get used for audio.realtime-prio and midi.realtime-prio (was 90 and 90 before).
2009-09-29 21:40:28 +00:00
|
|
|
/* Thread condition signaling */
|
|
|
|
typedef GCond fluid_cond_t;
|
2009-10-28 19:38:10 +00:00
|
|
|
fluid_cond_t *new_fluid_cond (void);
|
2009-10-23 06:52:29 +00:00
|
|
|
#define delete_fluid_cond(cond) g_cond_free(cond)
|
|
|
|
#define fluid_cond_signal(cond) g_cond_signal(cond)
|
|
|
|
#define fluid_cond_broadcast(cond) g_cond_broadcast(cond)
|
|
|
|
#define fluid_cond_wait(cond, mutex) g_cond_wait(cond, mutex)
|
|
|
|
|
2013-08-19 23:10:43 +00:00
|
|
|
/* Thread private data */
|
|
|
|
typedef GStaticPrivate fluid_private_t;
|
|
|
|
#define fluid_private_get(_priv) g_static_private_get(&(_priv))
|
2014-03-02 20:27:48 +00:00
|
|
|
#define fluid_private_set(_priv, _data) g_static_private_set(&(_priv), _data, NULL)
|
2013-08-19 23:10:43 +00:00
|
|
|
#define fluid_private_free(_priv) g_static_private_free(&(_priv))
|
|
|
|
|
2017-10-22 12:45:16 +00:00
|
|
|
#define fluid_private_init(_priv) do { \
|
2013-08-19 23:10:43 +00:00
|
|
|
if (!g_thread_supported ()) g_thread_init (NULL); \
|
|
|
|
g_static_private_init (&(_priv)); \
|
2017-10-22 12:45:16 +00:00
|
|
|
} while(0)
|
2013-08-19 23:10:43 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2009-09-22 07:04:07 +00:00
|
|
|
|
|
|
|
/* Atomic operations */
|
|
|
|
|
|
|
|
#define fluid_atomic_int_inc(_pi) g_atomic_int_inc(_pi)
|
|
|
|
#define fluid_atomic_int_get(_pi) g_atomic_int_get(_pi)
|
|
|
|
#define fluid_atomic_int_set(_pi, _val) g_atomic_int_set(_pi, _val)
|
|
|
|
#define fluid_atomic_int_dec_and_test(_pi) g_atomic_int_dec_and_test(_pi)
|
|
|
|
#define fluid_atomic_int_compare_and_exchange(_pi, _old, _new) \
|
|
|
|
g_atomic_int_compare_and_exchange(_pi, _old, _new)
|
2013-08-19 23:10:43 +00:00
|
|
|
|
|
|
|
#if GLIB_MAJOR_VERSION > 2 || (GLIB_MAJOR_VERSION == 2 && GLIB_MINOR_VERSION >= 30)
|
|
|
|
#define fluid_atomic_int_exchange_and_add(_pi, _add) \
|
|
|
|
g_atomic_int_add(_pi, _add)
|
2017-09-06 07:36:42 +00:00
|
|
|
#define fluid_atomic_int_add(_pi, _add) \
|
|
|
|
g_atomic_int_add(_pi, _add)
|
2013-08-19 23:10:43 +00:00
|
|
|
#else
|
2009-09-22 07:04:07 +00:00
|
|
|
#define fluid_atomic_int_exchange_and_add(_pi, _add) \
|
|
|
|
g_atomic_int_exchange_and_add(_pi, _add)
|
2017-09-06 07:36:42 +00:00
|
|
|
#define fluid_atomic_int_add(_pi, _add) \
|
|
|
|
g_atomic_int_exchange_and_add(_pi, _add)
|
2013-08-19 23:10:43 +00:00
|
|
|
#endif
|
2009-09-22 07:04:07 +00:00
|
|
|
|
Added public API functions: fluid_synth_sysex, fluid_synth_activate_key_tuning, fluid_synth_activate_octave_tuning, fluid_synth_tune_notes, fluid_synth_activate_tuning and fluid_synth_deactivate_tuning.
Added audio.realtime, audio.realtime-prio, midi.realtime and midi.realtime-prio (only ALSA updated to use them at this point).
Fixed bug in new_fluid_channel() where tuning field was not initialized.
fluid_settings.h had wrong field order in prototypes for fluid_settings_register_num and fluid_settings_register_int.
Added multi core support: "synth.cpu-cores" setting, fluid_synth_core_thread_func() and many core_ variables to fluid_synth_t.
Switched fluid_mutex_t back to a normal non-recursive mutex and added fluid_rec_mutex_t.
Added fluid_cond_t thread synchronization stuff.
Added fluid_cond_mutex_t which is a dynamically allocated regular mutex for use with fluid_cond_t.
fluid_settings_t and fluid_synth_t are now using fluid_rec_mutex_t (same as before, just name change).
Added platform specific fluid_thread_self_set_prio() functions to fluid_sys.c for activating high priority for the calling thread.
Modified new_fluid_thread() to take a prio and prio_level parameters.
Added missing fluid_atomic_pointer_set().
fluid_voice_write() changed to only take a voice audio buffer to render to, mixing is done separately with new fluid_voice_mix().
fluid_voice_write() now returns the count of samples rendered.
fluid_voice_effects() split into fluid_voice_filter() and fluid_voice_mix().
Added dsp_buf_count field to fluid_voice_t to keep track of last count of samples rendered to dsp_buf.
fluid_voice_get_channel() converted to a macro.
Added FLUID_DEFAULT_AUDIO_RT_PRIO and FLUID_DEFAULT_MIDI_RT_PRIO in fluidsynth_priv.h, set to 90 and 80 respectively which get used for audio.realtime-prio and midi.realtime-prio (was 90 and 90 before).
2009-09-29 21:40:28 +00:00
|
|
|
#define fluid_atomic_pointer_get(_pp) g_atomic_pointer_get(_pp)
|
|
|
|
#define fluid_atomic_pointer_set(_pp, val) g_atomic_pointer_set(_pp, val)
|
2009-09-22 07:04:07 +00:00
|
|
|
#define fluid_atomic_pointer_compare_and_exchange(_pp, _old, _new) \
|
|
|
|
g_atomic_pointer_compare_and_exchange(_pp, _old, _new)
|
|
|
|
|
2009-09-25 00:56:48 +00:00
|
|
|
static FLUID_INLINE void
|
|
|
|
fluid_atomic_float_set(volatile float *fptr, float val)
|
|
|
|
{
|
|
|
|
sint32 ival;
|
|
|
|
memcpy (&ival, &val, 4);
|
|
|
|
fluid_atomic_int_set ((volatile int *)fptr, ival);
|
|
|
|
}
|
|
|
|
|
|
|
|
static FLUID_INLINE float
|
|
|
|
fluid_atomic_float_get(volatile float *fptr)
|
|
|
|
{
|
|
|
|
sint32 ival;
|
|
|
|
float fval;
|
|
|
|
ival = fluid_atomic_int_get ((volatile int *)fptr);
|
|
|
|
memcpy (&fval, &ival, 4);
|
|
|
|
return fval;
|
|
|
|
}
|
|
|
|
|
2009-09-22 07:04:07 +00:00
|
|
|
|
Added public API functions: fluid_synth_sysex, fluid_synth_activate_key_tuning, fluid_synth_activate_octave_tuning, fluid_synth_tune_notes, fluid_synth_activate_tuning and fluid_synth_deactivate_tuning.
Added audio.realtime, audio.realtime-prio, midi.realtime and midi.realtime-prio (only ALSA updated to use them at this point).
Fixed bug in new_fluid_channel() where tuning field was not initialized.
fluid_settings.h had wrong field order in prototypes for fluid_settings_register_num and fluid_settings_register_int.
Added multi core support: "synth.cpu-cores" setting, fluid_synth_core_thread_func() and many core_ variables to fluid_synth_t.
Switched fluid_mutex_t back to a normal non-recursive mutex and added fluid_rec_mutex_t.
Added fluid_cond_t thread synchronization stuff.
Added fluid_cond_mutex_t which is a dynamically allocated regular mutex for use with fluid_cond_t.
fluid_settings_t and fluid_synth_t are now using fluid_rec_mutex_t (same as before, just name change).
Added platform specific fluid_thread_self_set_prio() functions to fluid_sys.c for activating high priority for the calling thread.
Modified new_fluid_thread() to take a prio and prio_level parameters.
Added missing fluid_atomic_pointer_set().
fluid_voice_write() changed to only take a voice audio buffer to render to, mixing is done separately with new fluid_voice_mix().
fluid_voice_write() now returns the count of samples rendered.
fluid_voice_effects() split into fluid_voice_filter() and fluid_voice_mix().
Added dsp_buf_count field to fluid_voice_t to keep track of last count of samples rendered to dsp_buf.
fluid_voice_get_channel() converted to a macro.
Added FLUID_DEFAULT_AUDIO_RT_PRIO and FLUID_DEFAULT_MIDI_RT_PRIO in fluidsynth_priv.h, set to 90 and 80 respectively which get used for audio.realtime-prio and midi.realtime-prio (was 90 and 90 before).
2009-09-29 21:40:28 +00:00
|
|
|
/* Threads */
|
2003-03-11 16:56:45 +00:00
|
|
|
|
2017-10-26 16:08:10 +00:00
|
|
|
/* other thread implementations might change this for their needs */
|
|
|
|
typedef void* fluid_thread_return_t;
|
|
|
|
/* static return value for thread functions which requires a return value */
|
|
|
|
#define FLUID_THREAD_RETURN_VALUE (NULL)
|
|
|
|
|
2009-04-27 19:13:49 +00:00
|
|
|
typedef GThread fluid_thread_t;
|
2017-10-26 16:08:10 +00:00
|
|
|
typedef fluid_thread_return_t (*fluid_thread_func_t)(void* data);
|
2003-03-11 16:56:45 +00:00
|
|
|
|
2009-09-22 07:04:07 +00:00
|
|
|
#define FLUID_THREAD_ID_NULL NULL /* A NULL "ID" value */
|
|
|
|
#define fluid_thread_id_t GThread * /* Data type for a thread ID */
|
|
|
|
#define fluid_thread_get_id() g_thread_self() /* Get unique "ID" for current thread */
|
|
|
|
|
2013-08-19 23:10:43 +00:00
|
|
|
fluid_thread_t* new_fluid_thread(const char *name, fluid_thread_func_t func, void *data,
|
2009-10-30 21:49:54 +00:00
|
|
|
int prio_level, int detach);
|
Added public API functions: fluid_synth_sysex, fluid_synth_activate_key_tuning, fluid_synth_activate_octave_tuning, fluid_synth_tune_notes, fluid_synth_activate_tuning and fluid_synth_deactivate_tuning.
Added audio.realtime, audio.realtime-prio, midi.realtime and midi.realtime-prio (only ALSA updated to use them at this point).
Fixed bug in new_fluid_channel() where tuning field was not initialized.
fluid_settings.h had wrong field order in prototypes for fluid_settings_register_num and fluid_settings_register_int.
Added multi core support: "synth.cpu-cores" setting, fluid_synth_core_thread_func() and many core_ variables to fluid_synth_t.
Switched fluid_mutex_t back to a normal non-recursive mutex and added fluid_rec_mutex_t.
Added fluid_cond_t thread synchronization stuff.
Added fluid_cond_mutex_t which is a dynamically allocated regular mutex for use with fluid_cond_t.
fluid_settings_t and fluid_synth_t are now using fluid_rec_mutex_t (same as before, just name change).
Added platform specific fluid_thread_self_set_prio() functions to fluid_sys.c for activating high priority for the calling thread.
Modified new_fluid_thread() to take a prio and prio_level parameters.
Added missing fluid_atomic_pointer_set().
fluid_voice_write() changed to only take a voice audio buffer to render to, mixing is done separately with new fluid_voice_mix().
fluid_voice_write() now returns the count of samples rendered.
fluid_voice_effects() split into fluid_voice_filter() and fluid_voice_mix().
Added dsp_buf_count field to fluid_voice_t to keep track of last count of samples rendered to dsp_buf.
fluid_voice_get_channel() converted to a macro.
Added FLUID_DEFAULT_AUDIO_RT_PRIO and FLUID_DEFAULT_MIDI_RT_PRIO in fluidsynth_priv.h, set to 90 and 80 respectively which get used for audio.realtime-prio and midi.realtime-prio (was 90 and 90 before).
2009-09-29 21:40:28 +00:00
|
|
|
void delete_fluid_thread(fluid_thread_t* thread);
|
2009-10-30 21:49:54 +00:00
|
|
|
void fluid_thread_self_set_prio (int prio_level);
|
Added public API functions: fluid_synth_sysex, fluid_synth_activate_key_tuning, fluid_synth_activate_octave_tuning, fluid_synth_tune_notes, fluid_synth_activate_tuning and fluid_synth_deactivate_tuning.
Added audio.realtime, audio.realtime-prio, midi.realtime and midi.realtime-prio (only ALSA updated to use them at this point).
Fixed bug in new_fluid_channel() where tuning field was not initialized.
fluid_settings.h had wrong field order in prototypes for fluid_settings_register_num and fluid_settings_register_int.
Added multi core support: "synth.cpu-cores" setting, fluid_synth_core_thread_func() and many core_ variables to fluid_synth_t.
Switched fluid_mutex_t back to a normal non-recursive mutex and added fluid_rec_mutex_t.
Added fluid_cond_t thread synchronization stuff.
Added fluid_cond_mutex_t which is a dynamically allocated regular mutex for use with fluid_cond_t.
fluid_settings_t and fluid_synth_t are now using fluid_rec_mutex_t (same as before, just name change).
Added platform specific fluid_thread_self_set_prio() functions to fluid_sys.c for activating high priority for the calling thread.
Modified new_fluid_thread() to take a prio and prio_level parameters.
Added missing fluid_atomic_pointer_set().
fluid_voice_write() changed to only take a voice audio buffer to render to, mixing is done separately with new fluid_voice_mix().
fluid_voice_write() now returns the count of samples rendered.
fluid_voice_effects() split into fluid_voice_filter() and fluid_voice_mix().
Added dsp_buf_count field to fluid_voice_t to keep track of last count of samples rendered to dsp_buf.
fluid_voice_get_channel() converted to a macro.
Added FLUID_DEFAULT_AUDIO_RT_PRIO and FLUID_DEFAULT_MIDI_RT_PRIO in fluidsynth_priv.h, set to 90 and 80 respectively which get used for audio.realtime-prio and midi.realtime-prio (was 90 and 90 before).
2009-09-29 21:40:28 +00:00
|
|
|
int fluid_thread_join(fluid_thread_t* thread);
|
2003-03-11 16:56:45 +00:00
|
|
|
|
Added public API functions: fluid_synth_sysex, fluid_synth_activate_key_tuning, fluid_synth_activate_octave_tuning, fluid_synth_tune_notes, fluid_synth_activate_tuning and fluid_synth_deactivate_tuning.
Added audio.realtime, audio.realtime-prio, midi.realtime and midi.realtime-prio (only ALSA updated to use them at this point).
Fixed bug in new_fluid_channel() where tuning field was not initialized.
fluid_settings.h had wrong field order in prototypes for fluid_settings_register_num and fluid_settings_register_int.
Added multi core support: "synth.cpu-cores" setting, fluid_synth_core_thread_func() and many core_ variables to fluid_synth_t.
Switched fluid_mutex_t back to a normal non-recursive mutex and added fluid_rec_mutex_t.
Added fluid_cond_t thread synchronization stuff.
Added fluid_cond_mutex_t which is a dynamically allocated regular mutex for use with fluid_cond_t.
fluid_settings_t and fluid_synth_t are now using fluid_rec_mutex_t (same as before, just name change).
Added platform specific fluid_thread_self_set_prio() functions to fluid_sys.c for activating high priority for the calling thread.
Modified new_fluid_thread() to take a prio and prio_level parameters.
Added missing fluid_atomic_pointer_set().
fluid_voice_write() changed to only take a voice audio buffer to render to, mixing is done separately with new fluid_voice_mix().
fluid_voice_write() now returns the count of samples rendered.
fluid_voice_effects() split into fluid_voice_filter() and fluid_voice_mix().
Added dsp_buf_count field to fluid_voice_t to keep track of last count of samples rendered to dsp_buf.
fluid_voice_get_channel() converted to a macro.
Added FLUID_DEFAULT_AUDIO_RT_PRIO and FLUID_DEFAULT_MIDI_RT_PRIO in fluidsynth_priv.h, set to 90 and 80 respectively which get used for audio.realtime-prio and midi.realtime-prio (was 90 and 90 before).
2009-09-29 21:40:28 +00:00
|
|
|
/* Sockets and I/O */
|
2003-03-11 16:56:45 +00:00
|
|
|
|
2009-04-27 19:13:49 +00:00
|
|
|
fluid_istream_t fluid_get_stdin (void);
|
|
|
|
fluid_ostream_t fluid_get_stdout (void);
|
2009-10-12 19:18:06 +00:00
|
|
|
int fluid_istream_readline(fluid_istream_t in, fluid_ostream_t out, char* prompt, char* buf, int len);
|
2009-04-27 19:13:49 +00:00
|
|
|
int fluid_ostream_printf (fluid_ostream_t out, char* format, ...);
|
2003-03-11 16:56:45 +00:00
|
|
|
|
Added public API functions: fluid_synth_sysex, fluid_synth_activate_key_tuning, fluid_synth_activate_octave_tuning, fluid_synth_tune_notes, fluid_synth_activate_tuning and fluid_synth_deactivate_tuning.
Added audio.realtime, audio.realtime-prio, midi.realtime and midi.realtime-prio (only ALSA updated to use them at this point).
Fixed bug in new_fluid_channel() where tuning field was not initialized.
fluid_settings.h had wrong field order in prototypes for fluid_settings_register_num and fluid_settings_register_int.
Added multi core support: "synth.cpu-cores" setting, fluid_synth_core_thread_func() and many core_ variables to fluid_synth_t.
Switched fluid_mutex_t back to a normal non-recursive mutex and added fluid_rec_mutex_t.
Added fluid_cond_t thread synchronization stuff.
Added fluid_cond_mutex_t which is a dynamically allocated regular mutex for use with fluid_cond_t.
fluid_settings_t and fluid_synth_t are now using fluid_rec_mutex_t (same as before, just name change).
Added platform specific fluid_thread_self_set_prio() functions to fluid_sys.c for activating high priority for the calling thread.
Modified new_fluid_thread() to take a prio and prio_level parameters.
Added missing fluid_atomic_pointer_set().
fluid_voice_write() changed to only take a voice audio buffer to render to, mixing is done separately with new fluid_voice_mix().
fluid_voice_write() now returns the count of samples rendered.
fluid_voice_effects() split into fluid_voice_filter() and fluid_voice_mix().
Added dsp_buf_count field to fluid_voice_t to keep track of last count of samples rendered to dsp_buf.
fluid_voice_get_channel() converted to a macro.
Added FLUID_DEFAULT_AUDIO_RT_PRIO and FLUID_DEFAULT_MIDI_RT_PRIO in fluidsynth_priv.h, set to 90 and 80 respectively which get used for audio.realtime-prio and midi.realtime-prio (was 90 and 90 before).
2009-09-29 21:40:28 +00:00
|
|
|
/* The function should return 0 if no error occured, non-zero
|
|
|
|
otherwise. If the function return non-zero, the socket will be
|
|
|
|
closed by the server. */
|
2003-03-11 16:56:45 +00:00
|
|
|
typedef int (*fluid_server_func_t)(void* data, fluid_socket_t client_socket, char* addr);
|
|
|
|
|
|
|
|
fluid_server_socket_t* new_fluid_server_socket(int port, fluid_server_func_t func, void* data);
|
2017-10-29 12:23:08 +00:00
|
|
|
void delete_fluid_server_socket(fluid_server_socket_t* sock);
|
2003-03-11 16:56:45 +00:00
|
|
|
int fluid_server_socket_join(fluid_server_socket_t* sock);
|
|
|
|
void fluid_socket_close(fluid_socket_t sock);
|
|
|
|
fluid_istream_t fluid_socket_get_istream(fluid_socket_t sock);
|
|
|
|
fluid_ostream_t fluid_socket_get_ostream(fluid_socket_t sock);
|
|
|
|
|
|
|
|
|
|
|
|
|
Added public API functions: fluid_synth_sysex, fluid_synth_activate_key_tuning, fluid_synth_activate_octave_tuning, fluid_synth_tune_notes, fluid_synth_activate_tuning and fluid_synth_deactivate_tuning.
Added audio.realtime, audio.realtime-prio, midi.realtime and midi.realtime-prio (only ALSA updated to use them at this point).
Fixed bug in new_fluid_channel() where tuning field was not initialized.
fluid_settings.h had wrong field order in prototypes for fluid_settings_register_num and fluid_settings_register_int.
Added multi core support: "synth.cpu-cores" setting, fluid_synth_core_thread_func() and many core_ variables to fluid_synth_t.
Switched fluid_mutex_t back to a normal non-recursive mutex and added fluid_rec_mutex_t.
Added fluid_cond_t thread synchronization stuff.
Added fluid_cond_mutex_t which is a dynamically allocated regular mutex for use with fluid_cond_t.
fluid_settings_t and fluid_synth_t are now using fluid_rec_mutex_t (same as before, just name change).
Added platform specific fluid_thread_self_set_prio() functions to fluid_sys.c for activating high priority for the calling thread.
Modified new_fluid_thread() to take a prio and prio_level parameters.
Added missing fluid_atomic_pointer_set().
fluid_voice_write() changed to only take a voice audio buffer to render to, mixing is done separately with new fluid_voice_mix().
fluid_voice_write() now returns the count of samples rendered.
fluid_voice_effects() split into fluid_voice_filter() and fluid_voice_mix().
Added dsp_buf_count field to fluid_voice_t to keep track of last count of samples rendered to dsp_buf.
fluid_voice_get_channel() converted to a macro.
Added FLUID_DEFAULT_AUDIO_RT_PRIO and FLUID_DEFAULT_MIDI_RT_PRIO in fluidsynth_priv.h, set to 90 and 80 respectively which get used for audio.realtime-prio and midi.realtime-prio (was 90 and 90 before).
2009-09-29 21:40:28 +00:00
|
|
|
/* Profiling */
|
2003-03-11 16:56:45 +00:00
|
|
|
|
|
|
|
|
2007-03-04 16:45:05 +00:00
|
|
|
/**
|
Added public API functions: fluid_synth_sysex, fluid_synth_activate_key_tuning, fluid_synth_activate_octave_tuning, fluid_synth_tune_notes, fluid_synth_activate_tuning and fluid_synth_deactivate_tuning.
Added audio.realtime, audio.realtime-prio, midi.realtime and midi.realtime-prio (only ALSA updated to use them at this point).
Fixed bug in new_fluid_channel() where tuning field was not initialized.
fluid_settings.h had wrong field order in prototypes for fluid_settings_register_num and fluid_settings_register_int.
Added multi core support: "synth.cpu-cores" setting, fluid_synth_core_thread_func() and many core_ variables to fluid_synth_t.
Switched fluid_mutex_t back to a normal non-recursive mutex and added fluid_rec_mutex_t.
Added fluid_cond_t thread synchronization stuff.
Added fluid_cond_mutex_t which is a dynamically allocated regular mutex for use with fluid_cond_t.
fluid_settings_t and fluid_synth_t are now using fluid_rec_mutex_t (same as before, just name change).
Added platform specific fluid_thread_self_set_prio() functions to fluid_sys.c for activating high priority for the calling thread.
Modified new_fluid_thread() to take a prio and prio_level parameters.
Added missing fluid_atomic_pointer_set().
fluid_voice_write() changed to only take a voice audio buffer to render to, mixing is done separately with new fluid_voice_mix().
fluid_voice_write() now returns the count of samples rendered.
fluid_voice_effects() split into fluid_voice_filter() and fluid_voice_mix().
Added dsp_buf_count field to fluid_voice_t to keep track of last count of samples rendered to dsp_buf.
fluid_voice_get_channel() converted to a macro.
Added FLUID_DEFAULT_AUDIO_RT_PRIO and FLUID_DEFAULT_MIDI_RT_PRIO in fluidsynth_priv.h, set to 90 and 80 respectively which get used for audio.realtime-prio and midi.realtime-prio (was 90 and 90 before).
2009-09-29 21:40:28 +00:00
|
|
|
* Profile numbers. List all the pieces of code you want to profile
|
|
|
|
* here. Be sure to add an entry in the fluid_profile_data table in
|
|
|
|
* fluid_sys.c
|
|
|
|
*/
|
2003-03-11 16:56:45 +00:00
|
|
|
enum {
|
2010-07-04 09:05:32 +00:00
|
|
|
FLUID_PROF_WRITE,
|
2003-03-11 16:56:45 +00:00
|
|
|
FLUID_PROF_ONE_BLOCK,
|
|
|
|
FLUID_PROF_ONE_BLOCK_CLEAR,
|
|
|
|
FLUID_PROF_ONE_BLOCK_VOICE,
|
|
|
|
FLUID_PROF_ONE_BLOCK_VOICES,
|
|
|
|
FLUID_PROF_ONE_BLOCK_REVERB,
|
|
|
|
FLUID_PROF_ONE_BLOCK_CHORUS,
|
|
|
|
FLUID_PROF_VOICE_NOTE,
|
|
|
|
FLUID_PROF_VOICE_RELEASE,
|
|
|
|
FLUID_PROF_LAST
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#if WITH_PROFILING
|
|
|
|
|
|
|
|
void fluid_profiling_print(void);
|
|
|
|
|
|
|
|
|
|
|
|
/** Profiling data. Keep track of min/avg/max values to execute a
|
|
|
|
piece of code. */
|
|
|
|
typedef struct _fluid_profile_data_t {
|
|
|
|
int num;
|
|
|
|
char* description;
|
|
|
|
double min, max, total;
|
|
|
|
unsigned int count;
|
|
|
|
} fluid_profile_data_t;
|
|
|
|
|
|
|
|
extern fluid_profile_data_t fluid_profile_data[];
|
|
|
|
|
|
|
|
/** Macro to obtain a time refence used for the profiling */
|
|
|
|
#define fluid_profile_ref() fluid_utime()
|
|
|
|
|
2009-10-07 05:20:55 +00:00
|
|
|
/** Macro to create a variable and assign the current reference time for profiling.
|
|
|
|
* So we don't get unused variable warnings when profiling is disabled. */
|
|
|
|
#define fluid_profile_ref_var(name) double name = fluid_utime()
|
|
|
|
|
2003-03-11 16:56:45 +00:00
|
|
|
/** Macro to calculate the min/avg/max. Needs a time refence and a
|
|
|
|
profile number. */
|
|
|
|
#define fluid_profile(_num,_ref) { \
|
|
|
|
double _now = fluid_utime(); \
|
|
|
|
double _delta = _now - _ref; \
|
|
|
|
fluid_profile_data[_num].min = _delta < fluid_profile_data[_num].min ? _delta : fluid_profile_data[_num].min; \
|
|
|
|
fluid_profile_data[_num].max = _delta > fluid_profile_data[_num].max ? _delta : fluid_profile_data[_num].max; \
|
|
|
|
fluid_profile_data[_num].total += _delta; \
|
|
|
|
fluid_profile_data[_num].count++; \
|
|
|
|
_ref = _now; \
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
/* No profiling */
|
|
|
|
#define fluid_profiling_print()
|
|
|
|
#define fluid_profile_ref() 0
|
2009-10-07 05:20:55 +00:00
|
|
|
#define fluid_profile_ref_var(name)
|
2003-03-11 16:56:45 +00:00
|
|
|
#define fluid_profile(_num,_ref)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-03-04 16:45:05 +00:00
|
|
|
/**
|
2003-03-11 16:56:45 +00:00
|
|
|
|
2007-03-04 16:45:05 +00:00
|
|
|
Memory locking
|
2003-03-11 16:56:45 +00:00
|
|
|
|
|
|
|
Memory locking is used to avoid swapping of the large block of
|
|
|
|
sample data.
|
|
|
|
*/
|
|
|
|
|
2009-02-04 07:45:44 +00:00
|
|
|
#if defined(HAVE_SYS_MMAN_H) && !defined(__OS2__)
|
2003-03-11 16:56:45 +00:00
|
|
|
#define fluid_mlock(_p,_n) mlock(_p, _n)
|
|
|
|
#define fluid_munlock(_p,_n) munlock(_p,_n)
|
|
|
|
#else
|
|
|
|
#define fluid_mlock(_p,_n) 0
|
2007-03-04 16:45:05 +00:00
|
|
|
#define fluid_munlock(_p,_n)
|
2003-03-11 16:56:45 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2007-03-04 16:45:05 +00:00
|
|
|
/**
|
2003-03-11 16:56:45 +00:00
|
|
|
|
2007-03-04 16:45:05 +00:00
|
|
|
Floating point exceptions
|
2003-03-11 16:56:45 +00:00
|
|
|
|
|
|
|
fluid_check_fpe() checks for "unnormalized numbers" and other
|
|
|
|
exceptions of the floating point processsor.
|
|
|
|
*/
|
2007-11-11 20:52:56 +00:00
|
|
|
#ifdef FPE_CHECK
|
2003-03-11 16:56:45 +00:00
|
|
|
#define fluid_check_fpe(expl) fluid_check_fpe_i386(expl)
|
2007-11-11 20:52:56 +00:00
|
|
|
#define fluid_clear_fpe() fluid_clear_fpe_i386()
|
2003-03-11 16:56:45 +00:00
|
|
|
#else
|
|
|
|
#define fluid_check_fpe(expl)
|
2007-11-11 20:52:56 +00:00
|
|
|
#define fluid_clear_fpe()
|
2003-03-11 16:56:45 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
unsigned int fluid_check_fpe_i386(char * explanation_in_case_of_fpe);
|
2007-11-11 20:52:56 +00:00
|
|
|
void fluid_clear_fpe_i386(void);
|
2003-03-11 16:56:45 +00:00
|
|
|
|
|
|
|
#endif /* _FLUID_SYS_H */
|