annotate example.cpp @ 7:820704540560

Add export line
author Chris Cannam
date Tue, 06 Sep 2016 14:30:40 +0100
parents c226df029ac8
children a313ce2577ea
rev   line source
Chris@0 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@0 2
Chris@0 3 /*
Chris@0 4 VamPipe
Chris@0 5
Chris@0 6 Centre for Digital Music, Queen Mary, University of London.
Chris@0 7 Copyright 2015-2016 QMUL.
Chris@0 8
Chris@0 9 Permission is hereby granted, free of charge, to any person
Chris@0 10 obtaining a copy of this software and associated documentation
Chris@0 11 files (the "Software"), to deal in the Software without
Chris@0 12 restriction, including without limitation the rights to use, copy,
Chris@0 13 modify, merge, publish, distribute, sublicense, and/or sell copies
Chris@0 14 of the Software, and to permit persons to whom the Software is
Chris@0 15 furnished to do so, subject to the following conditions:
Chris@0 16
Chris@0 17 The above copyright notice and this permission notice shall be
Chris@0 18 included in all copies or substantial portions of the Software.
Chris@0 19
Chris@0 20 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
Chris@0 21 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
Chris@0 22 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Chris@0 23 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
Chris@0 24 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
Chris@0 25 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
Chris@0 26 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Chris@0 27
Chris@0 28 Except as contained in this notice, the names of the Centre for
Chris@0 29 Digital Music; Queen Mary, University of London; and Chris Cannam
Chris@0 30 shall not be used in advertising or otherwise to promote the sale,
Chris@0 31 use or other dealings in this Software without prior written
Chris@0 32 authorization.
Chris@0 33 */
Chris@0 34
Chris@0 35 #include "VamPipeAdapter.h"
Chris@0 36 #include "VamPipePluginLibrary.h"
Chris@0 37
Chris@0 38 #include "vamp-plugin-sdk/examples/ZeroCrossing.h"
Chris@0 39 #include "vamp-plugin-sdk/examples/SpectralCentroid.h"
Chris@0 40 #include "vamp-plugin-sdk/examples/PercussionOnsetDetector.h"
Chris@0 41 #include "vamp-plugin-sdk/examples/FixedTempoEstimator.h"
Chris@0 42 #include "vamp-plugin-sdk/examples/AmplitudeFollower.h"
Chris@0 43 #include "vamp-plugin-sdk/examples/PowerSpectrum.h"
Chris@0 44
Chris@0 45 using vampipe::VamPipeAdapter;
Chris@0 46 using vampipe::VamPipePluginLibrary;
Chris@0 47
Chris@0 48 static std::string soname("vamp-example-plugins");
Chris@0 49
Chris@0 50 static VamPipeAdapter<ZeroCrossing> zeroCrossingAdapter(soname);
Chris@0 51 static VamPipeAdapter<SpectralCentroid> spectralCentroidAdapter(soname);
Chris@0 52 static VamPipeAdapter<PercussionOnsetDetector> percussionOnsetAdapter(soname);
Chris@0 53 static VamPipeAdapter<FixedTempoEstimator> fixedTempoAdapter(soname);
Chris@0 54 static VamPipeAdapter<AmplitudeFollower> amplitudeAdapter(soname);
Chris@0 55 static VamPipeAdapter<PowerSpectrum> powerSpectrumAdapter(soname);
Chris@0 56
Chris@0 57 static VamPipePluginLibrary library({
Chris@0 58 &zeroCrossingAdapter,
Chris@0 59 &spectralCentroidAdapter,
Chris@0 60 &percussionOnsetAdapter,
Chris@0 61 &fixedTempoAdapter,
Chris@0 62 &amplitudeAdapter,
Chris@0 63 &powerSpectrumAdapter
Chris@0 64 });
Chris@0 65
Chris@0 66 extern "C" {
Chris@0 67
Chris@0 68 const char *vampipeRequestJson(const char *request) {
Chris@0 69 return library.requestJson(request);
Chris@0 70 }
Chris@0 71
Chris@0 72 void vampipeFreeJson(const char *json) {
Chris@0 73 return library.freeJson(json);
Chris@0 74 }
Chris@0 75
Chris@0 76 }
Chris@0 77