summaryrefslogtreecommitdiff
path: root/libs/ardour/audioengine.cc
AgeCommit message (Collapse)Author
2015-01-25audio-engine use internal API to stopRobin Gareus
emit signal(s) when engine is stopped due to backend change.
2014-12-03fix audio-engine dtor.Robin Gareus
backends - once instantiated - keep a reference to the engine. when audioengine is destroyed, the backends must be deinstantiated. This fixes various unit-test cases.
2014-11-18remove superfluous if-branch (_session is checked a few lines above)Robin Gareus
2014-10-23skip unavailable backends early on.Robin Gareus
2014-10-22remove unused codePaul Davis
2014-10-17windows: don’t popup message box when libjack is not foundRobin Gareus
2014-10-08initialize some uninitialized vars - closes #5974Robin Gareus
2014-09-30copy over current Waves version of their backend, along with minor changes ↵Paul Davis
in libs/ardour and libs/backend/jack to fit with API changes
2014-08-31prepare for clang static analysis of RT-functions:Robin Gareus
see: https://github.com/fundamental/stoat eventually more functions should be annotated, and a common header file should be used to #define REALTIME __attribute__((annotate("realtime")))
2014-06-25Use PBD::find_files_matching_pattern instead of other variationsTim Mayberry
2014-06-19fix port-unregister (on failed latency measurement)Robin Gareus
2014-06-08prepare MIDI latency measurement (backend)Robin Gareus
2014-06-07Revert windows backend search expression to "*backend.dll"Tim Mayberry
2014-06-04fixes to change engines while Ardour is running.Robin Gareus
When a new backend is selected, it is loaded to query available devices etc. This effectively drops the current backend.
2014-05-14Fix pattern to match possible audio backends on windowsTim Mayberry
2014-05-01use AudioBackendInfo::already_configured() to correctly determine if backend ↵Paul Davis
requires setup Fixes issues when using JACK backend in combination with others, that prevented connecting to an existing JACK server.
2014-03-24call AudioBackend::drop_device() when dropping a backend.Paul Davis
It is not clear that ::drop_device() is part of the same semantic operation as ::stop(), so we call them separatey
2014-03-10Create 'libs/ardour/search_paths.cc/.h' and transfer backend_search_path() ↵John Emmas
to it
2014-02-24remove unused and unimplementable audio engine sample format codePaul Davis
2014-02-24add (finally) DEBUG::AudioEngine bit and convert existing debug trace ↵Paul Davis
messages to use it
2014-01-10Merge windows+cc branch into cairocanvas branch. Not finished, need to now ↵Paul Davis
merge windows branch to get changes from there
2013-12-04change "cpu" in cpu load backend functionsPaul Davis
2013-10-28fix thinko in declaration of ARDOUR::PortEngine::get_port_by_name()Paul Davis
2013-10-21fix issues with recording while synced to JACK (non-pure-virtual method ↵Paul Davis
added to AudioBackend) and remove pause() from AudioEngine/AudioBackend APIs
2013-10-14Merge branch 'master' into windows+ccJohn Emmas
Conflicts (hopefully resolved): gtk2_ardour/ardour_ui.cc
2013-10-14'AudioEngine::discover_backends()' - When building a debuggable backend ↵John Emmas
module on Windows (e.g. jack_backend.dll) accommodate the Windows convention that Debug builds generally have a suffix added to their name
2013-10-12adapt AudioEngine to new AudioBackend APIPaul Davis
2013-10-11Add AudioEngine::set_default_backendTim Mayberry
2013-10-09merge with master, fixing conflicts in 3 wscript filesPaul Davis
2013-10-09when looking for backends, search for *.dll as well as *.so and *.dylibPaul Davis
2013-10-07use AudioEngine destructor to do necessary stuff when shutting it down, and ↵Paul Davis
remove unused Config stuff in AudioEngine
2013-10-04Move processing thread list from ARDOUR::Graph into AudioBackend implementationTim Mayberry
2013-10-04Add AudioBackendThread class to support different thread type on windowsTim Mayberry
2013-09-17Merge branch 'master' into windowsPaul Davis
2013-09-17substantive changes to allow the audio/MIDI setup dialog to change settings ↵Paul Davis
as intended So far only tested with JACK backend, but expected to be more correct for other backends too
2013-09-17fix crash caused by trying to unregister null portsPaul Davis
2013-09-13Merge branch 'master' into windowsPaul Davis
2013-09-13use visibility control on JACK audio backend, so that we can import this ↵Paul Davis
change into windows branch
2013-09-13Merge branch 'master' into windowsPaul Davis
2013-09-13change inheritance so that an AudioBackend IS-A PortEnginePaul Davis
This allows a derived (concrete) implementation to share information (e.g. sample rate, buffer size) between the audio backend side of things and the port management side of things.
2013-09-12remove some debug output messagesPaul Davis
2013-09-12don't stop metering thread when session is removed; move engine-setup code ↵Paul Davis
into its own method. sorry, ardour build-from-source folk :)
2013-09-12lots of changes to auto-start (and stop) the backend for latency ↵Paul Davis
measurements, and continuing work on the session construction/engine configuration flow
2013-09-12merge with masterPaul Davis
2013-09-12add AudioBackendNativeThread to serve the same role as jack_native_thread_tPaul Davis
2013-09-12incomplete merge of master into windows (requires upcoming changes to master ↵Paul Davis
to be complete)
2013-09-11make use of measured latency values to set dialog controls, and use actual ↵Paul Davis
port latency to compute extra delay
2013-09-11make quit work even when latency measurement is in progressPaul Davis
2013-09-10more tweaks to latency measurementPaul Davis
don't open ports till absolutely necessary (store names for future use). tidy up parts of the dialog (tab)
2013-09-10basic functionality for hardware latency measurementPaul Davis