Mercurial > hg > svcore
diff plugin/LADSPAPluginInstance.cpp @ 66:7afcfe666910
* Modify to use Vamp SDK for proper feature extraction plugins.
Requires that the vamp-plugin-sdk directory tree be present below
plugin/ (it's separate in Subversion).
author | Chris Cannam |
---|---|
date | Fri, 31 Mar 2006 15:56:35 +0000 |
parents | 33285f426852 |
children | c983dda79f72 |
line wrap: on
line diff
--- a/plugin/LADSPAPluginInstance.cpp Thu Mar 30 15:00:22 2006 +0000 +++ b/plugin/LADSPAPluginInstance.cpp Fri Mar 31 15:56:35 2006 +0000 @@ -224,7 +224,7 @@ LADSPAPluginInstance::getLatency() { if (m_latencyPort) { - if (!m_run) run(RealTime::zeroTime); + if (!m_run) run(Vamp::RealTime::zeroTime); if (*m_latencyPort > 0) return (size_t)*m_latencyPort; } return 0; @@ -441,7 +441,7 @@ } void -LADSPAPluginInstance::run(const RealTime &) +LADSPAPluginInstance::run(const Vamp::RealTime &) { if (!m_descriptor || !m_descriptor->run) return;