Mercurial > hg > piper-vamp-js-builds
comparison nnls-chroma/nnls-chroma.cpp @ 35:e9246f5afbf3
Add NNLS Chroma build
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Fri, 11 Nov 2016 11:30:59 +0000 |
parents | |
children | ac94242cf562 |
comparison
equal
deleted
inserted
replaced
34:b51164a0c0f9 | 35:e9246f5afbf3 |
---|---|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ | |
2 | |
3 #include "PiperExport.h" | |
4 | |
5 #include "NNLSChroma.h" | |
6 #include "Chordino.h" | |
7 #include "Tuning.h" | |
8 | |
9 std::string soname("nnls-chroma"); | |
10 | |
11 piper_vamp_js::PiperAdapter<NNLSChroma> chromaAdapter(soname); | |
12 piper_vamp_js::PiperAdapter<Chordino> chordinoAdapter(soname); | |
13 piper_vamp_js::PiperAdapter<Tuning> tuningAdapter(soname); | |
14 | |
15 piper_vamp_js::PiperPluginLibrary library({ | |
16 &chromaAdapter, &chordinoAdapter, &tuningAdapter | |
17 }); | |
18 | |
19 PIPER_EXPORT_LIBRARY(library); | |
20 |