Mercurial > hg > piper-cpp
comparison vamp-client/PluginStub.h @ 170:590b1a1fd955
More work on error and exception handling
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Tue, 31 Jan 2017 14:53:24 +0000 |
parents | f13dc1db2229 |
children | 3eb00e5c76c4 |
comparison
equal
deleted
inserted
replaced
169:f13dc1db2229 | 170:590b1a1fd955 |
---|---|
259 if (m_state == Finished) { | 259 if (m_state == Finished) { |
260 m_state = Failed; | 260 m_state = Failed; |
261 throw std::logic_error("Plugin has already been disposed of"); | 261 throw std::logic_error("Plugin has already been disposed of"); |
262 } | 262 } |
263 | 263 |
264 //!!! ew | |
265 std::vector<std::vector<float> > vecbuf; | 264 std::vector<std::vector<float> > vecbuf; |
266 for (int c = 0; c < m_config.channelCount; ++c) { | 265 for (int c = 0; c < m_config.channelCount; ++c) { |
267 vecbuf.push_back(std::vector<float> | 266 vecbuf.push_back(std::vector<float> |
268 (inputBuffers[c], | 267 (inputBuffers[c], |
269 inputBuffers[c] + m_config.blockSize)); | 268 inputBuffers[c] + m_config.blockSize)); |