summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/Port.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/Port.hpp')
-rw-r--r--src/libs/engine/Port.hpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/libs/engine/Port.hpp b/src/libs/engine/Port.hpp
index 35bf0f9b..e504507c 100644
--- a/src/libs/engine/Port.hpp
+++ b/src/libs/engine/Port.hpp
@@ -87,21 +87,23 @@ public:
void fixed_buffers(bool b) { _fixed_buffers = b; }
bool fixed_buffers() { return _fixed_buffers; }
- void monitor(bool b) { _monitor = b; }
- bool monitor() { return _monitor; }
+ void broadcast(bool b) { _broadcast = b; }
+ bool broadcast() { return _broadcast; }
protected:
Port(Node* const node, const std::string& name, uint32_t index, uint32_t poly, DataType type, size_t buffer_size);
virtual void allocate_buffers();
virtual void connect_buffers();
+ virtual void broadcast(ProcessContext& context);
uint32_t _index;
uint32_t _poly;
uint32_t _buffer_size;
DataType _type;
bool _fixed_buffers;
- bool _monitor;
+ bool _broadcast;
+ Sample _last_broadcasted_value;
Raul::Array<Buffer*>* _buffers;