mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-02-25 21:31:49 +00:00
document FLUID_MIXER_MAX_BUFFERS_DEFAULT
This commit is contained in:
parent
29d1947ccc
commit
9e2ea65618
2 changed files with 1 additions and 3 deletions
|
@ -28,9 +28,6 @@
|
|||
|
||||
typedef struct _fluid_rvoice_mixer_t fluid_rvoice_mixer_t;
|
||||
|
||||
#define FLUID_MIXER_MAX_BUFFERS_DEFAULT (8192/FLUID_BUFSIZE)
|
||||
|
||||
|
||||
int fluid_rvoice_mixer_render(fluid_rvoice_mixer_t* mixer, int blockcount);
|
||||
int fluid_rvoice_mixer_get_bufs(fluid_rvoice_mixer_t* mixer,
|
||||
fluid_real_t** left, fluid_real_t** right);
|
||||
|
|
|
@ -233,6 +233,7 @@ typedef void (*fluid_rvoice_function_t)(void* obj, const fluid_rvoice_param_t pa
|
|||
*/
|
||||
|
||||
#define FLUID_BUFSIZE 64 /**< FluidSynth internal buffer size (in samples) */
|
||||
#define FLUID_MIXER_MAX_BUFFERS_DEFAULT (8192/FLUID_BUFSIZE) /**< Number of buffers that can be processed in one rendering run */
|
||||
#define FLUID_MAX_EVENTS_PER_BUFSIZE 1024 /**< Maximum queued MIDI events per #FLUID_BUFSIZE */
|
||||
#define FLUID_MAX_RETURN_EVENTS 1024 /**< Maximum queued synthesis thread return events */
|
||||
#define FLUID_MAX_EVENT_QUEUES 16 /**< Maximum number of unique threads queuing events */
|
||||
|
|
Loading…
Reference in a new issue