summaryrefslogtreecommitdiffstats
path: root/src/server/PortImpl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/PortImpl.hpp')
-rw-r--r--src/server/PortImpl.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/server/PortImpl.hpp b/src/server/PortImpl.hpp
index ddbaa087..da2ba237 100644
--- a/src/server/PortImpl.hpp
+++ b/src/server/PortImpl.hpp
@@ -61,7 +61,8 @@ public:
* Audio thread. Returned value must be freed by caller.
* \a buffers must be poly() long
*/
- Raul::Array<BufferRef>* set_buffers(Raul::Array<BufferRef>* buffers);
+ Raul::Array<BufferRef>* set_buffers(ProcessContext& context,
+ Raul::Array<BufferRef>* buffers);
/** Prepare for a new (external) polyphony value.
*
@@ -76,7 +77,8 @@ public:
* Audio thread.
* \a poly Must be < the most recent value passed to prepare_poly.
*/
- virtual bool apply_poly(Raul::Maid& maid, uint32_t poly);
+ virtual bool apply_poly(
+ ProcessContext& context, Raul::Maid& maid, uint32_t poly);
const Raul::Atom& value() const { return _value; }
void set_value(const Raul::Atom& v) { _value = v; }