c@78
|
1
|
c@94
|
2 #include "ProcessQtTransport.h"
|
c@94
|
3 #include "CapnpClient.h"
|
c@83
|
4
|
c@83
|
5 #include <stdexcept>
|
c@83
|
6
|
c@83
|
7 using std::cerr;
|
c@83
|
8 using std::endl;
|
c@83
|
9
|
c@84
|
10 int main(int, char **)
|
c@84
|
11 {
|
c@94
|
12 piper::vampclient::ProcessQtTransport transport("../bin/piper-vamp-server");
|
c@94
|
13 piper::vampclient::CapnpClient client(&transport);
|
c@94
|
14
|
c@84
|
15 Vamp::Plugin *plugin = client.load("vamp-example-plugins:zerocrossing", 16, 0);
|
c@84
|
16 if (!plugin->initialise(1, 4, 4)) {
|
c@84
|
17 cerr << "initialisation failed" << endl;
|
c@84
|
18 } else {
|
c@84
|
19 std::vector<float> buf = { 1.0, -1.0, 1.0, -1.0 };
|
c@84
|
20 float *bd = buf.data();
|
c@84
|
21 Vamp::Plugin::FeatureSet features = plugin->process
|
c@84
|
22 (&bd, Vamp::RealTime::zeroTime);
|
c@84
|
23 cerr << "results for output 0:" << endl;
|
c@84
|
24 auto fl(features[0]);
|
c@84
|
25 for (const auto &f: fl) {
|
c@84
|
26 cerr << f.values[0] << endl;
|
c@84
|
27 }
|
c@84
|
28 }
|
c@88
|
29
|
c@87
|
30 (void)plugin->getRemainingFeatures();
|
c@89
|
31
|
c@89
|
32 cerr << "calling reset..." << endl;
|
c@89
|
33 plugin->reset();
|
c@89
|
34 cerr << "...round 2!" << endl;
|
c@89
|
35
|
c@89
|
36 std::vector<float> buf = { 1.0, -1.0, 1.0, -1.0 };
|
c@89
|
37 float *bd = buf.data();
|
c@89
|
38 Vamp::Plugin::FeatureSet features = plugin->process
|
c@89
|
39 (&bd, Vamp::RealTime::zeroTime);
|
c@89
|
40 cerr << "results for output 0:" << endl;
|
c@89
|
41 auto fl(features[0]);
|
c@89
|
42 for (const auto &f: fl) {
|
c@89
|
43 cerr << f.values[0] << endl;
|
c@89
|
44 }
|
c@89
|
45
|
c@89
|
46 (void)plugin->getRemainingFeatures();
|
c@89
|
47
|
c@88
|
48 delete plugin;
|
c@87
|
49 //!!! -- and also implement reset(), which will need to reconstruct internally
|
c@84
|
50 }
|
c@84
|
51
|