c@78: c@90: #include "PipedQProcessTransport.h" c@90: #include "PiperCapnpClient.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@92: piper::PipedQProcessTransport transport("../bin/piper-vamp-server"); c@90: piper::PiperCapnpClient client(&transport); c@90: c@84: Vamp::Plugin *plugin = client.load("vamp-example-plugins:zerocrossing", 16, 0); 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@87: //!!! -- and also implement reset(), which will need to reconstruct internally c@84: } c@84: