diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-08-09 19:23:19 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-08-09 19:23:19 +0200 |
commit | 380213d0a092a874182f1cf9c8d0cf828a624511 (patch) | |
tree | de3f4e8f8ee5252244afe9ca3d58c5fa589fa134 /src | |
parent | f43935b5c873676a632b23cbfcef45a4431b233d (diff) |
Adjust choke ramp-down time to better reflect the actual dampening time of a hand-dampened cymbal.
Diffstat (limited to 'src')
-rw-r--r-- | src/inputprocessor.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inputprocessor.cc b/src/inputprocessor.cc index 822e8b1..7d12bdd 100644 --- a/src/inputprocessor.cc +++ b/src/inputprocessor.cc @@ -356,7 +356,7 @@ bool InputProcessor::processChoke(event_t& event, event_sample.rampdown_count == -1) // Only if not already ramping. { // Fixed group rampdown time of 68ms, independent of samplerate - applyChoke(settings, event_sample, 68, event.offset); + applyChoke(settings, event_sample, 450, event.offset); } } } |