summaryrefslogtreecommitdiff
path: root/libs/ardour/onset_detector.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-05-01 18:47:14 +0200
committerRobin Gareus <robin@gareus.org>2016-05-01 18:47:14 +0200
commit9d50074a99c4bd9e9b07ae3dccde6df889a8d899 (patch)
treed6e356260f44272ba89179b98088d3901b0a065d /libs/ardour/onset_detector.cc
parent5f65964ee9d84748cebf3fe75d8c204a20aac9ae (diff)
fix aubio-onset detection parameters
Diffstat (limited to 'libs/ardour/onset_detector.cc')
-rw-r--r--libs/ardour/onset_detector.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/libs/ardour/onset_detector.cc b/libs/ardour/onset_detector.cc
index 60fea6dabb..eb64a77433 100644
--- a/libs/ardour/onset_detector.cc
+++ b/libs/ardour/onset_detector.cc
@@ -93,6 +93,16 @@ OnsetDetector::set_peak_threshold (float val)
}
void
+OnsetDetector::set_minioi (float val)
+{
+#ifdef HAVE_AUBIO4
+ if (plugin) {
+ plugin->setParameter ("minioi", val);
+ }
+#endif
+}
+
+void
OnsetDetector::set_function (int val)
{
if (plugin) {