Merge branch 'master' into windows
[ardour.git] / libs / ardour / debug.cc
1 /*
2     Copyright (C) 2009 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <cstring>
21 #include <cstdlib>
22 #include <iostream>
23
24 #include "ardour/debug.h"
25
26 using namespace std;
27
28 uint64_t PBD::DEBUG::MidiSourceIO = PBD::new_debug_bit ("midisourceio");
29 uint64_t PBD::DEBUG::MidiPlaylistIO = PBD::new_debug_bit ("midiplaylistio");
30 uint64_t PBD::DEBUG::MidiDiskstreamIO = PBD::new_debug_bit ("mididiskstreamio");
31 uint64_t PBD::DEBUG::SnapBBT = PBD::new_debug_bit ("snapbbt");
32 uint64_t PBD::DEBUG::Configuration = PBD::new_debug_bit ("configuration");
33 uint64_t PBD::DEBUG::Latency = PBD::new_debug_bit ("latency");
34 uint64_t PBD::DEBUG::Peaks = PBD::new_debug_bit ("peaks");
35 uint64_t PBD::DEBUG::Processors = PBD::new_debug_bit ("processors");
36 uint64_t PBD::DEBUG::ProcessThreads = PBD::new_debug_bit ("processthreads");
37 uint64_t PBD::DEBUG::Graph = PBD::new_debug_bit ("graph");
38 uint64_t PBD::DEBUG::Destruction = PBD::new_debug_bit ("destruction");
39 uint64_t PBD::DEBUG::MTC = PBD::new_debug_bit ("mtc");
40 uint64_t PBD::DEBUG::LTC = PBD::new_debug_bit ("ltc");
41 uint64_t PBD::DEBUG::Transport = PBD::new_debug_bit ("transport");
42 uint64_t PBD::DEBUG::Slave = PBD::new_debug_bit ("slave");
43 uint64_t PBD::DEBUG::SessionEvents = PBD::new_debug_bit ("sessionevents");
44 uint64_t PBD::DEBUG::MidiIO = PBD::new_debug_bit ("midiio");
45 uint64_t PBD::DEBUG::MackieControl = PBD::new_debug_bit ("mackiecontrol");
46 uint64_t PBD::DEBUG::MidiClock = PBD::new_debug_bit ("midiclock");
47 uint64_t PBD::DEBUG::Monitor = PBD::new_debug_bit ("monitor");
48 uint64_t PBD::DEBUG::Solo = PBD::new_debug_bit ("solo");
49 uint64_t PBD::DEBUG::AudioPlayback = PBD::new_debug_bit ("audioplayback");
50 uint64_t PBD::DEBUG::Panning = PBD::new_debug_bit ("panning");
51 uint64_t PBD::DEBUG::LV2 = PBD::new_debug_bit ("lv2");
52 uint64_t PBD::DEBUG::CaptureAlignment = PBD::new_debug_bit ("capturealignment");
53 uint64_t PBD::DEBUG::PluginManager = PBD::new_debug_bit ("pluginmanager");
54 uint64_t PBD::DEBUG::AudioUnits = PBD::new_debug_bit ("audiounits");
55 uint64_t PBD::DEBUG::ControlProtocols = PBD::new_debug_bit ("controlprotocols");
56 uint64_t PBD::DEBUG::CycleTimers = PBD::new_debug_bit ("cycletimers");
57 uint64_t PBD::DEBUG::MidiTrackers = PBD::new_debug_bit ("miditrackers");
58 uint64_t PBD::DEBUG::Layering = PBD::new_debug_bit ("layering");
59 uint64_t PBD::DEBUG::TempoMath = PBD::new_debug_bit ("tempomath");
60 uint64_t PBD::DEBUG::TempoMap = PBD::new_debug_bit ("tempomap");
61 uint64_t PBD::DEBUG::OrderKeys = PBD::new_debug_bit ("orderkeys");
62 uint64_t PBD::DEBUG::Automation = PBD::new_debug_bit ("automation");
63 uint64_t PBD::DEBUG::WiimoteControl = PBD::new_debug_bit ("wiimotecontrol");
64 uint64_t PBD::DEBUG::Ports = PBD::new_debug_bit ("Ports");
65
66