annotate vamp-client/PiperClient.h @ 91:c897c9a8daf1

Implement reset()
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 13 Oct 2016 11:33:19 +0100
parents 6429a99abcad
children 21f8af53eaf0
rev   line source
c@90 1
c@90 2 #ifndef PIPER_CLIENT_H
c@90 3 #define PIPER_CLIENT_H
c@90 4
c@90 5 #include <vamp-hostsdk/PluginConfiguration.h>
c@90 6
c@90 7 namespace piper { //!!! change
c@90 8
c@90 9 class PiperStubPlugin;
c@90 10
c@90 11 class PiperStubPluginClientInterface
c@90 12 {
c@90 13 friend class PiperStubPlugin;
c@90 14
c@90 15 protected:
c@90 16 virtual
c@90 17 Vamp::Plugin::OutputList
c@90 18 configure(PiperStubPlugin *plugin,
c@90 19 Vamp::HostExt::PluginConfiguration config) = 0;
c@90 20
c@90 21 virtual
c@90 22 Vamp::Plugin::FeatureSet
c@90 23 process(PiperStubPlugin *plugin,
c@90 24 std::vector<std::vector<float> > inputBuffers,
c@90 25 Vamp::RealTime timestamp) = 0;
c@90 26
c@90 27 virtual Vamp::Plugin::FeatureSet
c@90 28 finish(PiperStubPlugin *plugin) = 0;
c@91 29
c@91 30 virtual
c@91 31 void
c@91 32 reset(PiperStubPlugin *plugin,
c@91 33 Vamp::HostExt::PluginConfiguration config) = 0;
c@90 34 };
c@90 35
c@90 36 }
c@90 37
c@90 38 #endif