comparison vamp-client/client.cpp @ 118:ff3fd8d1b2dc

Boilerplate comments
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 27 Oct 2016 12:01:37 +0100
parents 8c449824e08d
children 5876f3e9c677
comparison
equal deleted inserted replaced
117:5dffc5147176 118:ff3fd8d1b2dc
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
2 /*
3 Piper C++
4
5 An API for audio analysis and feature extraction plugins.
6
7 Centre for Digital Music, Queen Mary, University of London.
8 Copyright 2006-2016 Chris Cannam and QMUL.
9
10 Permission is hereby granted, free of charge, to any person
11 obtaining a copy of this software and associated documentation
12 files (the "Software"), to deal in the Software without
13 restriction, including without limitation the rights to use, copy,
14 modify, merge, publish, distribute, sublicense, and/or sell copies
15 of the Software, and to permit persons to whom the Software is
16 furnished to do so, subject to the following conditions:
17
18 The above copyright notice and this permission notice shall be
19 included in all copies or substantial portions of the Software.
20
21 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
25 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
26 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28
29 Except as contained in this notice, the names of the Centre for
30 Digital Music; Queen Mary, University of London; and Chris Cannam
31 shall not be used in advertising or otherwise to promote the sale,
32 use or other dealings in this Software without prior written
33 authorization.
34 */
1 35
2 #include "ProcessQtTransport.h" 36 #include "ProcessQtTransport.h"
3 #include "CapnpRRClient.h" 37 #include "CapnpRRClient.h"
4 #include "AutoPlugin.h" 38 #include "AutoPlugin.h"
5 39
47 cerr << "...round 2!" << endl; 81 cerr << "...round 2!" << endl;
48 82
49 std::vector<float> buf = { 1.0, -1.0, 1.0, -1.0 }; 83 std::vector<float> buf = { 1.0, -1.0, 1.0, -1.0 };
50 float *bd = buf.data(); 84 float *bd = buf.data();
51 Vamp::Plugin::FeatureSet features = plugin->process 85 Vamp::Plugin::FeatureSet features = plugin->process
52 (&bd, Vamp::RealTime::zeroTime); 86 (&bd, Vamp::RealTime::zeroTime);
53 cerr << "results for output 0:" << endl; 87 cerr << "results for output 0:" << endl;
54 auto fl(features[0]); 88 auto fl(features[0]);
55 for (const auto &f: fl) { 89 for (const auto &f: fl) {
56 cerr << f.values[0] << endl; 90 cerr << f.values[0] << endl;
57 } 91 }
58 92
59 (void)plugin->getRemainingFeatures(); 93 (void)plugin->getRemainingFeatures();
60 94
61 delete plugin; 95 delete plugin;
62 96
63 // Let's try a crazy AutoPlugin 97 // Let's try a crazy AutoPlugin
64 98
65 piper_vamp::client::AutoPlugin ap("../bin/piper-vamp-server", 99 piper_vamp::client::AutoPlugin ap("../bin/piper-vamp-server",
66 "vamp-example-plugins:zerocrossing", 16, 0); 100 "vamp-example-plugins:zerocrossing", 16, 0);
67 if (!ap.isOK()) { 101 if (!ap.isOK()) {
68 cerr << "AutoPlugin creation failed" << endl; 102 cerr << "AutoPlugin creation failed" << endl;
69 } else { 103 } else {
70 if (!ap.initialise(1, 4, 4)) { 104 if (!ap.initialise(1, 4, 4)) {
71 cerr << "initialisation failed" << endl; 105 cerr << "initialisation failed" << endl;
72 } else { 106 } else {
73 std::vector<float> buf = { 1.0, -1.0, 1.0, -1.0 }; 107 std::vector<float> buf = { 1.0, -1.0, 1.0, -1.0 };
74 float *bd = buf.data(); 108 float *bd = buf.data();
75 Vamp::Plugin::FeatureSet features = ap.process 109 Vamp::Plugin::FeatureSet features = ap.process
76 (&bd, Vamp::RealTime::zeroTime); 110 (&bd, Vamp::RealTime::zeroTime);
77 cerr << "results for output 0:" << endl; 111 cerr << "results for output 0:" << endl;
78 auto fl(features[0]); 112 auto fl(features[0]);
79 for (const auto &f: fl) { 113 for (const auto &f: fl) {
80 cerr << f.values[0] << endl; 114 cerr << f.values[0] << endl;
81 } 115 }
82 } 116 }
83 } 117 }
84 } 118 }
85 119