| 40 | constexpr auto compressionMeterPanelWidth = 30; |
| 41 | |
| 42 | float GetDbRange(float maxCompressionDb) |
| 43 | { |
| 44 | constexpr auto minRange = 3.f; |
| 45 | return std::max(minRange, maxCompressionDb / 2); |
| 46 | } |
| 47 | |
| 48 | DynamicRangeProcessorSettings GetSettings(EffectSettingsAccess& access) |
| 49 | { |
no test coverage detected