Commit graph

10225 commits

Author SHA1 Message Date
Robin Gareus
09202249e1 NO-OP document Evoral::ControlList 2016-04-10 20:55:59 +02:00
Robin Gareus
de23c3d3ae add a C++ lifetime MementoCommand API 2016-04-10 17:13:00 +02:00
Robin Gareus
0e70b779b4 expose Undo Commands to Lua
Some trickery is needed here to manage object lifetimes and
multiple inheritance.
2016-04-10 01:45:41 +02:00
Robin Gareus
ac7765bceb add some more libardour lua bindings 2016-04-09 15:45:30 +02:00
Robin Gareus
ed25eec79b another lua convenience API 2016-04-09 15:45:30 +02:00
Robin Gareus
2ff63925c2 refactor and document delayline 2016-04-09 15:45:30 +02:00
John Emmas
888648e4e0 Accommodate newly introduced source(s) in our MSVC project (libardour) 2016-04-09 09:44:32 +01:00
Robin Gareus
024cf58c05 improve elapsed time readability for large numbers. 2016-04-08 21:50:02 +02:00
Robin Gareus
94ebad3854 Profile Session::save_state 2016-04-08 21:45:32 +02:00
Robin Gareus
ff05c82312 Revert "experimental session-save speedup" -- needs C++11
This reverts commit d1dcedaccf.
2016-04-08 21:21:38 +02:00
Robin Gareus
3def1b2830 more potential session-save speedup.
std:vector trumps std::list speed in all aspects: traversal, insertion
(at end) and Deletion.  ..but we'll have to be careful about iterators..
2016-04-08 21:03:23 +02:00
Robin Gareus
d1dcedaccf experimental session-save speedup
property order is not important,
unordered_map lookup and insertion is O(1)
2016-04-08 20:32:49 +02:00
Robin Gareus
6dd5d6df71 Latency compensation for plugin thru routing. 2016-04-08 18:21:46 +02:00
Robin Gareus
681b65aa0b Add a fixed (not de-clicked) multi-buffer audio/midi delayline.
A ringbuffer intended to be used for plugin-thru/bypass
latency compensation.
2016-04-08 18:16:37 +02:00
Robin Gareus
e27096b054 consistent count/n_total API 2016-04-08 18:16:19 +02:00
Robin Gareus
752662051a add Plugin LatencyChanged() signal and max latency report 2016-04-08 18:16:01 +02:00
Robin Gareus
01251e7e14 mark session dirty when plugin pin mapping changes 2016-04-07 18:38:24 +02:00
Robin Gareus
18713b7d1f add support for plugin bypass/thru connections
TODO: remove midi-bypass special case (backwards compatible)
2016-04-07 18:24:00 +02:00
Robin Gareus
7abb46a487 amend 00ecc545 (split + inplace) 2016-04-06 17:03:36 +02:00
Robin Gareus
165ae0863a consistent lua binding name (nil is a reserved word in lua) 2016-04-06 17:03:28 +02:00
Robin Gareus
00ecc545bc return of the in-place split-processing optimization 2016-04-06 15:31:13 +02:00
Robin Gareus
98919a6bcf lua bindings & API documentation 2016-04-06 05:15:40 +02:00
Robin Gareus
31b2c78581 update processor in-place mode when pin-mapping changes 2016-04-06 05:15:09 +02:00
Robin Gareus
021a52cc75 Route API to query all outputs (incl sends) and graph-feeds 2016-04-06 02:01:17 +02:00
Robin Gareus
45019517d7 Add an API to traverse the process graph downstream 2016-04-06 02:00:17 +02:00
John Emmas
e15fb85443 When building with MSVC don't attempt to link to the 'old' lua libs (i.e. the static libraries) 2016-04-05 12:25:24 +01:00
Robin Gareus
db2a55f88a fix d3447dfd1 Mixbus special case. 2016-04-05 01:24:51 +02:00
Robin Gareus
6afcfe66db desaturate inactive rec-enabled button 2016-04-05 00:25:46 +02:00
Robin Gareus
b9a1ac06e3 drop std::vector<double> lua binding. not used in the backend 2016-04-05 00:00:06 +02:00
Paul Davis
91f2f46a0a fix return value for playback/capture buffer loads on audio tracks with no channels 2016-04-04 15:26:39 -04:00
Robin Gareus
d3447dfd15 special case MB channelstrip 2016-04-04 18:58:05 +02:00
John Emmas
40aa4cfe06 Modify our MSVC projects to build liblua as a DLL rather than a static lib 2016-04-04 16:40:20 +01:00
John Emmas
54b356e20a Accommodate newly introduced source(s) in our MSVC project (libardour) 2016-04-04 16:40:19 +01:00
John Emmas
10486fa2cc #define LUA_DEBUG when making a Debug build with MSVC 2016-04-04 16:40:18 +01:00
Robin Gareus
196e910992 those who can't spell need to push thrice. 2016-04-04 15:12:22 +02:00
Robin Gareus
1a7a9455ca expose more info from plugin-strip (for GUI display) 2016-04-04 14:58:16 +02:00
Robin Gareus
8d26a67ddd liblua visibility and compiler-flags 2016-04-04 13:42:50 +02:00
Robin Gareus
e19744430a don't collect rt-mempoll statistics anymore (by default) 2016-04-03 23:54:53 +02:00
Robin Gareus
e84453e878 cement daa10a6a38 2016-04-03 23:51:59 +02:00
Robin Gareus
ed74d4beff automatically add & connect sidechain plugin pins.
This will affect old sessions that use LV2 plugins with ports marked
as side-chain input. Those ports are no longer connected by default to
the route's input.
2016-04-03 22:45:23 +02:00
Robin Gareus
daa10a6a38 Fix graph ordering incl. Inserts, Returns and SideChains
When building the process graph. Ardour usess
   Route::direct_feeds_according_to_reality()
This function only tests if the current route (or any ioprocessors)
is feeding another route's *input*.

Inserts, Return and now Sidechains are ignored as destinations on the
destination route are not taken into account.

This is now resolved by adding an IOVector, a collection of all inputs
of the destination route.
2016-04-03 22:45:23 +02:00
Robin Gareus
650f2802a0 Implement describe_io_port() API for LV2 2016-04-03 22:45:23 +02:00
Robin Gareus
b23ef97845 add Plugin API to query port-labels and side-chain property. 2016-04-03 22:45:23 +02:00
Robin Gareus
fe1985c3e3 add channel count difference operator. 2016-04-03 22:45:23 +02:00
John Emmas
8358e82291 Accommodate newly introduced source(s) in our MSVC project (libardour) 2016-04-03 15:23:50 +01:00
Robin Gareus
6739b6a1e3 handle sidechain input changes 2016-04-03 05:16:54 +02:00
Robin Gareus
071c72a977 small optimization, read-only buffer suffices here. 2016-04-03 05:16:47 +02:00
Robin Gareus
91b875148a expose plugin sidechain (via route):
Processor and Process lock are needed, and the plugin chain needs to be
reconfigured, so this cannot be directly performed by the plugin.
2016-04-03 03:11:18 +02:00
Robin Gareus
4aa4b803ee implement plugin sidechain 2016-04-03 03:10:08 +02:00
Robin Gareus
6154dc595c ignore sidechain configuration test result 2016-04-03 03:07:29 +02:00