diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2021-11-04 19:05:34 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2021-11-04 19:06:25 +0100 |
commit | 35b46547cb0be698d0f3a2c17437bad2a5067789 (patch) | |
tree | e44a0bb7c780a90b93b9892482044a04a949908d /tracker-pt/pt-settings.hpp | |
parent | c99692bf76ccc6798181ec13547f45f1f8430b78 (diff) |
tracker/pt: add point filter gain limiter
Diffstat (limited to 'tracker-pt/pt-settings.hpp')
-rw-r--r-- | tracker-pt/pt-settings.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tracker-pt/pt-settings.hpp b/tracker-pt/pt-settings.hpp index 876ba573..cce2ba6b 100644 --- a/tracker-pt/pt-settings.hpp +++ b/tracker-pt/pt-settings.hpp @@ -70,6 +70,7 @@ struct pt_settings final : options::opts value<bool> enable_point_filter{ b, "enable-point-filter", false }; value<slider_value> point_filter_coefficient { b, "point-filter-coefficient", { 1.0, 0, 4 } }; + value<slider_value> point_filter_limit { b, "point-filter-limit", { 0.1, 0.01, 1 }}; explicit pt_settings(const QString& name) : opts(name) {} }; |