comparison vamp-client/client.cpp @ 131:183fe1f03980

Update client to support list from
author Chris Cannam <c.cannam@qmul.ac.uk>
date Wed, 02 Nov 2016 18:39:51 +0000
parents 5876f3e9c677
children 70bf40743d6a
comparison
equal deleted inserted replaced
130:b37530377d6e 131:183fe1f03980
42 using std::cerr; 42 using std::cerr;
43 using std::endl; 43 using std::endl;
44 44
45 int main(int, char **) 45 int main(int, char **)
46 { 46 {
47 piper_vamp::client::ProcessQtTransport transport("../bin/piper-vamp-server", 47 piper_vamp::client::ProcessQtTransport transport("../bin/piper-vamp-simple-server",
48 "capnp"); 48 "capnp");
49 piper_vamp::client::CapnpRRClient client(&transport); 49 piper_vamp::client::CapnpRRClient client(&transport);
50 50
51 piper_vamp::ListResponse lr = client.listPluginData(); 51 piper_vamp::ListResponse lr = client.listPluginData({});
52 cerr << "Plugins available:" << endl; 52 cerr << "Plugins available:" << endl;
53 int i = 1; 53 int i = 1;
54 for (const auto &p: lr.available) { 54 for (const auto &p: lr.available) {
55 cerr << i++ << ". [" << p.pluginKey << "] " << p.basic.name << endl; 55 cerr << i++ << ". [" << p.pluginKey << "] " << p.basic.name << endl;
56 } 56 }
95 95
96 delete plugin; 96 delete plugin;
97 97
98 // Let's try a crazy AutoPlugin 98 // Let's try a crazy AutoPlugin
99 99
100 piper_vamp::client::AutoPlugin ap("../bin/piper-vamp-server", 100 piper_vamp::client::AutoPlugin ap("../bin/piper-vamp-simple-server",
101 "vamp-example-plugins:zerocrossing", 16, 0); 101 "vamp-example-plugins:zerocrossing", 16, 0);
102 if (!ap.isOK()) { 102 if (!ap.isOK()) {
103 cerr << "AutoPlugin creation failed" << endl; 103 cerr << "AutoPlugin creation failed" << endl;
104 } else { 104 } else {
105 if (!ap.initialise(1, 4, 4)) { 105 if (!ap.initialise(1, 4, 4)) {