comparison vamp-client/client.cpp @ 95:b6ac26b72b59

Implement list, use request-response classes in loader
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 13 Oct 2016 14:31:10 +0100
parents a660dca988f8
children 215c9fb6b7a4
comparison
equal deleted inserted replaced
94:a660dca988f8 95:b6ac26b72b59
10 int main(int, char **) 10 int main(int, char **)
11 { 11 {
12 piper::vampclient::ProcessQtTransport transport("../bin/piper-vamp-server"); 12 piper::vampclient::ProcessQtTransport transport("../bin/piper-vamp-server");
13 piper::vampclient::CapnpClient client(&transport); 13 piper::vampclient::CapnpClient client(&transport);
14 14
15 Vamp::Plugin *plugin = client.load("vamp-example-plugins:zerocrossing", 16, 0); 15 Vamp::HostExt::ListResponse lr = client.listPluginData();
16 cerr << "Plugins available:" << endl;
17 int i = 1;
18 for (const auto &p: lr.available) {
19 cerr << i++ << ". [" << p.pluginKey << "] " << p.basic.name << endl;
20 }
21
22 Vamp::HostExt::LoadRequest req;
23 req.pluginKey = "vamp-example-plugins:zerocrossing";
24 req.inputSampleRate = 16;
25 Vamp::HostExt::LoadResponse resp = client.loadPlugin(req);
26 Vamp::Plugin *plugin = resp.plugin;
27
16 if (!plugin->initialise(1, 4, 4)) { 28 if (!plugin->initialise(1, 4, 4)) {
17 cerr << "initialisation failed" << endl; 29 cerr << "initialisation failed" << endl;
18 } else { 30 } else {
19 std::vector<float> buf = { 1.0, -1.0, 1.0, -1.0 }; 31 std::vector<float> buf = { 1.0, -1.0, 1.0, -1.0 };
20 float *bd = buf.data(); 32 float *bd = buf.data();