summaryrefslogtreecommitdiff
path: root/libs/ardour
AgeCommit message (Collapse)Author
2017-02-01Reduce continuous stream of warning messages (latent plugin, PH @ zero)Robin Gareus
2017-01-31Expose a new lua hook for resetting a plugin processor ( convenience func ↵Ben Loftis
only: this avoids the necessity of an extra cast to PlugInsert )
2017-01-30Fall back to general MIDI synth for auditioning.Robin Gareus
2017-01-28add VCA::full_name() which returns "VCA %n" : VCA %n" by default and "VCA %n ↵Paul Davis
: user-provided-name" if the name has been set
2017-01-28stop looping when deleting loop-range (fixes potential crash)Robin Gareus
2017-01-28improved (as in "correct") deadlock fix for PresentationInfo::ChangePaul Davis
2017-01-28fix deadlock in mutex'ed PresentationInfo codePaul Davis
2017-01-27use a lock when dealing with PresentationInfo::Change emissionPaul Davis
This allows us to emit the signal while still marking further emissions as blocked. This in turns prevents handlers from recursively calling themselves.
2017-01-27show what PresentationInfo::Change is being used forPaul Davis
2017-01-27use RAII for class-wide PresentationInfo::Change signal, along with ↵Paul Davis
properties to describe what changed
2017-01-27mark session dirty when moving range markers or altering location lock style.nick_m
2017-01-27mark session dirty when dragging tempo markers.nick_m
2017-01-27no-op - whitespace fix for libs/ardour/playlist.ccnick_m
2017-01-23NO-OP: add a few spaces before function argsPaul Davis
2017-01-23Safe Mode: disable VST scanRobin Gareus
2017-01-23at transport stop, clear all existing automation watches (touch)Paul Davis
2017-01-22Update Japanese translationHiroki Inagaki
2017-01-22implement Session::route_by_selected_count()Paul Davis
2017-01-22PresentationInfo needs to emit Change for selection/hide/orderPaul Davis
2017-01-21Lua: bindings for do_import()Robin Gareus
2017-01-21don't repeat-hard-code names for 3 automation types.Paul Davis
Fixes warning during session loading
2017-01-21use SSE/AVX for scaling gain automation buffer via masters' valuePaul Davis
2017-01-21Amp is the one place where we generate a per-sample vector for automation ↵Paul Davis
playback. Scale this by the masters' value(s) if appropriate
2017-01-21SlavableAutomationControl::get_value(), if doing automation playback, should ↵Paul Davis
still scale the returned value by the masters' value(s)
2017-01-21update bbe62da55a - use last-modified-with, strip git-revRobin Gareus
2017-01-21Instrument insert options:Robin Gareus
* allow to directly fan-out when adding a multi-channel instrument * Mixbus: move multi-channel instruments after Comp & EQ.
2017-01-20Instrument channel option when adding trackRobin Gareus
By setting strict-io on the Instrument plugin early during track creation, adding the plugin will trigger a PluginSetup Dialog for multi-out instruments in a strict i/o track.
2017-01-20Extract program version that a session was created withRobin Gareus
2017-01-20remove cruftRobin Gareus
2017-01-20fix a -WformatRobin Gareus
2017-01-20Plug some libardour memory leaksRobin Gareus
2017-01-20Plug a memory leak (recent session list, session info)Robin Gareus
2017-01-20Add a note.Robin Gareus
2017-01-20Fix oddities when replacing VST-presets.Robin Gareus
VST used the count of available of presets as URI: - add 2 presets (1,2) - remove first, add another one -> two presets with same URI (2,2) PluginInfo::get_presets() simply lists all (name only) in a vector. Plugin::find_presets() uses the URI in a map (unique by URI). ..various ensuing bugs: eg. Plugin::remove_preset() looked up by name, but didn't check for NULL.
2017-01-19Scale default Atom Ringbuffer size with samplerateRobin Gareus
This increases the safe-margin for plugins producing more messages sent to the plugin GUI (usually fixed ~25Hz updates)
2017-01-19Relax monitor-section processor channel restrictionRobin Gareus
2017-01-19Add some commentRobin Gareus
2017-01-19Add alternative preroll record mode:Robin Gareus
* Start recording at preroll, trim region to skip preroll at rec-stop * Keep old punch-in rec-at-preroll API for tape-tracks (later)
2017-01-19Rework preroll-rec API:Robin Gareus
* rename: indicate that recording happens after preroll, punch-in * move API into libardour: rec+roll (no separate setup, seek, roll APIs)
2017-01-19Move preroll duration calc into libardourRobin Gareus
2017-01-18Implement record with prerollRobin Gareus
2017-01-17Implement Count-In (before recording), fixed BPM, up to 2 barsRobin Gareus
2017-01-17Split metronome methods into re-usable parts (for count-in)Robin Gareus
2017-01-16Prepare session-wide implicit monitoring overridesRobin Gareus
2017-01-15Add Japanese translationHiroki Inagaki
2017-01-13Set rate and blocksize for multi-instance VSTsRobin Gareus
2017-01-10Fix MTC slave implicit return on transport-stopRobin Gareus
MTC returns not-locked (no flywheel) when the signal is lost, in which case Session::follow_slave() jumps to no_roll and ignores the slave-position. The MTC slave does explicitly request a transport-locate and transport-stop. Yet, Session::realtime_stop() honors _requested_return_frame for whatever reason
2017-01-09add XML names/handling for additional Parameter types.Paul Davis
This is still incomplete and really not generic. Ought to be revisited, but has backwards compatibility issues that make it more complex
2017-01-09save state of an automation list, even if empty, because it might exist in ↵Paul Davis
the history state
2017-01-09tweak previous commit to make desc.max_unbound "more correct"Paul Davis