summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour
AgeCommit message (Collapse)Author
2016-03-19cache LuaProc Parameters in ProcessorRobin Gareus
This prevents concurrent access to the lua interpreter to query them
2016-03-19Revert "hotfix for concurrent lua interpreter calls"Robin Gareus
This reverts commit 8f3a13d998e812e1c997bd8485b0d5c7b7ff9809.
2016-03-19hotfix for concurrent lua interpreter callsRobin Gareus
ToDo: localize parameter descriptor in init()
2016-03-19add some convenience lua functions for plugin managementRobin Gareus
2016-03-19prepare Instrument slots -- replace processor in placeRobin Gareus
2016-03-19remove cruftRobin Gareus
2016-03-19add OSC Lua bindingsRobin Gareus
2016-03-18start a dedicated ARDOUR lua function collectionRobin Gareus
2016-03-18implement LuaProc inline displayRobin Gareus
2016-03-18Add some convenient DSP methods for lua scriptsRobin Gareus
2016-03-16Midi Busses? why yes!Robin Gareus
2016-03-15remove plugin ui settings from rc-configRobin Gareus
2016-03-15new preference: don't open plugin GUI when there's an inline displayRobin Gareus
2016-03-14update [LV2] Plugin Inline Display API: drop cairo dependencyRobin Gareus
2016-03-14Implement LV2 Inline Display ExtensionRobin Gareus
2016-03-14prototype online self-automating LV2 plugin interfaceRobin Gareus
goes along with https://github.com/x42/automate.lv2
2016-03-14prepare custom LV2 extensionsRobin Gareus
2016-03-12Make sure that class 'ARDOUR::AnalysisGraph' is exportable (since it gets ↵John Emmas
used outside of libardour)
2016-03-11Configurable export-silence trim threshold (no GUI yet)Robin Gareus
2016-03-11prepare region/range loudness analysisRobin Gareus
2016-02-29configurable export prerollRobin Gareus
2016-02-29pre-process (silence) before export to flush reverb tails etc.Robin Gareus
2016-02-23fix LV2Plugin::requires_fixed_sized_buffers()Robin Gareus
ARDOUR::Plugin() does not inherit from ARDOUR::Processor(), the virtual function was never called.
2016-02-23Implement Lua session-scriptsRobin Gareus
2016-02-23Implement Lua DSP processor/pluginRobin Gareus
2016-02-23libardour lua-script-managerRobin Gareus
2016-02-23include static liblua with libardour & prepare bindingsRobin Gareus
2016-02-22basic DSP lib (for lua bindings)Robin Gareus
2016-02-22add lua search pathRobin Gareus
2016-02-22add syntax and scaffolding for MIDI binding maps to refer to selected ↵Paul Davis
tracks/busses. THIS DOES NOT WORK YET. Selection information is not available in libardour at this time
2016-02-22remove all trace of SAE from source code.Paul Davis
This had become incoherent over time, and posed a development hazard and burden going forward
2016-02-22replicate the remove-all-trailing whitespace commit(s) in masterPaul Davis
2016-02-22change suffix of keybinding files to ".keys" to avoid conflict with earlier ↵Paul Davis
versions. Move some code around that should never have been inside libs/ardour to begin with.
2016-02-20add processor lookup by PBD::ID via sessionRobin Gareus
In preparation for Lua bindings this completes the basic set of Session object lookup: route, source, controllable, region, processor
2016-02-16Fill some more VST transport flags.Ben Loftis
2016-02-16Revert "proper debug prints for Analyser"Robin Gareus
This reverts commit 9a281963e143d1191d701f6f248a956bdaf9200d. audiographer cannot use symbols from libardour (cyclic dependency) (only headers only are ok) "DebugBits ExportAnalysis" symbol break windows and unit-test builds.
2016-02-16chunk data before analysis, prefer 8KRobin Gareus
* consistent spectrum display for all reports (same binsize) * improved performance (power of two)
2016-02-16proper debug prints for AnalyserRobin Gareus
2016-02-15Add normalization gain factor to Export AnalysisRobin Gareus
2016-02-13Fix 6677: Post-export script reinterprets timestamp format placeholder ↵Julien ROGER
giving incorrect filename Due to localtime and its statically allocated buffer, time_struct variable is set at construct time but its value changes over time due to subsequent calls to localtime in ardour process. Replacing localtime by localtime_r fix the problem. This also fix 6713: Name of Audio (timestamp) does not match with written Filename in CD-Cue file
2016-02-12fix copy constructor.Robin Gareus
2016-02-12export analysis: include true-peak positions.Robin Gareus
2016-02-11update export analyser for dBTPRobin Gareus
2016-02-11Add API to AudioBackend for choosing between portaudio blocking or callback APITim Mayberry
2016-02-11stereo waveform, prepare spectrum faceplateRobin Gareus
2016-02-10make post-export analysis optional (default to enabled)Robin Gareus
2016-02-10Add loudness histogram Feature to the EBUr128 VAMP pluginRobin Gareus
2016-02-10Post-export AnalysisRobin Gareus
2016-02-09Fix crash when aborting export.Robin Gareus
The "Stop" button results in ExportHandlerPtr being destroyed. This must not happen while it's in use -- in particular during ExportHandler::start_timespan() and ExportHandler::finish_timespan()
2016-02-09detailed export state, prepare resolution for #6512Robin Gareus
(Post-processing step should announce itself during an export)