From 217890cf8570d7420155aa9a6c314bf578724a03 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 8 Aug 2025 23:29:55 -0600 Subject: [PATCH] add DEBUG::TempoEstimation to libardour --- libs/ardour/ardour/debug.h | 1 + libs/ardour/debug.cc | 1 + 2 files changed, 2 insertions(+) diff --git a/libs/ardour/ardour/debug.h b/libs/ardour/ardour/debug.h index 61b84ad16a..c5e71d5c13 100644 --- a/libs/ardour/ardour/debug.h +++ b/libs/ardour/ardour/debug.h @@ -117,6 +117,7 @@ namespace PBD { LIBARDOUR_API extern DebugBits WiimoteControl; LIBARDOUR_API extern DebugBits Freesound; LIBARDOUR_API extern DebugBits ClipRecording; + LIBARDOUR_API extern DebugBits TempoEstimation; } } diff --git a/libs/ardour/debug.cc b/libs/ardour/debug.cc index 55171fef8f..b738c3f7b7 100644 --- a/libs/ardour/debug.cc +++ b/libs/ardour/debug.cc @@ -113,3 +113,4 @@ PBD::DebugBits PBD::DEBUG::VSTCallbacks = PBD::new_debug_bit ("vstcallbacks"); PBD::DebugBits PBD::DEBUG::WiimoteControl = PBD::new_debug_bit ("wiimotecontrol"); PBD::DebugBits PBD::DEBUG::Freesound = PBD::new_debug_bit ("freesound"); PBD::DebugBits PBD::DEBUG::ClipRecording = PBD::new_debug_bit ("cliprecording"); +PBD::DebugBits PBD::DEBUG::TempoEstimation = PBD::new_debug_bit ("tempoestimation");