summaryrefslogtreecommitdiff
path: root/libs/ardour/transient_detector.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/transient_detector.cc')
-rw-r--r--libs/ardour/transient_detector.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/transient_detector.cc b/libs/ardour/transient_detector.cc
index 1eca79e67d..6573262393 100644
--- a/libs/ardour/transient_detector.cc
+++ b/libs/ardour/transient_detector.cc
@@ -91,7 +91,7 @@ TransientDetector::cleanup_transients (AnalysisFeatureList& t, float sr, float g
AnalysisFeatureList::iterator i = t.begin();
AnalysisFeatureList::iterator f, b;
- const nframes64_t gap_frames = (nframes64_t) floor (gap_msecs * (sr / 1000.0));
+ const framecnt_t gap_frames = (framecnt_t) floor (gap_msecs * (sr / 1000.0));
while (i != t.end()) {