mixer_module: create MixingOutput library and use in fmu

This should be a pure refactoring, no functional change.
This commit is contained in:
Beat Küng
2019-08-22 08:22:57 +02:00
committed by Daniel Agar
parent 0ec6e79a0a
commit d3fb610fde
9 changed files with 831 additions and 448 deletions

View File

@@ -57,6 +57,15 @@ public:
virtual void Run() = 0;
/**
* Switch to a different WorkQueue.
* NOTE: Caller is responsible for synchronization.
*
* @param config The WorkQueue configuration (see WorkQueueManager.hpp).
* @return true if initialization was successful
*/
bool ChangeWorkQeue(const wq_config_t &config) { return Init(config); }
protected:
/**