diff options
Diffstat (limited to 'lib/port_handlers.cpp')
-rw-r--r-- | lib/port_handlers.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/port_handlers.cpp b/lib/port_handlers.cpp index 9ec805d..5777cf9 100644 --- a/lib/port_handlers.cpp +++ b/lib/port_handlers.cpp @@ -26,10 +26,10 @@ void ElementImpl::handle_input_msg( if (MESSAGE) std::cout << "handle_input_msg (" << msg.type().name() << ") " << name << std::endl; //handle incoming stream buffer, push into the queue - if (msg.type() == typeid(tsbe::Buffer)) + if (msg.type() == typeid(SBuffer)) { if (this->block_state == BLOCK_STATE_DONE) return; - this->input_queues.push(index, msg.cast<tsbe::Buffer>()); + this->input_queues.push(index, msg.cast<SBuffer>()); this->handle_task(handle); return; } |