comparison nnls-chroma/nnls-chroma.cpp @ 8:e8b954e2e6e0

Add NNLS Chroma build
author Chris Cannam
date Fri, 11 Nov 2016 11:30:59 +0000
parents
children ac94242cf562
comparison
equal deleted inserted replaced
7:9ce497a42932 8:e8b954e2e6e0
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