summaryrefslogtreecommitdiff
path: root/libs/ardour/globals.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-10-11 03:10:18 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-10-11 03:10:18 +0000
commit9707a0e8271a54dd21e49d6ca9ae98378ac4f8a5 (patch)
tree3db9d9cab869d2bfab9f68b1afca56b1da5811fe /libs/ardour/globals.cc
parent1a530550196050dfe4a67732965ae3ddc3e1b077 (diff)
move the external sync source selection tobe a global config parameter, not per-session, since this is likely a reflection of studio setup, h/w etc.; starting using real tooltips in the RC option editor
git-svn-id: svn://localhost/ardour2/branches/3.0@13237 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/globals.cc')
-rw-r--r--libs/ardour/globals.cc12
1 files changed, 12 insertions, 0 deletions
diff --git a/libs/ardour/globals.cc b/libs/ardour/globals.cc
index f336142075..78ed2ff472 100644
--- a/libs/ardour/globals.cc
+++ b/libs/ardour/globals.cc
@@ -476,3 +476,15 @@ ARDOUR::translations_are_disabled ()
/* if file does not exist, we don't translate (bundled ardour only) */
return Glib::file_test (translation_kill_path(), Glib::FILE_TEST_EXISTS) == false;
}
+
+vector<SyncSource>
+ARDOUR::get_available_sync_options ()
+{
+ vector<SyncSource> ret;
+
+ ret.push_back (JACK);
+ ret.push_back (MTC);
+ ret.push_back (MIDIClock);
+
+ return ret;
+}