comparison transform/RealTimeEffectModelTransformer.cpp @ 1713:978c143c767f

Merge from branch single-point
author Chris Cannam
date Fri, 17 May 2019 10:02:43 +0100
parents 7a56bb85030f
children fe3f7f8df3a3
comparison
equal deleted inserted replaced
1709:ab4fd193262b 1713:978c143c767f
264 264
265 sv_frame_t pointFrame = blockFrame; 265 sv_frame_t pointFrame = blockFrame;
266 if (pointFrame > latency) pointFrame -= latency; 266 if (pointFrame > latency) pointFrame -= latency;
267 else pointFrame = 0; 267 else pointFrame = 0;
268 268
269 stvm->addPoint(SparseTimeValueModel::Point 269 stvm->add(Event(pointFrame, value, ""));
270 (pointFrame, value, ""));
271 270
272 } else if (wwfm) { 271 } else if (wwfm) {
273 272
274 float **outbufs = m_plugin->getAudioOutputBuffers(); 273 float **outbufs = m_plugin->getAudioOutputBuffers();
275 274