summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/OSCBuffer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/OSCBuffer.hpp')
-rw-r--r--src/libs/engine/OSCBuffer.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libs/engine/OSCBuffer.hpp b/src/libs/engine/OSCBuffer.hpp
index 9f352de3..31371641 100644
--- a/src/libs/engine/OSCBuffer.hpp
+++ b/src/libs/engine/OSCBuffer.hpp
@@ -37,8 +37,6 @@ public:
void prepare_read(SampleCount nframes);
void prepare_write(SampleCount nframes);
-
- void* raw_data() const { return _buf; }
bool is_joined_to(Buffer* buf) const;
bool join(Buffer* buf);
@@ -48,6 +46,9 @@ public:
uint32_t this_nframes() const { return _this_nframes; }
uint32_t event_count() const { return _buf->message_count; }
+
+ inline void* raw_data() const
+ { return ((_joined_buf != NULL) ? _joined_buf->raw_data() : _buf); }
inline LV2OSCBuffer* data()
{ return ((_joined_buf != NULL) ? _joined_buf->data() : _buf); }