Add [hidden] option to list "Dummy" backend with optmized bundles
[ardour.git] / libs / ardour / audioengine.cc
index cbae19ff51847e4f0c742de4a20cc132c2fce1f7..df015cf693f773b6e66ad50a267fc7cbad37cee9 100644 (file)
@@ -53,6 +53,7 @@
 #include "ardour/mtdm.h"
 #include "ardour/port.h"
 #include "ardour/process_thread.h"
+#include "ardour/rc_configuration.h"
 #include "ardour/session.h"
 
 #include "pbd/i18n.h"
@@ -789,7 +790,7 @@ AudioEngine::available_backends() const
 
        for (BackendMap::const_iterator i = _backends.begin(); i != _backends.end(); ++i) {
 #ifdef NDEBUG
-               if (i->first == "None (Dummy)" && !running_from_source_tree ()) {
+               if (i->first == "None (Dummy)" && !running_from_source_tree () && Config->get_hide_dummy_backend ()) {
                        continue;
                }
 #endif
@@ -876,8 +877,7 @@ AudioEngine::start (bool for_latency)
        int error_code = _backend->start (for_latency);
 
        if (error_code != 0) {
-               _last_backend_error_string =
-                   AudioBackend::get_error_string((AudioBackend::ErrorCode)error_code);
+               _last_backend_error_string = AudioBackend::get_error_string((AudioBackend::ErrorCode) error_code);
                return -1;
        }
 
@@ -892,6 +892,10 @@ AudioEngine::start (bool for_latency)
 
        }
 
+       /* XXX MIDI ports may not actually be available here yet .. */
+
+       PortManager::fill_midi_port_info ();
+
        if (!for_latency) {
                Running(); /* EMIT SIGNAL */
        }
@@ -918,7 +922,7 @@ AudioEngine::stop (bool for_latency)
                stop_engine = false;
        } else {
                if (_backend->stop ()) {
-                       if (pl.locked ()) { 
+                       if (pl.locked ()) {
                             pl.release ();
                         }
                        return -1;
@@ -1486,14 +1490,13 @@ void
 AudioEngine::add_pending_port_deletion (Port* p)
 {
        if (_session) {
-               std::cerr << "Adding " << p->name() << " to pending port deletion list\n";
+               DEBUG_TRACE (DEBUG::Ports, string_compose ("adding %1 to pending port deletion list\n", p->name()));
                if (_port_deletions_pending.write (&p, 1) != 1) {
                        error << string_compose (_("programming error: port %1 could not be placed on the pending deletion queue\n"), p->name()) << endmsg;
                }
                _session->auto_connect_thread_wakeup ();
        } else {
-               std::cerr << "Directly delete port\n";
+               DEBUG_TRACE (DEBUG::Ports, string_compose ("Directly delete port %1\n", p->name()));
                delete p;
        }
 }
-