Also the stereo version needs to set need_expose
This commit is contained in:
parent
f68754b19d
commit
dff4153024
@ -423,7 +423,8 @@ run_stereo(LV2_Handle instance, uint32_t n_samples)
|
||||
|
||||
float ratio = *acomp->ratio;
|
||||
float thresdb = *acomp->thresdb;
|
||||
float makeup_target = from_dB(*acomp->makeup);
|
||||
float makeup = *acomp->makeup;
|
||||
float makeup_target = from_dB(makeup);
|
||||
float makeup_gain = acomp->makeup_gain;
|
||||
|
||||
const float tau = acomp->tau;
|
||||
@ -449,6 +450,11 @@ run_stereo(LV2_Handle instance, uint32_t n_samples)
|
||||
acomp->v_thresdb = thresdb;
|
||||
acomp->need_expose = true;
|
||||
}
|
||||
|
||||
if (acomp->v_makeup != makeup) {
|
||||
acomp->v_makeup = makeup;
|
||||
acomp->need_expose = true;
|
||||
}
|
||||
#endif
|
||||
|
||||
float in_peak = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user