remove redundant debug vars for fluid_voice_t

This commit is contained in:
derselbst 2017-10-19 23:46:20 +02:00
parent 7fb3a93e83
commit 69d41ae5ec
2 changed files with 0 additions and 7 deletions

View file

@ -268,7 +268,6 @@ fluid_voice_init(fluid_voice_t* voice, fluid_sample_t* sample,
voice->channel = channel;
voice->mod_count = 0;
voice->start_time = start_time;
voice->debug = 0;
voice->has_noteoff = 0;
UPDATE_RVOICE0(fluid_rvoice_reset);
@ -456,8 +455,6 @@ void fluid_voice_start(fluid_voice_t* voice)
fluid_voice_calculate_runtime_synthesis_parameters(voice);
voice->ref = fluid_profile_ref();
voice->status = FLUID_VOICE_ON;
/* Increment voice count */

View file

@ -105,10 +105,6 @@ struct _fluid_voice_t
fluid_rvoice_t* overflow_rvoice; /* Used temporarily and only in overflow situations */
int can_access_rvoice; /* False if rvoice is being rendered in separate thread */
int can_access_overflow_rvoice; /* False if overflow_rvoice is being rendered in separate thread */
/* for debugging */
int debug;
double ref;
};