diff options
author | Wohlstand <admin@wohlnet.ru> | 2020-08-22 00:53:03 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2020-08-22 00:53:03 +0300 |
commit | beffbe63b98380b6e89eb4cf32cfdb45be5eaf42 (patch) | |
tree | cb2f5f1406c52c3ca5821958426afe4cc4a027f6 /utils | |
parent | c4705d93e06d2d06bc1368ff42c51c11e933d9d5 (diff) | |
download | libADLMIDI-beffbe63b98380b6e89eb4cf32cfdb45be5eaf42.tar.gz libADLMIDI-beffbe63b98380b6e89eb4cf32cfdb45be5eaf42.tar.bz2 libADLMIDI-beffbe63b98380b6e89eb4cf32cfdb45be5eaf42.zip |
Measurer: try to use smaller amplitude coefficient for off fade-out
Diffstat (limited to 'utils')
-rw-r--r-- | utils/gen_adldata/measurer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/gen_adldata/measurer.cpp b/utils/gen_adldata/measurer.cpp index dc73363..4f28671 100644 --- a/utils/gen_adldata/measurer.cpp +++ b/utils/gen_adldata/measurer.cpp @@ -231,7 +231,7 @@ DurationInfo MeasureDurations(const ins &in, OPLChipBase *chip) unsigned max_period_off = max_off * interval; const double min_coefficient_on = 0.008; - const double min_coefficient_off = 0.2; + const double min_coefficient_off = 0.003; unsigned windows_passed_on = 0; unsigned windows_passed_off = 0; |