Fix duplicate ‘const’ declaration specifier
This commit is contained in:
parent
23bb15dcf1
commit
b1cf27bed4
@ -286,7 +286,7 @@ run_mono(LV2_Handle instance, uint32_t n_samples)
|
|||||||
float makeup_target = from_dB(*acomp->makeup);
|
float makeup_target = from_dB(*acomp->makeup);
|
||||||
float makeup_gain = acomp->makeup_gain;
|
float makeup_gain = acomp->makeup_gain;
|
||||||
|
|
||||||
const const float tau = acomp->tau;
|
const float tau = acomp->tau;
|
||||||
|
|
||||||
if (*acomp->enable <= 0) {
|
if (*acomp->enable <= 0) {
|
||||||
ratio = 1.f;
|
ratio = 1.f;
|
||||||
@ -418,7 +418,7 @@ run_stereo(LV2_Handle instance, uint32_t n_samples)
|
|||||||
float makeup_target = from_dB(*acomp->makeup);
|
float makeup_target = from_dB(*acomp->makeup);
|
||||||
float makeup_gain = acomp->makeup_gain;
|
float makeup_gain = acomp->makeup_gain;
|
||||||
|
|
||||||
const const float tau = acomp->tau;
|
const float tau = acomp->tau;
|
||||||
|
|
||||||
if (*acomp->enable <= 0) {
|
if (*acomp->enable <= 0) {
|
||||||
ratio = 1.f;
|
ratio = 1.f;
|
||||||
|
Loading…
Reference in New Issue
Block a user