summaryrefslogtreecommitdiff
path: root/libs
AgeCommit message (Collapse)Author
2016-04-24reduce debug-build overhead.Robin Gareus
2016-04-24we need the process lock after all..Robin Gareus
2016-04-24some new lua-bindings and session-lua (creating sessions)Robin Gareus
2016-04-24fix mismatched delete/delete[]Robin Gareus
2016-04-24some notes on mem-leaks...Robin Gareus
2016-04-24hand over automationlist undo state ownership (mem-leak)Robin Gareus
2016-04-24plug some memory leaks in libardourRobin Gareus
2016-04-24further tweaks to session closeRobin Gareus
2016-04-24lua bindings for track/bus and session creationRobin Gareus
2016-04-24Disconnect Signals before dropping portsRobin Gareus
significantly speeds up session close
2016-04-23delegate port-connections to low priority thread.Robin Gareus
This prevents a deadlock with (some versions) jack: * add new instrument track with instrument * configure processors (takes processor lock) * add I/Os (delivery) -> create ports * auto-connect ports * jack port-connect -> jack graph re-order * Ardour graph-re-order * needs processor lock (to check sends)
2016-04-23fix typo in config variableRobin Gareus
2016-04-22fix send-id "0" when loading sessionRobin Gareus
Send::set_state() unsets the current send-id before setting the new one, but by default _bitset defaults to zero. This may lead to unset an existing send "0"
2016-04-22fix single-bus AU rendering & related updatesRobin Gareus
2016-04-22invalidate AU cache on re-scanRobin Gareus
2016-04-22use coreaudio wrapperRobin Gareus
2016-04-22Single instance AUs only, use variable i/oRobin Gareus
2016-04-22AU multibus supportRobin Gareus
2016-04-22fix AU cache clearRobin Gareus
2016-04-22add API to load plugin presets for all instancesRobin Gareus
2016-04-21and now with proper closing bracket.Robin Gareus
2016-04-21take MB dithering into account when stripping silence on exportRobin Gareus
2016-04-20backend part for MB send-panners (ignore existing state, force disable)Robin Gareus
2016-04-20fix AU sidechain connectionRobin Gareus
2016-04-20include sidechain when delegating I/O configurationRobin Gareus
2016-04-20Mixbus: auto-connect monitor-sectionRobin Gareus
Mixbus does not expose the "auto_connect_standard_busses" preference and forces it to false.
2016-04-20amend 386f244f - don't reinitialize I/O mapRobin Gareus
load ChanCount to compare if I/O maps have changed.
2016-04-20Reset I/O map when copying plugin and ChanCount changesRobin Gareus
2016-04-19OSC: removed unused _namespace_root variable.Len Ovens
2016-04-19fix stuck solo w/sidechain (when using port, not send, connections)Robin Gareus
2016-04-19clear [midi] plugin audio output buffers before running plugin.Robin Gareus
some samplers don't zero the output buffers if they're not configured or no samples are loaded.
2016-04-19Revert/amend "fix a const-cast issue"Robin Gareus
This reverts commit c9d55cb172d07d5da25140516abe045ea409b66b. because it it's "const" one cannot set it from lua.
2016-04-19some plugin-insert debuggingRobin Gareus
* report inplace * debug-dump reason(s) why i/o maps are reset
2016-04-19fix a const-cast issuePaul Davis
2016-04-19hidden config option to replace TRY_AUTOSTART_ENGINE environment var.Robin Gareus
It's really only used by the GUI, but engine states are part of ARDOUR::Config::extra_xml so this is at least similarly inconsistent.
2016-04-19default strict-i/o preference to enableRobin Gareus
This makes a lot of sense for all midi-instruments and the vast majority of mono+stereo workflows
2016-04-19Mixbus specific Pin Mapping tweaksRobin Gareus
2016-04-19NO-OP, whitespace and commentsRobin Gareus
2016-04-19fix plugin silence runs (e.g. during audition)Robin Gareus
* use max of in+out buffers * special case Mixbus * clear delay-lines
2016-04-18fix possible crash at session close.Robin Gareus
In the wake of 81faa3b420303eec2ca0e3. Disconnect Signal from process callback, may notify an IO that just reached a zero shared ptr refcount due to route-deletion (GUI thread) resulting in a double free.
2016-04-18add some assert for reloading saved plugin pin connectionsRobin Gareus
2016-04-18add notification if Engine Rate changes and mismatches session's SRRobin Gareus
2016-04-18never ever change sample-rate saved with the session after creation.Robin Gareus
2016-04-18implement metadata-set for remaining backendsRobin Gareus
2016-04-17set sidechain port pretty nameRobin Gareus
2016-04-17add IOProcessors pretty name supportRobin Gareus
2016-04-17notify IO about port disconnection due to port removalRobin Gareus
[Jack] Ports can be deleted without being disconnected first. the IO Object does not catch that condition.
2016-04-17add API to set pretty names for ardour portsRobin Gareus
2016-04-17implement pretty-name set-property for ALSA and DummyRobin Gareus
2016-04-17add portengine set-property API (follows jack_set_property)Robin Gareus