diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-08-09 19:23:19 +0200 |
---|---|---|
committer | Volker Fischer <corrados@users.noreply.github.com> | 2021-08-09 22:30:57 +0200 |
commit | 8c02033ce689f73834e0b41fd09ef05a74f9a0ba (patch) | |
tree | a122a91a5c51d1ecdc0fdebaa01365bd2d485f37 /src | |
parent | d4d0011d3833d979b44f2116a628b10bb75b64a4 (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 d8a7ff9..8481684 100644 --- a/src/inputprocessor.cc +++ b/src/inputprocessor.cc @@ -359,7 +359,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); } } } |