diff options
author | David Robillard <d@drobilla.net> | 2016-09-12 22:37:22 +0800 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2016-10-01 12:25:43 -0400 |
commit | fed7aaf0901e1b26dcc2bbb222f67b11f6b9d291 (patch) | |
tree | 8ae07a75439481109da586b211c4da85fca8730b /ingen | |
parent | 11b55676a510171a56975743fd752ccbcc170622 (diff) | |
download | ingen-fed7aaf0901e1b26dcc2bbb222f67b11f6b9d291.tar.gz ingen-fed7aaf0901e1b26dcc2bbb222f67b11f6b9d291.tar.bz2 ingen-fed7aaf0901e1b26dcc2bbb222f67b11f6b9d291.zip |
Add parallel graph execution
Diffstat (limited to 'ingen')
-rw-r--r-- | ingen/Configuration.hpp | 1 | ||||
-rw-r--r-- | ingen/EngineBase.hpp | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/ingen/Configuration.hpp b/ingen/Configuration.hpp index 28b6a19d..6d4655d6 100644 --- a/ingen/Configuration.hpp +++ b/ingen/Configuration.hpp @@ -23,6 +23,7 @@ #include <list> #include <map> +#include <ostream> #include <string> #include "ingen/Atom.hpp" diff --git a/ingen/EngineBase.hpp b/ingen/EngineBase.hpp index 3a460b62..7ba4467a 100644 --- a/ingen/EngineBase.hpp +++ b/ingen/EngineBase.hpp @@ -68,6 +68,11 @@ public: virtual bool pending_events() = 0; /** + Locate to a given cycle. + */ + virtual void locate(uint32_t start, uint32_t sample_count) = 0; + + /** Process audio for `sample_count` frames. If the return value is non-zero, events have been processed and are |