just comments
This commit is contained in:
parent
0605204593
commit
156374aca4
@ -466,7 +466,7 @@ static inline void bw_env_gen_init(
|
|||||||
coeffs->skip_sustain = 0;
|
coeffs->skip_sustain = 0;
|
||||||
coeffs->always_reach_sustain = 0;
|
coeffs->always_reach_sustain = 0;
|
||||||
|
|
||||||
coeffs->param_changed = ~0;
|
coeffs->param_changed = ~0; // useless, just to make compilers happy about uninitialized variables
|
||||||
|
|
||||||
#ifdef BW_DEBUG_DEEP
|
#ifdef BW_DEBUG_DEEP
|
||||||
coeffs->hash = bw_hash_sdbm("bw_env_gen_coeffs");
|
coeffs->hash = bw_hash_sdbm("bw_env_gen_coeffs");
|
||||||
|
@ -401,7 +401,7 @@ static inline void bw_hs2_init(
|
|||||||
coeffs->prewarp_freq = 1.f;
|
coeffs->prewarp_freq = 1.f;
|
||||||
coeffs->high_gain = 1.f;
|
coeffs->high_gain = 1.f;
|
||||||
|
|
||||||
coeffs->param_changed = ~0;
|
coeffs->param_changed = ~0; // useless, just to make compilers happy about uninitialized variables
|
||||||
|
|
||||||
#ifdef BW_DEBUG_DEEP
|
#ifdef BW_DEBUG_DEEP
|
||||||
coeffs->hash = bw_hash_sdbm("bw_hs2_coeffs");
|
coeffs->hash = bw_hash_sdbm("bw_hs2_coeffs");
|
||||||
|
@ -407,7 +407,7 @@ static inline void bw_ls2_init(
|
|||||||
coeffs->prewarp_freq = 1.f;
|
coeffs->prewarp_freq = 1.f;
|
||||||
coeffs->dc_gain = 1.f;
|
coeffs->dc_gain = 1.f;
|
||||||
|
|
||||||
coeffs->param_changed = ~0;
|
coeffs->param_changed = ~0; // useless, just to make compilers happy about uninitialized variables
|
||||||
|
|
||||||
#ifdef BW_DEBUG_DEEP
|
#ifdef BW_DEBUG_DEEP
|
||||||
coeffs->hash = bw_hash_sdbm("bw_ls2_coeffs");
|
coeffs->hash = bw_hash_sdbm("bw_ls2_coeffs");
|
||||||
|
@ -521,7 +521,7 @@ static inline void bw_one_pole_init(
|
|||||||
coeffs->sticky_thresh = 0.f;
|
coeffs->sticky_thresh = 0.f;
|
||||||
coeffs->sticky_mode = bw_one_pole_sticky_mode_abs;
|
coeffs->sticky_mode = bw_one_pole_sticky_mode_abs;
|
||||||
|
|
||||||
coeffs->param_changed = ~0; // useless, just to make compilers happy about initialized variables
|
coeffs->param_changed = ~0; // useless, just to make compilers happy about uninitialized variables
|
||||||
|
|
||||||
#ifdef BW_DEBUG_DEEP
|
#ifdef BW_DEBUG_DEEP
|
||||||
coeffs->hash = bw_hash_sdbm("bw_one_pole_coeffs");
|
coeffs->hash = bw_hash_sdbm("bw_one_pole_coeffs");
|
||||||
|
@ -436,7 +436,7 @@ static inline void bw_peak_init(
|
|||||||
coeffs->bandwidth = 2.543106606327224f;
|
coeffs->bandwidth = 2.543106606327224f;
|
||||||
coeffs->use_bandwidth = 1;
|
coeffs->use_bandwidth = 1;
|
||||||
|
|
||||||
coeffs->param_changed = ~0;
|
coeffs->param_changed = ~0; // useless, just to make compilers happy about uninitialized variables
|
||||||
|
|
||||||
#ifdef BW_DEBUG_DEEP
|
#ifdef BW_DEBUG_DEEP
|
||||||
coeffs->hash = bw_hash_sdbm("bw_peak_coeffs");
|
coeffs->hash = bw_hash_sdbm("bw_peak_coeffs");
|
||||||
|
Loading…
Reference in New Issue
Block a user