diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-06-06 20:26:13 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-06-06 20:26:13 +0200 |
commit | 195a3d15e490465b64a19d2f09e8a2d8d81e2b2a (patch) | |
tree | 8bcb0a8ee9431ae5e00369354b22ed5763cc75fc /src/inputprocessor.h | |
parent | e43a808290630b4a0810b283ad1e3b9411bb3016 (diff) |
Add basic latency reporting methods.
Diffstat (limited to 'src/inputprocessor.h')
-rw-r--r-- | src/inputprocessor.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/inputprocessor.h b/src/inputprocessor.h index da370ec..83a4f5b 100644 --- a/src/inputprocessor.h +++ b/src/inputprocessor.h @@ -37,7 +37,12 @@ class InputProcessor { public: InputProcessor(DrumKit& kit, std::list<Event*>* activeevents); - bool process(const std::vector<event_t>& events, size_t pos, double resample_ratio); + + bool process(const std::vector<event_t>& events, size_t pos, + double resample_ratio); + + std::size_t getLatency() const; + private: DrumKit& kit; std::list<Event*>* activeevents; |