Apply curve to faders

Apply a curve, i.e. the cube function and its inverse, to the fader
positions to that we have more space to work with in the "interesting"
areas around 0 dB and less space in the area where we tend to "-inf dB".

Set the minimum dB value of the fader to -120 dB to increase the potential
headroom.
This commit is contained in:
Michael Gregorius
2024-12-23 22:18:33 +01:00
parent 872409afd8
commit f8e0bf5184
2 changed files with 32 additions and 11 deletions

View File

@@ -143,7 +143,7 @@ private:
bool m_levelsDisplayedInDBFS {true};
// The dbFS amount after which we drop down to -inf dbFS
float const m_faderMinDb {-60.};
float const m_faderMinDb {-120.};
static SimpleTextFloat* s_textFloat;