comparison vamp-client/client.cpp @ 94:a660dca988f8

More renaming
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 13 Oct 2016 14:10:55 +0100
parents fbce91785d35
children b6ac26b72b59
comparison
equal deleted inserted replaced
93:fbce91785d35 94:a660dca988f8
1 1
2 #include "PiperQProcessTransport.h" 2 #include "ProcessQtTransport.h"
3 #include "PiperCapnpClient.h" 3 #include "CapnpClient.h"
4 4
5 #include <stdexcept> 5 #include <stdexcept>
6 6
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::PiperQProcessTransport transport("../bin/piper-vamp-server"); 12 piper::vampclient::ProcessQtTransport transport("../bin/piper-vamp-server");
13 piper::PiperCapnpClient client(&transport); 13 piper::vampclient::CapnpClient client(&transport);
14 14
15 Vamp::Plugin *plugin = client.load("vamp-example-plugins:zerocrossing", 16, 0); 15 Vamp::Plugin *plugin = client.load("vamp-example-plugins:zerocrossing", 16, 0);
16 if (!plugin->initialise(1, 4, 4)) { 16 if (!plugin->initialise(1, 4, 4)) {
17 cerr << "initialisation failed" << endl; 17 cerr << "initialisation failed" << endl;
18 } else { 18 } else {
19 std::vector<float> buf = { 1.0, -1.0, 1.0, -1.0 }; 19 std::vector<float> buf = { 1.0, -1.0, 1.0, -1.0 };