~ubuntu-branches/ubuntu/utopic/ardour3/utopic

« back to all changes in this revision

Viewing changes to libs/ardour/debug.cc

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2013-09-21 19:05:02 UTC
  • Revision ID: package-import@ubuntu.com-20130921190502-8gsftrku6jnzhd7v
Tags: upstream-3.4~dfsg
ImportĀ upstreamĀ versionĀ 3.4~dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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::Processors = PBD::new_debug_bit ("processors");
 
35
uint64_t PBD::DEBUG::ProcessThreads = PBD::new_debug_bit ("processthreads");
 
36
uint64_t PBD::DEBUG::Graph = PBD::new_debug_bit ("graph");
 
37
uint64_t PBD::DEBUG::Destruction = PBD::new_debug_bit ("destruction");
 
38
uint64_t PBD::DEBUG::MTC = PBD::new_debug_bit ("mtc");
 
39
uint64_t PBD::DEBUG::LTC = PBD::new_debug_bit ("ltc");
 
40
uint64_t PBD::DEBUG::Transport = PBD::new_debug_bit ("transport");
 
41
uint64_t PBD::DEBUG::Slave = PBD::new_debug_bit ("slave");
 
42
uint64_t PBD::DEBUG::SessionEvents = PBD::new_debug_bit ("sessionevents");
 
43
uint64_t PBD::DEBUG::MidiIO = PBD::new_debug_bit ("midiio");
 
44
uint64_t PBD::DEBUG::MackieControl = PBD::new_debug_bit ("mackiecontrol");
 
45
uint64_t PBD::DEBUG::MidiClock = PBD::new_debug_bit ("midiclock");
 
46
uint64_t PBD::DEBUG::Monitor = PBD::new_debug_bit ("monitor");
 
47
uint64_t PBD::DEBUG::Solo = PBD::new_debug_bit ("solo");
 
48
uint64_t PBD::DEBUG::AudioPlayback = PBD::new_debug_bit ("audioplayback");
 
49
uint64_t PBD::DEBUG::Panning = PBD::new_debug_bit ("panning");
 
50
uint64_t PBD::DEBUG::LV2 = PBD::new_debug_bit ("lv2");
 
51
uint64_t PBD::DEBUG::CaptureAlignment = PBD::new_debug_bit ("capturealignment");
 
52
uint64_t PBD::DEBUG::PluginManager = PBD::new_debug_bit ("pluginmanager");
 
53
uint64_t PBD::DEBUG::AudioUnits = PBD::new_debug_bit ("audiounits");
 
54
uint64_t PBD::DEBUG::ControlProtocols = PBD::new_debug_bit ("controlprotocols");
 
55
uint64_t PBD::DEBUG::CycleTimers = PBD::new_debug_bit ("cycletimers");
 
56
uint64_t PBD::DEBUG::MidiTrackers = PBD::new_debug_bit ("miditrackers");
 
57
uint64_t PBD::DEBUG::Layering = PBD::new_debug_bit ("layering");
 
58
uint64_t PBD::DEBUG::TempoMath = PBD::new_debug_bit ("tempomath");
 
59
uint64_t PBD::DEBUG::TempoMap = PBD::new_debug_bit ("tempomap");
 
60
uint64_t PBD::DEBUG::OrderKeys = PBD::new_debug_bit ("orderkeys");
 
61
uint64_t PBD::DEBUG::Automation = PBD::new_debug_bit ("automation");
 
62
uint64_t PBD::DEBUG::WiimoteControl = PBD::new_debug_bit ("wiimotecontrol");
 
63
 
 
64