summaryrefslogtreecommitdiff
path: root/libs/ardour
AgeCommit message (Collapse)Author
2018-07-27Prepare types for new gridRobin Gareus
2018-07-25Fall back to default Session export dir, if export path does not exist.Robin Gareus
2018-07-25Don't allow invalid export Locations (when using the GUI)Robin Gareus
2018-07-25Reset export-config maps before each new export (1/2)Robin Gareus
2018-07-25Add an API to reset export-handler configs.Robin Gareus
config_map.erase() is only called in ExportHandler::finish_timespan(). When an export fails (throw) or is aborted, the export-handler's config remains as is and the next export will run it again. The export-handler is global, per session and ExportHandler::add_export_config() only ever inserts or ignores insert. This is in preparation to fix: 1) export to invalid path -> fail, error is thrown 2) correct path -> new config is inserted in the map 3) try to export again, first runs the not-completed export from (1) -> constant errors.
2018-07-21Fix log-scale rangesteps and log-control numeric spinboxesRobin Gareus
2018-07-18Fix and tweak LV2:RangeStepRobin Gareus
Explicit cast to float (rangestep is unsigned int) when calculating interface steps. Also prefer to round to nearest value-point (rather than round-down).
2018-07-17Add LTC Decoder Lua BindingsRobin Gareus
2018-07-17Refactor LTC File decoder, prepare for Lua bindingsRobin Gareus
2018-07-14auto-backup: libardour part. (from mixbus)Ben Loftis
2018-07-12MonitorCue = In + Disk (fixes CC121 + push2 display)Robin Gareus
2018-07-11Correct a couple of typosJohn Emmas
2018-07-10Fix lv2-state templates with external files.Robin Gareus
This forces liblilv to collect external files in the template-folder and symlink to the original file instead of re-using the external-file folder of the session that was used to create the template.
2018-07-09NO-OP: Rename disk-reader buffer for consistencyRobin Gareus
This is in preparation to replace the Ringbuffer and avoid over-using "buf" as variable (it's already used for vectors, as parameter name and Audiobuffers.
2018-07-09Prepare API for per disk-reader de-clickRobin Gareus
2018-07-09Remove unused CubicInterpolation from sessionRobin Gareus
2018-07-09Separate ChannelInfo for disk reader and writerRobin Gareus
This allows to use different types for write and read buffers, in preparation for a dedicated reader-buffer.
2018-07-09Remove unused disk-reader vari-speedRobin Gareus
2018-07-09move rt-stop to routeRobin Gareus
currently this is only used to resolve midi events for plugins (this is conceptually not correct, note offs should be resolved by the disk-reader only), but it calls into all processors now (incl disk-reader if present), which is handy (e.g. flush delaylins)
2018-07-09Remove unused AutoLoopDeclick, PendingLoopDeclickRobin Gareus
The flags were set, but not used. They also won't be needed anymore.
2018-07-09Remove global declick APIRobin Gareus
De-click will be per disk-reader, latency compensated and buffer-size independent. Cue-monitoring should not be affected by de-click.
2018-07-05remove debug outputPaul Davis
2018-07-05catch various libsmf errors rethrown as exceptionsPaul Davis
2018-07-03reverse velocity display related commitsPaul Davis
2018-07-03enum convert for VelocityDisplayOptionPaul Davis
2018-07-03add VelocityDisplayOption enum; indent TrackAutoNamingRule decl. correctlyPaul Davis
2018-06-30Add method to find subgroup_busLen Ovens
2018-06-30Fix code styleLen Ovens
2018-06-28when creating a route from a template, use correct call to setup XML state ↵Paul Davis
so that name/ports are unique
2018-06-28call IO::prepare_for_reset() on BOTH IO nodes of a PortInsert's XML state, ↵Paul Davis
not just one of them. Allows drag-n-drop of port inserts to work
2018-06-25Accommodate recently removed source(s) in our MSVC project (libardour)John Emmas
(this also needs ardour_genericmidi to link to both evoral and boost-regex)
2018-06-21remove Session::controllable_by_descriptor() and move code into GenericMIDI ↵Paul Davis
code (the only user). This also removes enums introduced to describe well-known parameters for Mixbus. Lookup now involves string parsing every time, but this is not likely to be a notable cost.
2018-06-09Hide designated LV2 freewheeling port.Robin Gareus
2018-06-06Remove duplicate class-keys (amend d95df9164)Robin Gareus
2018-06-04remove aeffectx.h; use vestige.hPaul Davis
2018-05-31Add Lua API to list all available pluginsRobin Gareus
2018-05-17Collect plugin runtime profile statistics.Robin Gareus
2018-05-08Plugin Order: remove from instant.xml and save to: ↵Ben Loftis
plugin_metadata/plugin_order
2018-05-08Make note of Gesture messages in VST; for later.Ben Loftis
2018-05-04fix more cut-n-paste coding errorsPaul Davis
2018-05-04add well known controls to list accessible via a MIDI binding map (or OSC?)Paul Davis
2018-05-04internally, ControllableDescriptors (used by MIDI binding maps) should use ↵Paul Davis
enums for automation types, rather than something custom
2018-05-04avoid compiler warning (timestamp is unsigned and is thus always >= 0Paul Davis
2018-04-30NO-OP: a ToDo comment for discussionRobin Gareus
2018-04-26Fix issue with AU plugin-analysisRobin Gareus
Copy c'tor needs to initialize "audio_input_cnt".
2018-04-24Use URIs to identify plugin-presetsRobin Gareus
This fixes duplicate AU presets when adding a new preset. Presets are kept in a std::map<URI,...> adding a new presets uses the file-URI as ID. Loaded presets needs to have the same URI.
2018-04-07Fix VstParameterProperties (bug from ac03e4a93)Robin Gareus
This fixes VST parameter prop.flags (toggle, integer-step). VestigeMaxLabelLen is used in various places in libardour, most notably with effGetParamName.
2018-04-02Implement VST UI touch (begin/end Edit)Robin Gareus
2018-03-28NO-OP: prefer binary OR to set midi-status byteRobin Gareus
2018-03-19Lua: Lock bindings into memory for rt-scriptsRobin Gareus
Empirically this decreases gc-spike duration (worst-case) by a factor of two and speeds up the average gc-run by a factor of over 4 (depending on the amount of memory used by the plugin).