Mercurial > hg > piper-vamp-js-builds
comparison pyin/pyin.cpp @ 33:935214f16f91
Add pYin build, use Makefile test target
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Fri, 11 Nov 2016 11:13:42 +0000 |
parents | |
children | ac94242cf562 |
comparison
equal
deleted
inserted
replaced
32:2cd8c30131ac | 33:935214f16f91 |
---|---|
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 "PYinVamp.h" | |
6 #include "YinVamp.h" | |
7 #include "LocalCandidatePYIN.h" | |
8 | |
9 std::string soname("pyin"); | |
10 | |
11 piper_vamp_js::PiperAdapter<PYinVamp> pyinAdapter(soname); | |
12 piper_vamp_js::PiperAdapter<YinVamp> yinAdapter(soname); | |
13 piper_vamp_js::PiperAdapter<LocalCandidatePYIN> localCandAdapter(soname); | |
14 | |
15 piper_vamp_js::PiperPluginLibrary library({ | |
16 &pyinAdapter, &yinAdapter, &localCandAdapter | |
17 }); | |
18 | |
19 PIPER_EXPORT_LIBRARY(library); | |
20 |