summaryrefslogtreecommitdiff
path: root/libs/ardour/onset_detector.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-10-08 18:21:07 +0200
committerRobin Gareus <robin@gareus.org>2015-10-08 18:21:07 +0200
commit014f8a582fa2a696d5c27e8a775d6a8d024c50f4 (patch)
tree6fff07a4769b8dccc6a8176f0ede27516a56ecaa /libs/ardour/onset_detector.cc
parentef169ce2ffa05ab463cc4c44b53a186079ccf871 (diff)
windows compatible paths for analysis
Diffstat (limited to 'libs/ardour/onset_detector.cc')
-rw-r--r--libs/ardour/onset_detector.cc9
1 files changed, 1 insertions, 8 deletions
diff --git a/libs/ardour/onset_detector.cc b/libs/ardour/onset_detector.cc
index 326c373df2..60fea6dabb 100644
--- a/libs/ardour/onset_detector.cc
+++ b/libs/ardour/onset_detector.cc
@@ -28,19 +28,12 @@ using namespace std;
/* need a static initializer function for this */
-string OnsetDetector::_op_id = X_("libardourvampplugins:aubioonset:2");
+string OnsetDetector::_op_id = X_("aubio-onset");
OnsetDetector::OnsetDetector (float sr)
: AudioAnalyser (sr, X_("libardourvampplugins:aubioonset"))
, current_results (0)
{
- /* update the op_id */
-
- _op_id = X_("libardourvampplugins:aubioonset");
-
- // XXX this should load the above-named plugin and get the current version
-
- _op_id += ":2";
}
OnsetDetector::~OnsetDetector()