Mercurial > hg > piper-cpp
diff 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 |
line wrap: on
line diff
--- a/vamp-client/client.cpp Wed Nov 02 18:26:47 2016 +0000 +++ b/vamp-client/client.cpp Wed Nov 02 18:39:51 2016 +0000 @@ -44,11 +44,11 @@ int main(int, char **) { - piper_vamp::client::ProcessQtTransport transport("../bin/piper-vamp-server", + piper_vamp::client::ProcessQtTransport transport("../bin/piper-vamp-simple-server", "capnp"); piper_vamp::client::CapnpRRClient client(&transport); - piper_vamp::ListResponse lr = client.listPluginData(); + piper_vamp::ListResponse lr = client.listPluginData({}); cerr << "Plugins available:" << endl; int i = 1; for (const auto &p: lr.available) { @@ -97,7 +97,7 @@ // Let's try a crazy AutoPlugin - piper_vamp::client::AutoPlugin ap("../bin/piper-vamp-server", + piper_vamp::client::AutoPlugin ap("../bin/piper-vamp-simple-server", "vamp-example-plugins:zerocrossing", 16, 0); if (!ap.isOK()) { cerr << "AutoPlugin creation failed" << endl;