c@78: c@94: #include "ProcessQtTransport.h" c@96: #include "CapnpRRClient.h" c@83: c@83: #include c@83: c@83: using std::cerr; c@83: using std::endl; c@83: c@84: int main(int, char **) c@84: { c@94: piper::vampclient::ProcessQtTransport transport("../bin/piper-vamp-server"); c@96: piper::vampclient::CapnpRRClient client(&transport); c@94: c@95: Vamp::HostExt::ListResponse lr = client.listPluginData(); c@95: cerr << "Plugins available:" << endl; c@95: int i = 1; c@95: for (const auto &p: lr.available) { c@95: cerr << i++ << ". [" << p.pluginKey << "] " << p.basic.name << endl; c@95: } c@95: c@95: Vamp::HostExt::LoadRequest req; c@95: req.pluginKey = "vamp-example-plugins:zerocrossing"; c@95: req.inputSampleRate = 16; c@95: Vamp::HostExt::LoadResponse resp = client.loadPlugin(req); c@95: Vamp::Plugin *plugin = resp.plugin; c@95: c@84: if (!plugin->initialise(1, 4, 4)) { c@84: cerr << "initialisation failed" << endl; c@84: } else { c@84: std::vector buf = { 1.0, -1.0, 1.0, -1.0 }; c@84: float *bd = buf.data(); c@84: Vamp::Plugin::FeatureSet features = plugin->process c@84: (&bd, Vamp::RealTime::zeroTime); c@84: cerr << "results for output 0:" << endl; c@84: auto fl(features[0]); c@84: for (const auto &f: fl) { c@84: cerr << f.values[0] << endl; c@84: } c@84: } c@88: c@87: (void)plugin->getRemainingFeatures(); c@89: c@89: cerr << "calling reset..." << endl; c@89: plugin->reset(); c@89: cerr << "...round 2!" << endl; c@89: c@89: std::vector buf = { 1.0, -1.0, 1.0, -1.0 }; c@89: float *bd = buf.data(); c@89: Vamp::Plugin::FeatureSet features = plugin->process c@89: (&bd, Vamp::RealTime::zeroTime); c@89: cerr << "results for output 0:" << endl; c@89: auto fl(features[0]); c@89: for (const auto &f: fl) { c@89: cerr << f.values[0] << endl; c@89: } c@89: c@89: (void)plugin->getRemainingFeatures(); c@89: c@88: delete plugin; c@84: } c@84: