mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-12-02 17:12:15 +00:00
remove unused fluid_event_queue.h
This commit is contained in:
parent
b08021b030
commit
06b6e07bde
5 changed files with 1 additions and 12 deletions
|
@ -155,7 +155,6 @@ set ( libfluidsynth_SOURCES
|
|||
synth/fluid_chan.h
|
||||
synth/fluid_event.c
|
||||
synth/fluid_event_priv.h
|
||||
synth/fluid_event_queue.h
|
||||
synth/fluid_gen.c
|
||||
synth/fluid_gen.h
|
||||
synth/fluid_mod.c
|
||||
|
|
|
@ -136,7 +136,6 @@ libfluidsynth_la_SOURCES = \
|
|||
synth/fluid_chan.h \
|
||||
synth/fluid_event.c \
|
||||
synth/fluid_event_priv.h \
|
||||
synth/fluid_event_queue.h \
|
||||
synth/fluid_gen.c \
|
||||
synth/fluid_gen.h \
|
||||
synth/fluid_mod.c \
|
||||
|
|
|
@ -81,9 +81,7 @@ static int fluid_synth_update_polyphony_LOCAL(fluid_synth_t* synth, int new_poly
|
|||
static void init_dither(void);
|
||||
static inline int roundi (float x);
|
||||
static int fluid_synth_render_blocks(fluid_synth_t* synth, int blockcount);
|
||||
//static void fluid_synth_core_thread_func (void* data);
|
||||
//static FLUID_INLINE void fluid_synth_process_event_queue_LOCAL
|
||||
// (fluid_synth_t *synth, fluid_event_queue_t *queue);
|
||||
|
||||
static fluid_voice_t* fluid_synth_free_voice_by_kill_LOCAL(fluid_synth_t* synth);
|
||||
static void fluid_synth_kill_by_exclusive_class_LOCAL(fluid_synth_t* synth,
|
||||
fluid_voice_t* new_voice);
|
||||
|
@ -783,7 +781,6 @@ delete_fluid_synth(fluid_synth_t* synth)
|
|||
int i, k;
|
||||
fluid_list_t *list;
|
||||
fluid_sfont_info_t* sfont_info;
|
||||
// fluid_event_queue_t* queue;
|
||||
fluid_sfloader_t* loader;
|
||||
|
||||
if (synth == NULL) {
|
||||
|
@ -4201,8 +4198,6 @@ fluid_synth_replace_tuning_LOCK (fluid_synth_t* synth, fluid_tuning_t *tuning,
|
|||
int bank, int prog, int apply)
|
||||
{
|
||||
fluid_tuning_t *old_tuning;
|
||||
// fluid_event_queue_t *queue;
|
||||
// fluid_event_queue_elem_t *event;
|
||||
|
||||
if (synth->tuning == NULL) {
|
||||
synth->tuning = FLUID_ARRAY(fluid_tuning_t**, 128);
|
||||
|
@ -4241,7 +4236,6 @@ static void
|
|||
fluid_synth_replace_tuning_LOCAL (fluid_synth_t *synth, fluid_tuning_t *old_tuning,
|
||||
fluid_tuning_t *new_tuning, int apply, int unref_new)
|
||||
{
|
||||
// fluid_event_queue_elem_t *event;
|
||||
fluid_channel_t *channel;
|
||||
int old_tuning_unref = 0;
|
||||
int i;
|
||||
|
@ -4504,8 +4498,6 @@ int
|
|||
fluid_synth_activate_tuning(fluid_synth_t* synth, int chan, int bank, int prog,
|
||||
int apply)
|
||||
{
|
||||
//fluid_event_queue_elem_t *event;
|
||||
//fluid_event_queue_t *queue;
|
||||
fluid_tuning_t* tuning;
|
||||
int retval = FLUID_OK;
|
||||
|
||||
|
|
|
@ -32,7 +32,6 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
#include "fluidsynth_priv.h"
|
||||
#include "fluid_event_queue.h"
|
||||
#include "fluid_list.h"
|
||||
#include "fluid_rev.h"
|
||||
#include "fluid_voice.h"
|
||||
|
|
Loading…
Reference in a new issue