summaryrefslogtreecommitdiff
path: root/libs/ardour
AgeCommit message (Collapse)Author
2018-01-12Refine 31f79489, de-duplicate AU I/O configurationsRobin Gareus
2018-01-11Fix AU i/o busses accounting.Robin Gareus
This fixes issues for synths with zero audio input, explicit default stereo config and optional busses.
2017-12-31Lua-binding to directly add automation-eventsRobin Gareus
2017-12-31Process Panner Automatables (emit Changed)Robin Gareus
Pan-automation is evaluated directly from the control-list. ::distribute_automated() does not update the controls. However, the *owner* of each automation-control is responsible to evaluate automation of automated automation-controls (and emit Changed() signals to notify the GUI and slaved controls). This follow the same concept as PluginInsert: The Changed signal is called on demand when evaluating automation. This fixes pan-automation-sliders (automation-lane header) not updating.
2017-12-24remove unused lineLen Ovens
2017-12-16Downgrade some undo-related error messagesRobin Gareus
Missing undo isn't a error. There are valid cases for this to happen. e.g. switching snapshots or deleting tracks or session-format changes It's useful to know, but should not distract users showing up as "Errors"
2017-12-12Add FP17 to reserved I/O namesRobin Gareus
2017-12-06Accommodate newly added/removed source(s) in our MSVC project (libardour)John Emmas
2017-12-05Add Lua bindings for MIDI-parser and Async portsRobin Gareus
2017-12-05Add a Raw MIDI parser (based on ALSA raw MIDI)Robin Gareus
2017-12-05Allow to pre-seed Lua action script paramsRobin Gareus
2017-12-05Allow to pass interpreter to evaluate action-script parametersRobin Gareus
This allows to add bindings, in particular GUI dialog, to be registered before evaluating the parameters.
2017-12-02A couple of minor changes when #including <utime.h>John Emmas
2017-11-30Add some devices to the reserved list of midi controllers.Ben Loftis
2017-11-29Set VST cache file mtime to be at least as new as the pluginRobin Gareus
Fixes issues with timezones when installing pluins from a .zip
2017-11-29Update LuaProc GC stat calcRobin Gareus
2017-11-29Tweak Lua GCRobin Gareus
2017-11-26Remove unused APIRobin Gareus
2017-11-26Sidechain latency compensation - part oneRobin Gareus
This properly sets the port-latencies of PluginInsert owned ports as well as handles external sends (send-target playback latency). NB. This needs more work to ensure that Sidechain input port playback latency is set before the feeding send queries it the connected latency. Re-ordering process may change sidechain or external-send latencies, but since re-ordering does not change the route's latency, engine.update_latency() may not be called.
2017-11-26Add convenience methods to set port latenciesRobin Gareus
2017-11-23fix call to std::unique; to actually erase dups.Robin Gareus
2017-11-23remove useless test, fgets() already ensures MAX_STRING_LENRobin Gareus
Found by PVS-Studio - https://www.viva64.com/en/b/0540/
2017-11-23Fix another duplicate if from session/system config consolidationRobin Gareus
Found by PVS-Studio - https://www.viva64.com/en/b/0540/
2017-11-23Fix typo in 318e7efbRobin Gareus
2017-11-23Add clock-delta mode enumRobin Gareus
2017-11-23Introduce a dedicated "Clock Origin" MarkerRobin Gareus
2017-11-22Release (debug) lock before emitting signalRobin Gareus
2017-11-12Add API to allow buffer offsets when applying gainRobin Gareus
2017-11-12Add a noise generator (Lua DSP)Robin Gareus
2017-11-06Some further notes (and experiments) on optimizationsRobin Gareus
2017-11-04Add some notes for future optimizations (and prepare API)Robin Gareus
2017-11-04Change Delayline to use power-of-two size and bitmaskingRobin Gareus
2017-11-04[Re]-Implement Delayline flush.Robin Gareus
Also don't automatically flush the delayline at transport or monitor- changes anymore. With full-graph latency compensation, delaylines are before the disk-reader, aligning input (disk uses read-ahead to align). Flushing the delayline should only happen when input-monitoring is disengaged. It's best degated to the Route or object using the Delayline (potentially latency-aligned delayed flush).
2017-11-04Optimize Delaylines: block-process (not one sample at a time)Robin Gareus
This also tweaks fade behavior when the latency changes to prefer a x-fade when possible. This new variant does not support concurrent re-allocation and execution. Hence the auto-connect thread needs to take a lock before updating latencies (actually there's no need for an explicit update with built-in backends, so this case remains to be updated further)
2017-11-04Clean up delayline API: don't use 'get_' for accessor method-nameRobin Gareus
2017-11-03Auditioner, silence buffer at end.Robin Gareus
2017-11-03Don't crash when auditioning empty .mid files.Robin Gareus
2017-11-03Fix polarity-control size (and crash during audition)Robin Gareus
Also initialize new polarity-invert with gain 1.0, not inverted. Don't fade-in.
2017-11-02Accommodate newly added/removed source(s) in our MSVC project (libardour)John Emmas
2017-11-01Wrap automation on loop-position, split plugin processingRobin Gareus
2017-10-31Click-free polarity inversion, also use accelerated (AVX, SSE) AmpRobin Gareus
2017-10-31Fix samples-moved (and invalid use of not initialized CubicInterpolation)Robin Gareus
2017-10-31Interpolation phase[] is initially emptyRobin Gareus
2017-10-31Fix set_loop() return value (amend 00a4ad)Robin Gareus
2017-10-31Relax assertion to allow rolling backwards into 0.Robin Gareus
2017-10-31Move Loop Location to ProcessorsRobin Gareus
The processors will becomes responsible to know about loop-positions and map latency-compensated start_sample, end_sample into the loop-range as needed.
2017-10-31Small steps towards rolling backwards..Robin Gareus
2017-10-31Migrate to Polarity-inversion processor & fix proc positionsRobin Gareus
* invert polarity after disk i/o proc or return * fix position of export-proc (after polarity) * fix input-meter (before disk-writer or after return)
2017-10-31Add polarity-invert processorRobin Gareus
2017-10-30Use new externally_connected APIRobin Gareus