summaryrefslogtreecommitdiff
path: root/libs/ardour
AgeCommit message (Collapse)Author
2017-07-02Add API to step though parameter enumerationsRobin Gareus
2017-07-02Prepare x-thread signals plugin-GUI visibilityRobin Gareus
2017-07-01Remove old libardour API for plugin UIsRobin Gareus
2017-07-01Fix thinko in dd3f922788Robin Gareus
2017-06-30Don't invert azimuth & elevation display valueRobin Gareus
2017-06-30NO-OP: whitespaceRobin Gareus
2017-06-30Remove cruft (ParameterDescriptor sets this)Robin Gareus
2017-06-30Tweak LV2 float parameter printingRobin Gareus
2017-06-29Fix multi-channel delaylines #7409 part 2/2Robin Gareus
2017-06-29Fix send mono to stereo (or N to M; M > N) sends #7409 part 1/2Robin Gareus
2017-06-27Distinguish error-messages.Robin Gareus
The vast majority of errors reported by users as "Cannot configure audio/midi engine with session parameters" have nothing to do with engine-parameters.
2017-06-26Add convenience fn to compute a file's sha1sumRobin Gareus
2017-06-25Allow saving state w/o backendRobin Gareus
Connections are remembered by ARDOUR::Port to re-establish at load.
2017-06-25Create a deep-copy of MIDI sources when saving snapshotsRobin Gareus
2017-06-25Extend API to allow calling new_midi_source_path() with source_lock heldRobin Gareus
This is in preparation for cloning MIDI-sources during snapshot save.
2017-06-24Fix metronome + capture alignment for MixbusRobin Gareus
2017-06-23leave a hint for clang's static analyzerRobin Gareus
2017-06-23Remove Automation Types that should never have existed.Robin Gareus
2017-06-23Implement undo for merging VCA-master automation/value on disconnect.Robin Gareus
2017-06-23Improve default parameter displayRobin Gareus
2017-06-23Remove unnecessary LocaleGuard header includeTim Mayberry
2017-06-22Update Slavable APIRobin Gareus
Do not use AutomationType to identify parameters, use complete Evoral::Parameter and Automatable. For "batch connections", a Slavables needs to implement an API to return the relevant controls. This is only a first step towards a more generic Master/Slave framework.
2017-06-22NO-OP: whitespaceRobin Gareus
2017-06-22Remove LocaleGuard from Plugin::get_stateTim Mayberry
Let the plugin implementation of Plugin::add_state use a LocaleGuard if it is necessary (VST/LV2). This puts the LocaleGuards where they are required but the LocaleGuards in Session::set/get_state will mean these LocaleGuards are a noop. They are still useful for documentation purposes and in case the code is called from a non-Session context at some point.
2017-06-22Remove LocaleGuards from LadspaPlugin::set/add_stateTim Mayberry
String <-> type conversion is being performed by the pbd/string_convert.h API via PBD::XMLNode so LocaleGuards are not necessary.
2017-06-22Remove unnecessary LocaleGuards from VSTPlugin derived classesTim Mayberry
VSTPlugin::set_state and VSTPlugin::add_state methods both already contain LocaleGuard instances.
2017-06-22Remove locale_guard.h from ardour/ardour.h headerTim Mayberry
Add to source files that use LocaleGuard Results in far less recompiling when pbd/locale_guard.h changes
2017-06-22Remove LocaleGuard from ARDOUR::PannerShellTim Mayberry
All Panner implementations using PBD::to_string/string_to for float <=> string conversion and no longer require a LocaleGuard.
2017-06-22Remove LocaleGuard from ARDOUR::Pannable classTim Mayberry
string <=> float conversions are using PBD::to_string/string_to and no longer require a LocaleGuard
2017-06-22Remove LocaleGuards from ARDOUR::Tempo classTim Mayberry
All float <=> string conversions are done for PBD::string_to/to_string and no longer require a LocaleGuard.
2017-06-22Remove LocaleGuards from ARDOUR::Speakers classTim Mayberry
float <=> string conversions are now using PBD::to_string/string_to via XMLNode for locale independent conversion and these guards are not necessary.
2017-06-22Remove LocaleGuards from ARDOUR::Session transport related methodsTim Mayberry
ARDOUR::AutomationList is no longer using LocaleGuards as float <=> string conversion is using PBD::to_string/string_to so the reason for adding these guards as per comment no longer applies.
2017-06-22Remove LocaleGuard from Session::load_optionsTim Mayberry
PBD::ConfigVariable uses PBD::to_string/string_to methods so this LocaleGuard is no longer necessary.
2017-06-22Remove LocaleGuards from SessionConfiguration classTim Mayberry
ConfigurationVariable is now using PBD::to_string/string_to for float <=> string conversions so LocaleGuard is no longer necessary.
2017-06-22Remove LocaleGuard from Session::immediately_post_engine methodTim Mayberry
I think this was only to protect the float <=> string conversion in Session::setup_click_state related to click gain which is now using PBD::to_string/string_to and so no longer necessary.
2017-06-22Remove LocaleGuard from ARDOUR::Route classTim Mayberry
Route and all members are now using locale independent string <=> float conversions.
2017-06-22Remove LocaleGuard from ARDOUR::MonitorProcessor state methodTim Mayberry
All float <=> string conversions are done using PBD::to_string/string_to via XMLNode and LocaleGuard is not necessary.
2017-06-22Remove LocaleGuard from ARDOUR::RCConfiguration classTim Mayberry
This presumes that all ControlProtocol implementations either use PBD::to_string/string_to for float <=> string conversions, which is now the case.
2017-06-22Remove LocaleGuards from LuaProc classTim Mayberry
All float <=> string conversions are done using PBD::to_string/string_to via XMLNode so no LocaleGuard is necessary.
2017-06-22Remove LocaleGuard from ARDOUR::MidiTrack classTim Mayberry
There are no float <=> string conversions and they are all now performed using PBD::to_string/string_to via XMLNode
2017-06-22Remove LocaleGuard from ARDOUR::MidiDiskstream classTim Mayberry
There are no float <=> string conversions in MidiDiskstream state methods, these guards must have been to protect conversions in Diskstream state methods which are now using PBD::to_string/string_to via XMLNode so no longer need guarding.
2017-06-22Remove LocaleGuards from ARDOUR::ExportFormatSpecification state methodsTim Mayberry
All float <=> string conversions are performed by PBD::to_string/string_to via XMLNode.
2017-06-22Remove LocaleGuard from ARDOUR::Diskstream state methodTim Mayberry
The float conversion in Diskstream::get_state is now done using PBD::to_string/string_to via XMLNode::set_property API. There was no explicit LocaleGuard protecting the string -> float conversion to remove so it was probably protected by the caller.
2017-06-22Remove LocaleGuard from ARDOUR::AutomationList classTim Mayberry
All float conversions are using PBD::to_string/string_to via XMLNode::get/set_property API
2017-06-22Remove LocaleGuard from ARDOUR::Region classTim Mayberry
Property conversions <=> string use PBD::to_string/string_to so float conversions don't need to be protected by a LocaleGuard
2017-06-22Remove LocaleGuard from ARDOUR::AudioRegion state methodsTim Mayberry
float <=> string conversions are performed using PBD::to_string/string_to via XMLNode
2017-06-22Remove LocaleGuard from ARDOUR::AudioTrack classTim Mayberry
The gain property float <=> string conversion is now performed using PBD::to_string/string_to via XMLNode
2017-06-22Remove LocaleGuard from AudioFileSource::get_stateTim Mayberry
Not necessary when using XMLNode::set_property API
2017-06-22Remove LocaleGuard from ARDOUR::AudioDiskstream state methodsTim Mayberry
There are no float <=> string conversions and they are all now performed using PBD::to_string/string_to via XMLNode
2017-06-22Remove LocaleGuard from ARDOUR::IO class state methodsTim Mayberry
There are no float <=> string conversions that require a LocaleGuard and all conversions are performed using PBD::to_string/string_to via XMLNode