diff vamp-client/client.cpp @ 98:f55631599988

Plugin that creates its own server
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 13 Oct 2016 19:11:24 +0100
parents 427c4c725085
children 8c449824e08d
line wrap: on
line diff
--- a/vamp-client/client.cpp	Thu Oct 13 18:05:35 2016 +0100
+++ b/vamp-client/client.cpp	Thu Oct 13 19:11:24 2016 +0100
@@ -1,6 +1,7 @@
 
 #include "ProcessQtTransport.h"
 #include "CapnpRRClient.h"
+#include "AutoPlugin.h"
 
 #include <stdexcept>
 
@@ -58,5 +59,26 @@
     (void)plugin->getRemainingFeatures();
 
     delete plugin;
+
+    // Let's try a crazy AutoPlugin
+
+    piper_vamp::client::AutoPlugin ap("vamp-example-plugins:zerocrossing", 16, 0);
+    if (!ap.isOK()) {
+	cerr << "AutoPlugin creation failed" << endl;
+    } else {
+	if (!ap.initialise(1, 4, 4)) {
+	    cerr << "initialisation failed" << endl;
+	} else {
+	    std::vector<float> buf = { 1.0, -1.0, 1.0, -1.0 };
+	    float *bd = buf.data();
+	    Vamp::Plugin::FeatureSet features = ap.process
+		(&bd, Vamp::RealTime::zeroTime);
+	    cerr << "results for output 0:" << endl;
+	    auto fl(features[0]);
+	    for (const auto &f: fl) {
+		cerr << f.values[0] << endl;
+	    }
+	}
+    }
 }