LTC slave fix fps detection with 29.97000 option
[ardour.git] / gtk2_ardour / opts.cc
index a0bf287d7a2784220cffd9c4bcb8fbdc36d7258e..c3becd1471212dd9e3468cc9377744e719307f01 100644 (file)
@@ -34,7 +34,7 @@ using namespace std;
 string ARDOUR_COMMAND_LINE::session_name = "";
 string ARDOUR_COMMAND_LINE::jack_client_name = "ardour";
 bool  ARDOUR_COMMAND_LINE::show_key_actions = false;
-bool ARDOUR_COMMAND_LINE::no_splash = true;
+bool ARDOUR_COMMAND_LINE::no_splash = false;
 bool ARDOUR_COMMAND_LINE::just_version = false;
 bool ARDOUR_COMMAND_LINE::use_vst = true;
 bool ARDOUR_COMMAND_LINE::new_session = false;
@@ -61,12 +61,12 @@ print_help (const char *execname)
             << _("  -c, --name <name>           Use a specific jack client name, default is ardour\n")
             << _("  -d, --disable-plugins       Disable all plugins in an existing session\n")
             << _("  -D, --debug <options>       Set debug flags. Use \"-D list\" to see available options\n")
-            << _("  -n, --show-splash           Show splash screen\n")
+            << _("  -n, --no-splash             Do not show splash screen\n")
             << _("  -m, --menus file            Use \"file\" to define menus\n")
             << _("  -N, --new session-name      Create a new session from the command line\n")
             << _("  -O, --no-hw-optimizations   Disable h/w specific optimizations\n")
             << _("  -S, --sync                  Draw the gui synchronously \n")
-#ifdef VST_SUPPORT
+#ifdef WINDOWS_VST_SUPPORT
             << _("  -V, --novst                 Do not use VST support\n")
 #endif
             << _("  -E, --save <file>           Load the specified session, save it to <file> and then quit\n")
@@ -98,8 +98,9 @@ ARDOUR_COMMAND_LINE::parse_opts (int argc, char *argv[])
                { "version", 0, 0, 'v' },
                { "help", 0, 0, 'h' },
                { "bindings", 0, 0, 'b' },
+               { "disable-plugins", 1, 0, 'd' },
                { "debug", 1, 0, 'D' },
-               { "show-splash", 0, 0, 'n' },
+               { "no-splash", 0, 0, 'n' },
                { "menus", 1, 0, 'm' },
                { "name", 1, 0, 'c' },
                { "novst", 0, 0, 'V' },
@@ -155,7 +156,7 @@ ARDOUR_COMMAND_LINE::parse_opts (int argc, char *argv[])
                        break;
 
                case 'n':
-                       no_splash = false;
+                       no_splash = true;
                        break;
 
                case 'p':
@@ -184,9 +185,9 @@ ARDOUR_COMMAND_LINE::parse_opts (int argc, char *argv[])
                        break;
 
                case 'V':
-#ifdef VST_SUPPORT
+#ifdef WINDOWS_VST_SUPPORT
                        use_vst = false;
-#endif /* VST_SUPPORT */
+#endif /* WINDOWS_VST_SUPPORT */
                        break;
 
                case 'c':