annotate vamp-client/client.cpp @ 93:fbce91785d35

Having a class called PipedXX is too confusing with all the Piper classes; give up and rename it
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 13 Oct 2016 12:07:41 +0100
parents 21f8af53eaf0
children a660dca988f8
rev   line source
c@78 1
c@93 2 #include "PiperQProcessTransport.h"
c@90 3 #include "PiperCapnpClient.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@93 12 piper::PiperQProcessTransport transport("../bin/piper-vamp-server");
c@90 13 piper::PiperCapnpClient client(&transport);
c@90 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