summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-05-13 13:46:18 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-05-13 13:46:18 +0000
commit02de669c51e29e622512137ada3d7b4b4493ab0a (patch)
tree37e20970815a6afc9102cebd39221367ea1d1664
parent4e52f281a4bc1fec9c7ef85e5fc75d266b8ff232 (diff)
comment out latency debug output
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3343 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--gtk2_ardour/ardour_ui.cc2
-rw-r--r--libs/ardour/route.cc2
-rw-r--r--libs/ardour/session_transport.cc2
-rw-r--r--libs/ardour/track.cc2
-rw-r--r--svn_revision.h2
5 files changed, 6 insertions, 4 deletions
diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc
index 4e474661cc..b057e588ea 100644
--- a/gtk2_ardour/ardour_ui.cc
+++ b/gtk2_ardour/ardour_ui.cc
@@ -813,6 +813,8 @@ ARDOUR_UI::ask_about_saving_session (const string & what)
int
ARDOUR_UI::every_second ()
{
+ return TRUE;
+
update_cpu_load ();
update_buffer_load ();
update_disk_space ();
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index b3b53989e1..93b997a6f7 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -2418,7 +2418,7 @@ Route::update_total_latency ()
}
}
-#define DEBUG_LATENCY
+#undef DEBUG_LATENCY
#ifdef DEBUG_LATENCY
cerr << _name << ": internal redirect latency = " << _own_latency << endl;
#endif
diff --git a/libs/ardour/session_transport.cc b/libs/ardour/session_transport.cc
index 444d78c1fc..5fec4e37ee 100644
--- a/libs/ardour/session_transport.cc
+++ b/libs/ardour/session_transport.cc
@@ -1258,7 +1258,7 @@ Session::update_latency_compensation (bool with_stop, bool abort)
_worst_track_latency = 0;
-#define DEBUG_LATENCY
+#undef DEBUG_LATENCY
#ifdef DEBUG_LATENCY
cerr << "\n---------------------------------\nUPDATE LATENCY\n";
#endif
diff --git a/libs/ardour/track.cc b/libs/ardour/track.cc
index 66ec2392b9..6615a3dacd 100644
--- a/libs/ardour/track.cc
+++ b/libs/ardour/track.cc
@@ -102,7 +102,7 @@ Track::update_total_latency ()
}
}
-#define DEBUG_LATENCY
+#undef DEBUG_LATENCY
#ifdef DEBUG_LATENCY
cerr << _name << ": internal redirect (final) latency = " << _own_latency << endl;
#endif
diff --git a/svn_revision.h b/svn_revision.h
index 35346c9267..3988a3954d 100644
--- a/svn_revision.h
+++ b/svn_revision.h
@@ -1,4 +1,4 @@
#ifndef __ardour_svn_revision_h__
#define __ardour_svn_revision_h__
-static const char* ardour_svn_revision = "3201";
+static const char* ardour_svn_revision = "3243";
#endif