diff cepstral-pitchtracker/cepstral-pitchtracker.cpp @ 45:916d856b698c

Add cepstral pitch tracker
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 23 Mar 2017 14:03:38 +0000
parents
children ac94242cf562
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cepstral-pitchtracker/cepstral-pitchtracker.cpp	Thu Mar 23 14:03:38 2017 +0000
@@ -0,0 +1,19 @@
+/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*-  vi:set ts=8 sts=4 sw=4: */
+
+#include "PiperExport.h"
+
+#include "CepstralPitchTracker.h"
+
+using piper_vamp_js::PiperAdapter;
+using piper_vamp_js::PiperPluginLibrary;
+
+static std::string soname("cepstral-pitchtracker");
+
+static PiperAdapter<CepstralPitchTracker> cepstralPitchTrackerAdapter(soname);
+
+static PiperPluginLibrary library({
+    &cepstralPitchTrackerAdapter
+});
+
+PIPER_EXPORT_LIBRARY(library);
+