summaryrefslogtreecommitdiff
path: root/libs/ardour/debug.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-02-01 03:36:29 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-02-01 03:36:29 +0000
commitc07888e6acc51b33c1a989649fbe432f8523bfea (patch)
tree1489c2f2dd5666bcb504522e7b3bed152ed5b1b9 /libs/ardour/debug.cc
parentde68d70b4430ae6540cc8e4bf01122f963fd3efc (diff)
switch MIDI Clock slave code to use DEBUG_TRACE; don't make it require start/stop messages (to be finished later) and don't locate to zero when starting
git-svn-id: svn://localhost/ardour2/branches/3.0@6605 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/debug.cc')
-rw-r--r--libs/ardour/debug.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/libs/ardour/debug.cc b/libs/ardour/debug.cc
index 773dd6d0f6..45f7e68434 100644
--- a/libs/ardour/debug.cc
+++ b/libs/ardour/debug.cc
@@ -90,7 +90,9 @@ ARDOUR::parse_debug_options (const char* str)
bits |= ARDOUR::DEBUG::SessionEvents;
} else if (strncasecmp (p, "midiio", strlen (p)) == 0) {
bits |= ARDOUR::DEBUG::MidiIO;
- }
+ } else if (strncasecmp (p, "midiclock", strlen (p)) == 0) {
+ bits |= ARDOUR::DEBUG::MidiClock;
+ }
p = strtok_r (0, ",", &sp);
}
@@ -119,4 +121,5 @@ ARDOUR::list_debug_options ()
cerr << "\tSessionEvents" << endl;
cerr << "\tMidiIO" << endl;
cerr << "\tLatencyCompensation" << endl;
+ cerr << "\tMidiClock" << endl;
}