diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-10-14 15:24:36 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-02-18 11:43:40 +0100 |
commit | 0dc69ba161bb0c8fce2eb0ab3c5eb897f7aa92a7 (patch) | |
tree | d33fcf6f429124cd551177e3d28aa3ac7bc29272 /src/inputprocessor.h | |
parent | 3515fe8b970bd7cd849ea44e24bc01331e894314 (diff) |
Implemented engine part of the latency filter aka. humized timing.
Diffstat (limited to 'src/inputprocessor.h')
-rw-r--r-- | src/inputprocessor.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/inputprocessor.h b/src/inputprocessor.h index fe72292..cf62ea2 100644 --- a/src/inputprocessor.h +++ b/src/inputprocessor.h @@ -37,13 +37,15 @@ #include "inputfilter.h" struct Settings; +class Random; class InputProcessor { public: InputProcessor(Settings& settings, DrumKit& kit, - std::list<Event*>* activeevents); + std::list<Event*>* activeevents, + Random& random); bool process(std::vector<event_t>& events, std::size_t pos, |