mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
new SnapBBT debug option, split out BBT_time and start work on BBT arithmetic framework. this will cause a full recompile, so find something else to do
git-svn-id: svn://localhost/ardour2/branches/3.0@5936 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
9ad08bfe97
commit
68a3144344
12 changed files with 64 additions and 86 deletions
|
|
@ -81,6 +81,7 @@ list_debug_options ()
|
|||
cerr << "\tMidiSourceIO\n";
|
||||
cerr << "\tMidiPlaylistIO\n";
|
||||
cerr << "\tMidiDiskstreamIO\n";
|
||||
cerr << "\tSnapBBT\n";
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
@ -108,12 +109,12 @@ parse_debug_options (const char* str)
|
|||
|
||||
if (strcasecmp (p, "midisourceio") == 0) {
|
||||
bits |= ARDOUR::DEBUG::MidiSourceIO;
|
||||
}
|
||||
if (strcasecmp (p, "midiplaylistio") == 0) {
|
||||
} else if (strcasecmp (p, "midiplaylistio") == 0) {
|
||||
bits |= ARDOUR::DEBUG::MidiPlaylistIO;
|
||||
}
|
||||
if (strcasecmp (p, "mididiskstreamio") == 0) {
|
||||
} else if (strcasecmp (p, "mididiskstreamio") == 0) {
|
||||
bits |= ARDOUR::DEBUG::MidiDiskstreamIO;
|
||||
} else if (strcasecmp (p, "snapbbt") == 0) {
|
||||
bits |= ARDOUR::DEBUG::SnapBBT;
|
||||
}
|
||||
|
||||
p = strtok_r (0, ",", &sp);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue