summaryrefslogtreecommitdiff
path: root/libs/backends/dummy
AgeCommit message (Collapse)Author
2017-08-04DummyBackend: allow changing SPPRobin Gareus
2017-07-31Fix typoRobin Gareus
2017-07-29Fix an ambiguous call to 'floor()'John Emmas
MSVC complains, so let's specify which override we want.
2017-07-28Add a LTC generator to the dummy backendRobin Gareus
2017-06-25Report Dummy as not available if not runningRobin Gareus
This fixes an issue with port-connections being polled from the backend even when it's not running.
2017-04-08Retain order of concurrent MIDI eventsRobin Gareus
This fixes an issue with FaderPort8 (and maybe other surfaces or synths).
2016-07-24kilo is a lower-case 'k'Robin Gareus
2016-07-14enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.hPaul Davis
2016-07-14properly sort port-namesRobin Gareus
2016-07-11add a MTC/sysex test sequenceRobin Gareus
2016-07-08fix port-sort order for good.Robin Gareus
TODO find out how to make std::set::find() work with custom sort order, as std::find may only be O(N) and not O(log (N)).
2016-07-08pre-sort port-namesRobin Gareus
2016-05-27add a test-sequence for polyphonic pressureRobin Gareus
2016-05-22NO-OP indentRobin Gareus
2016-05-22Make sure MSVC knows which version of 'floor()' we wantJohn Emmas
2016-05-21Dummy Backend evolutionRobin Gareus
- pretty port-names for Dummy generators: show frequency - add 1/3 Octave spaced sine-wave generator
2016-05-03MSVC won't compile 'const float _demolition[]' because it uses 'divide by ↵John Emmas
zero' while initializing Hopefully we can use INFINITY and NAN for the relevant initializers ?
2016-04-29I wanna be nasty, I wanna be cruel,..Robin Gareus
Somme disastrous signal generators for QA.
2016-04-26Use 'const_iterator' to prevent MSVC from complainingJohn Emmas
2016-04-26keep portmap & portindex in sync when renaming portsRobin Gareus
Fixes crash on session re-load (introduced in 800c8182 and fde99e68)
2016-04-24now with C++98 compatRobin Gareus
2016-04-24optimize port lookup, adding/removing/reconnecting routesRobin Gareus
xxxAudioBackend::connected_to() is called O(N^2) when building the graph. Mitigate this by using an O(log(N)) lookup. This duplicates the storage (both set and map and both are kept in sync. Changing this to a boost:bidirectional might be nice, before updating other backends.
2016-04-18implement metadata-set for remaining backendsRobin Gareus
2016-04-17implement pretty-name set-property for ALSA and DummyRobin Gareus
2016-02-28prepare for update to waf 1.8Robin Gareus
uselib is no longer implicit (inherited by .use). This is still incomplete, some uselibs for non-linux variants may be missing. bld.is_defined("HAVE_XXX") also no longer works and will have to be changed (I think to bld.env["HAVE_XXX"]) in countless places.
2015-11-28add some midi-debug printf() to the dummy backendRobin Gareus
2015-11-12fix edge-case in Dummy-backend random number generator initializationRobin Gareus
2015-10-02use new error-messagesRobin Gareus
2015-09-19Dummy: add a CC only test-sequenceRobin Gareus
2015-09-16update reported DSP load for ALSA & DummyRobin Gareus
2015-09-16Use ARDOUR::DSPLoadCalculator in DummyBackendTim Mayberry
2015-09-16Use PBD::get_microseconds() from pbd/windows_timer_utils.h in DummyBackendTim Mayberry
2015-09-08dummy, allow 8k buffer-size.Robin Gareus
2015-09-06fix dummy-backend driver stateRobin Gareus
When loading previous state, set_driver() is called before enumerate_drivers(). The available driver list must be available early on.
2015-09-06mode dummy speedsRobin Gareus
2015-09-06add dummy-backend speed-selectionRobin Gareus
2015-09-05Dummy-Backend: special case unit-test Robin Gareus
2015-08-14fix Dummy backend API. Already_configured means "externally".Robin Gareus
2015-08-05Dummy -> Audio system: "None"Robin Gareus
check if gettext() static initialization works with all compilers.
2015-07-05another float/double -Wabsolute-value fixRobin Gareus
2015-05-03fix portengin get_ports() flags APIRobin Gareus
require all flags to be present (same as jack)
2015-05-01dummy: ignore first cycle timing.Robin Gareus
2015-04-30clamp DSP load displsy 100% & relax LPF.Robin Gareus
2015-04-29DSP load calculation: favor peak over average.Robin Gareus
2015-04-17Dummy: fix sine/square frequency sweepRobin Gareus
2015-03-14proper port unregistration (just some refactoring, noop)Robin Gareus
2015-03-12Include windows.h in Dummy backend for LARGE_INTEGERTim Mayberry
This is necessary for a native build using MSYS2 and mingw-w64
2015-03-09some backends can handle incorrectly ordered midi events.Robin Gareus
(that can happen if multiple sources send to the same ouput port, in particular async midi events)
2015-03-08avoid non-integer loop conditions.Robin Gareus
2015-03-07fix copy/edit in 659a8a2Robin Gareus