Don't fail jackd command line creation for jack dummy backend.
authorColin Fletcher <colin.m.fletcher@googlemail.com>
Wed, 23 Oct 2013 15:03:18 +0000 (16:03 +0100)
committerColin Fletcher <colin.m.fletcher@googlemail.com>
Wed, 23 Oct 2013 18:27:09 +0000 (19:27 +0100)
The dummy jackd backend doesn't require a device to be specified, so much
of the error checking in get_jack_command_line_string() is irrelevant, if
not actively wrong, when the dummy backend is specified.

Only perform the checks if the chosen jack backend is not the dummy.

libs/backends/jack/jack_utils.cc

index 92f175d9cb6ccaabda4c32f9e49c9cd221b83a52..0aa0eca9b19d4e4b1a7ce1d48aca9249cecee9c8 100644 (file)
@@ -756,6 +756,9 @@ ARDOUR::get_jack_command_line_string (JackCommandLineOptions& options, string& c
 
        string command_line_driver_name;
 
+       string command_line_input_device_name;
+       string command_line_output_device_name;
+
        if (!get_jack_command_line_audio_driver_name (options.driver, command_line_driver_name)) {
                return false;
        }
@@ -763,44 +766,44 @@ ARDOUR::get_jack_command_line_string (JackCommandLineOptions& options, string& c
        args.push_back ("-d");
        args.push_back (command_line_driver_name);
 
-       if (options.output_device.empty() && options.input_device.empty()) {
-               return false;
-       }
-
-       string command_line_input_device_name;
-       string command_line_output_device_name;
+       if (options.driver != dummy_driver_name) {
+               if (options.output_device.empty() && options.input_device.empty()) {
+                       return false;
+               }
 
-       if (!get_jack_command_line_audio_device_name (options.driver,
-               options.input_device, command_line_input_device_name)) {
-               return false;
-       }
 
-       if (!get_jack_command_line_audio_device_name (options.driver,
-               options.output_device, command_line_output_device_name)) {
-               return false;
-       }
-
-       if (options.input_device.empty()) {
-               // playback only
-               if (options.output_device.empty()) {
+               if (!get_jack_command_line_audio_device_name (options.driver,
+                                       options.input_device, command_line_input_device_name)) {
                        return false;
                }
-               args.push_back ("-P");
-       } else if (options.output_device.empty()) {
-               // capture only
-               if (options.input_device.empty()) {
+
+               if (!get_jack_command_line_audio_device_name (options.driver,
+                                       options.output_device, command_line_output_device_name)) {
                        return false;
                }
-               args.push_back ("-C");
-       } else if (options.input_device != options.output_device) {
-               // capture and playback on two devices if supported
-               if (get_jack_audio_driver_supports_two_devices (options.driver)) {
-                       args.push_back ("-C");
-                       args.push_back (command_line_input_device_name);
+
+               if (options.input_device.empty()) {
+                       // playback only
+                       if (options.output_device.empty()) {
+                               return false;
+                       }
                        args.push_back ("-P");
-                       args.push_back (command_line_output_device_name);
-               } else {
-                       return false;
+               } else if (options.output_device.empty()) {
+                       // capture only
+                       if (options.input_device.empty()) {
+                               return false;
+                       }
+                       args.push_back ("-C");
+               } else if (options.input_device != options.output_device) {
+                       // capture and playback on two devices if supported
+                       if (get_jack_audio_driver_supports_two_devices (options.driver)) {
+                               args.push_back ("-C");
+                               args.push_back (command_line_input_device_name);
+                               args.push_back ("-P");
+                               args.push_back (command_line_output_device_name);
+                       } else {
+                               return false;
+                       }
                }
        }