comparison vamp-client/client.cpp @ 97:427c4c725085

Bring in the Request/Response classes that were in the Vamp SDK, adding them to vamp-support in here instead
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 13 Oct 2016 18:05:35 +0100
parents 215c9fb6b7a4
children f55631599988
comparison
equal deleted inserted replaced
96:215c9fb6b7a4 97:427c4c725085
7 using std::cerr; 7 using std::cerr;
8 using std::endl; 8 using std::endl;
9 9
10 int main(int, char **) 10 int main(int, char **)
11 { 11 {
12 piper::vampclient::ProcessQtTransport transport("../bin/piper-vamp-server"); 12 piper_vamp::client::ProcessQtTransport transport("../bin/piper-vamp-server");
13 piper::vampclient::CapnpRRClient client(&transport); 13 piper_vamp::client::CapnpRRClient client(&transport);
14 14
15 Vamp::HostExt::ListResponse lr = client.listPluginData(); 15 piper_vamp::ListResponse lr = client.listPluginData();
16 cerr << "Plugins available:" << endl; 16 cerr << "Plugins available:" << endl;
17 int i = 1; 17 int i = 1;
18 for (const auto &p: lr.available) { 18 for (const auto &p: lr.available) {
19 cerr << i++ << ". [" << p.pluginKey << "] " << p.basic.name << endl; 19 cerr << i++ << ". [" << p.pluginKey << "] " << p.basic.name << endl;
20 } 20 }
21 21
22 Vamp::HostExt::LoadRequest req; 22 piper_vamp::LoadRequest req;
23 req.pluginKey = "vamp-example-plugins:zerocrossing"; 23 req.pluginKey = "vamp-example-plugins:zerocrossing";
24 req.inputSampleRate = 16; 24 req.inputSampleRate = 16;
25 Vamp::HostExt::LoadResponse resp = client.loadPlugin(req); 25 piper_vamp::LoadResponse resp = client.loadPlugin(req);
26 Vamp::Plugin *plugin = resp.plugin; 26 Vamp::Plugin *plugin = resp.plugin;
27 27
28 if (!plugin->initialise(1, 4, 4)) { 28 if (!plugin->initialise(1, 4, 4)) {
29 cerr << "initialisation failed" << endl; 29 cerr << "initialisation failed" << endl;
30 } else { 30 } else {