annotate vamp-client/PluginClient.h @ 186:52322dde68ea

Fix erroneous logic for handling step and block size in prior commit The earlier change had a logical misconception. If PluginStub is receiving the correct step and block size back from the configure call, the plugin on the server side must have already been successfully initialised, as the step and block size are only returned in a successful configure response. This means the test for a failed initialise and redo with the correct parameters must be done on the server side (in LoaderRequests) not the client. The client has a more complicated job, which is to notice that a *successful* configure had returned different framing parameters from those passed to the initialise call, and to pretend that it had actually failed until the host called again with the correct parameters. We definitely need tests for this!
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 06 Feb 2017 16:44:33 +0000
parents 3eb00e5c76c4
children ad6025dc0b04 c67a0a945b6b
rev   line source
c@118 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
c@118 2 /*
c@118 3 Piper C++
c@118 4
c@118 5 An API for audio analysis and feature extraction plugins.
c@118 6
c@118 7 Centre for Digital Music, Queen Mary, University of London.
c@118 8 Copyright 2006-2016 Chris Cannam and QMUL.
c@118 9
c@118 10 Permission is hereby granted, free of charge, to any person
c@118 11 obtaining a copy of this software and associated documentation
c@118 12 files (the "Software"), to deal in the Software without
c@118 13 restriction, including without limitation the rights to use, copy,
c@118 14 modify, merge, publish, distribute, sublicense, and/or sell copies
c@118 15 of the Software, and to permit persons to whom the Software is
c@118 16 furnished to do so, subject to the following conditions:
c@118 17
c@118 18 The above copyright notice and this permission notice shall be
c@118 19 included in all copies or substantial portions of the Software.
c@118 20
c@118 21 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
c@118 22 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
c@118 23 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
c@118 24 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
c@118 25 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
c@118 26 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
c@118 27 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
c@118 28
c@118 29 Except as contained in this notice, the names of the Centre for
c@118 30 Digital Music; Queen Mary, University of London; and Chris Cannam
c@118 31 shall not be used in advertising or otherwise to promote the sale,
c@118 32 use or other dealings in this Software without prior written
c@118 33 authorization.
c@118 34 */
c@94 35
c@94 36 #ifndef PIPER_PLUGIN_CLIENT_H
c@94 37 #define PIPER_PLUGIN_CLIENT_H
c@94 38
c@97 39 #include "vamp-support/PluginConfiguration.h"
c@94 40
c@97 41 namespace piper_vamp {
c@97 42 namespace client {
c@94 43
c@94 44 class PluginStub;
c@94 45
c@94 46 class PluginClient
c@94 47 {
c@94 48 public:
c@94 49 virtual
cannam@185 50 ConfigurationResponse
c@94 51 configure(PluginStub *plugin,
c@97 52 PluginConfiguration config) = 0;
c@94 53
c@94 54 virtual
c@94 55 Vamp::Plugin::FeatureSet
c@94 56 process(PluginStub *plugin,
c@94 57 std::vector<std::vector<float> > inputBuffers,
c@94 58 Vamp::RealTime timestamp) = 0;
c@94 59
c@94 60 virtual
c@94 61 Vamp::Plugin::FeatureSet
c@94 62 finish(PluginStub *plugin) = 0;
c@94 63
c@94 64 virtual
c@94 65 void
c@97 66 reset(PluginStub *plugin, PluginConfiguration config) = 0;
c@94 67 };
c@94 68
c@94 69 }
c@94 70 }
c@94 71
c@94 72 #endif