add finite state machine to control/manage transport state
[ardour.git] / libs / ardour / ardour / debug.h
1 /*
2  * Copyright (C) 2009-2011 David Robillard <d@drobilla.net>
3  * Copyright (C) 2009-2018 Paul Davis <paul@linuxaudiosystems.com>
4  * Copyright (C) 2010-2011 Carl Hetherington <carl@carlh.net>
5  * Copyright (C) 2012-2017 Robin Gareus <robin@gareus.org>
6  * Copyright (C) 2015 Tim Mayberry <mojofunk@gmail.com>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with this program; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22
23 #ifndef __ardour_debug_h__
24 #define __ardour_debug_h__
25
26 #include <stdint.h>
27
28 #include <sstream>
29
30 #include "ardour/libardour_visibility.h"
31 #include "pbd/debug.h"
32
33 namespace PBD {
34         namespace DEBUG {
35                 LIBARDOUR_API extern DebugBits MidiSourceIO;
36                 LIBARDOUR_API extern DebugBits MidiPlaylistIO;
37                 LIBARDOUR_API extern DebugBits MidiDiskIO;
38                 LIBARDOUR_API extern DebugBits MidiRingBuffer;
39                 LIBARDOUR_API extern DebugBits SnapBBT;
40                 LIBARDOUR_API extern DebugBits Latency;
41                 LIBARDOUR_API extern DebugBits LatencyCompensation;
42                 LIBARDOUR_API extern DebugBits Peaks;
43                 LIBARDOUR_API extern DebugBits Processors;
44                 LIBARDOUR_API extern DebugBits ChanMapping;
45                 LIBARDOUR_API extern DebugBits ProcessThreads;
46                 LIBARDOUR_API extern DebugBits Graph;
47                 LIBARDOUR_API extern DebugBits Destruction;
48                 LIBARDOUR_API extern DebugBits MTC;
49                 LIBARDOUR_API extern DebugBits LTC;
50                 LIBARDOUR_API extern DebugBits TXLTC;
51                 LIBARDOUR_API extern DebugBits Transport;
52                 LIBARDOUR_API extern DebugBits TFSMEvents;
53                 LIBARDOUR_API extern DebugBits TFSMState;
54                 LIBARDOUR_API extern DebugBits Slave;
55                 LIBARDOUR_API extern DebugBits SessionEvents;
56                 LIBARDOUR_API extern DebugBits MidiIO;
57                 LIBARDOUR_API extern DebugBits MackieControl;
58                 LIBARDOUR_API extern DebugBits MidiClock;
59                 LIBARDOUR_API extern DebugBits Monitor;
60                 LIBARDOUR_API extern DebugBits Solo;
61                 LIBARDOUR_API extern DebugBits AudioPlayback;
62                 LIBARDOUR_API extern DebugBits Panning;
63                 LIBARDOUR_API extern DebugBits LV2;
64                 LIBARDOUR_API extern DebugBits LV2Automate;
65                 LIBARDOUR_API extern DebugBits CaptureAlignment;
66                 LIBARDOUR_API extern DebugBits PluginManager;
67                 LIBARDOUR_API extern DebugBits AudioUnits;
68                 LIBARDOUR_API extern DebugBits ControlProtocols;
69                 LIBARDOUR_API extern DebugBits CycleTimers;
70                 LIBARDOUR_API extern DebugBits MidiTrackers;
71                 LIBARDOUR_API extern DebugBits Layering;
72                 LIBARDOUR_API extern DebugBits TempoMath;
73                 LIBARDOUR_API extern DebugBits TempoMap;
74                 LIBARDOUR_API extern DebugBits OrderKeys;
75                 LIBARDOUR_API extern DebugBits Automation;
76                 LIBARDOUR_API extern DebugBits WiimoteControl;
77                 LIBARDOUR_API extern DebugBits ContourDesignControl;
78                 LIBARDOUR_API extern DebugBits Ports;
79                 LIBARDOUR_API extern DebugBits AudioEngine;
80                 LIBARDOUR_API extern DebugBits Soundcloud;
81                 LIBARDOUR_API extern DebugBits Butler;
82                 LIBARDOUR_API extern DebugBits Selection;
83                 LIBARDOUR_API extern DebugBits GenericMidi;
84                 LIBARDOUR_API extern DebugBits BackendMIDI;
85                 LIBARDOUR_API extern DebugBits BackendAudio;
86                 LIBARDOUR_API extern DebugBits BackendTiming;
87                 LIBARDOUR_API extern DebugBits BackendThreads;
88                 LIBARDOUR_API extern DebugBits BackendPorts;
89                 LIBARDOUR_API extern DebugBits VSTCallbacks;
90                 LIBARDOUR_API extern DebugBits DiskIO;
91                 LIBARDOUR_API extern DebugBits FaderPort;
92                 LIBARDOUR_API extern DebugBits FaderPort8;
93                 LIBARDOUR_API extern DebugBits CC121;
94                 LIBARDOUR_API extern DebugBits VCA;
95                 LIBARDOUR_API extern DebugBits Push2;
96                 LIBARDOUR_API extern DebugBits US2400;
97                 LIBARDOUR_API extern DebugBits LaunchControlXL;
98
99         }
100 }
101
102 #endif /* __ardour_debug_h__ */