diff vamp-sdk/PluginHostAdapter.cpp @ 197:fe30a25ee4f8

* Add processInterleaved to PluginChannelAdapter
author cannam
date Tue, 07 Oct 2008 21:07:04 +0000
parents d4fbd4e6fdbf
children
line wrap: on
line diff
--- a/vamp-sdk/PluginHostAdapter.cpp	Tue Oct 07 20:07:17 2008 +0000
+++ b/vamp-sdk/PluginHostAdapter.cpp	Tue Oct 07 21:07:04 2008 +0000
@@ -127,7 +127,11 @@
 void
 PluginHostAdapter::reset()
 {
-    if (!m_handle) return;
+    if (!m_handle) {
+//        std::cerr << "PluginHostAdapter::reset: no handle" << std::endl;
+        return;
+    }
+//    std::cerr << "PluginHostAdapter::reset(" << m_handle << ")" << std::endl;
     m_descriptor->reset(m_handle);
 }