Update ctrl surfaces, incl denoiser makeup gain

This commit is contained in:
Robin Gareus
2026-07-15 20:59:32 +02:00
parent 49a1f591e4
commit 1ffb66547a
2 changed files with 4 additions and 0 deletions
+1
View File
@@ -1402,6 +1402,7 @@ FaderPort8::build_well_known_processor_ctrls (std::shared_ptr<Stripable> s, int
PUSH_BACK_NON_NULL ("Threshold", s->mapped_control (Denoise_Threshold));
PUSH_BACK_NON_NULL ("Low Depth", s->mapped_control (Denoise_DepthLow));
PUSH_BACK_NON_NULL ("Hi DEpth", s->mapped_control (Denoise_DepthHigh));
PUSH_BACK_NON_NULL ("Makeup", s->mapped_control (Denoise_Makeup));
break;
default:
assert (0);
@@ -1500,6 +1500,9 @@ GenericMidiControlProtocol::lookup_controllable (const string & str, MIDIControl
else if (path[2] == X_("depth_high")) {
c = s->mapped_control (Denoise_DepthHigh);
}
else if (path[2] == X_("makeup_gain")) {
c = s->mapped_control (Denoise_Makeup);
}
}
else if (path[1] == X_("tape"))
{