summaryrefslogtreecommitdiff
path: root/libs/pbd
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2015-08-22 21:43:12 +1000
committerTim Mayberry <mojofunk@gmail.com>2015-09-02 12:07:14 +1000
commita272c505971dfc732002ab22d8e5d9ccf43f8851 (patch)
tree5c904b701f44659af81fb8b4d08590098ef0c4f3 /libs/pbd
parent201d91aeddcad7f13d698ec9b5ad6d3892c7dffa (diff)
Move AudioBackend related debug bits into libardour
I put these in libpbd as that is where the debug bits are for the Waves backend but I think it makes more sense for them to be in libardour as that is where the AudioBackend class is defined I left the Waves debug bits in libpbd for now.
Diffstat (limited to 'libs/pbd')
-rw-r--r--libs/pbd/debug.cc6
-rw-r--r--libs/pbd/pbd/debug.h5
2 files changed, 0 insertions, 11 deletions
diff --git a/libs/pbd/debug.cc b/libs/pbd/debug.cc
index acfca82b05..3055c396c6 100644
--- a/libs/pbd/debug.cc
+++ b/libs/pbd/debug.cc
@@ -64,12 +64,6 @@ DebugBits PBD::DEBUG::UndoHistory = PBD::new_debug_bit ("undohistory");
from dynamically loaded code, for use in command line parsing, is way above the pay grade
of this debug tracing scheme.
*/
-DebugBits PBD::DEBUG::BackendMIDI = PBD::new_debug_bit ("BackendMIDI");
-DebugBits PBD::DEBUG::BackendAudio = PBD::new_debug_bit ("BackendAudio");
-DebugBits PBD::DEBUG::BackendTiming = PBD::new_debug_bit ("BackendTiming");
-DebugBits PBD::DEBUG::BackendThreads = PBD::new_debug_bit ("BackendThreads");
-
-
DebugBits PBD::DEBUG::WavesMIDI = PBD::new_debug_bit ("WavesMIDI");
DebugBits PBD::DEBUG::WavesAudio = PBD::new_debug_bit ("WavesAudio");
diff --git a/libs/pbd/pbd/debug.h b/libs/pbd/pbd/debug.h
index 3e23af009c..065bc4cae0 100644
--- a/libs/pbd/pbd/debug.h
+++ b/libs/pbd/pbd/debug.h
@@ -57,11 +57,6 @@ namespace PBD {
LIBPBD_API extern DebugBits FileUtils;
LIBPBD_API extern DebugBits UndoHistory;
- LIBPBD_API extern DebugBits BackendMIDI;
- LIBPBD_API extern DebugBits BackendAudio;
- LIBPBD_API extern DebugBits BackendTiming;
- LIBPBD_API extern DebugBits BackendThreads;
-
/* See notes in ../debug.cc on why these are defined here */
LIBPBD_API extern DebugBits WavesMIDI;