summaryrefslogtreecommitdiff
path: root/libs/ardour
AgeCommit message (Collapse)Author
2014-05-29Symmetric x-fade, use equivalent of -6dB per step for 7 steps.Robin Gareus
2014-05-29fix typo in vst doc.Robin Gareus
2014-05-29increase accuracy of fades.Robin Gareus
2014-05-29revert x-fade curves to Mixbus2.Robin Gareus
2014-05-28VST: fix name detection if effGetEffectName is N/A, remove superfluous \0.Robin Gareus
2014-05-28VST: properly query name from pluginRobin Gareus
2014-05-26fix region export with fades and gain.Robin Gareus
region.read_at() is additive - it assumes the buffer may already contain data from from lower regions.
2014-05-26NOOP, just re-indent diagramRobin Gareus
2014-05-26apply gain automation on bounce - fixes 5887Robin Gareus
2014-05-26allow to set custom thread-buffer sizeRobin Gareus
This is needed for gain and pan automation buffers as well as silent and scratch buffers when bouncing or exporting with larger chunk size than the current engine period.
2014-05-26process effect-automation when bouncing w/processingRobin Gareus
2014-05-25ignore sends when bouncing w/processing - only break on inserts.Robin Gareus
2014-05-25bounce to target number of channelsRobin Gareus
2014-05-25compensate for processor latency during bounceRobin Gareus
2014-05-25fix bounce with processing (thread buffers) fixes #5920Robin Gareus
2014-05-23Initialise _soundcloud_upload to false in ExportFormatSpecificationColin Fletcher
2014-05-23Add and use a DEBUG flag for Soundcloud uploads.Colin Fletcher
Replace output to stdout/stderr from Soundcloud upload functions with DEBUG_TRACE (DEBUG::Soundcloud, ...).
2014-05-23Set 'downloadable' property on Soundcloud uploadsColin Fletcher
Set the downloadable property according to what the user chose on files uploaded to Soundcloud.
2014-05-23Show URI of file uploaded to Soundcloud in log window.Colin Fletcher
2014-05-23Visual tweaks to Soundcloud panelColin Fletcher
Re-arrange the items in the Soundcloud panel into a more sensible order & arrangement, and add a (not-yet functional) tick-box to set the uploaded files to be downloadable.
2014-05-23Better names for Soundcloud-related members of ExportHandlerColin Fletcher
Rename the Soundcloud-related members of ExportHandler to all begin with soundcloud_, and rename a couple of members of SoundcloudExportSelector too for consistency.
2014-05-23Make Soundcloud upload applicable to any export format.Colin Fletcher
Add soundcloud_upload property back into ExportFormatSpecification, but instead of making it settable in the export format specification dialog, add a tick-box in each tab of ExportFileNotebook to allow setting it.
2014-05-23Remove Soundcloud upload from export format specificationColin Fletcher
Remove the Soundcloud upload property from export formats - it doesn't belong there, since it's a thing which can apply (or not) to any format preset.
2014-05-21Add newly introduced sources to MSVC projectsJohn Emmas
(SoundCloud export stuff)
2014-05-21Use Glib::usleep() for consistencyJohn Emmas
2014-05-19Merge branch 'mingw-updates' of https://github.com/mojofunk/ardour into ↵Paul Davis
cairocanvas
2014-05-19Merge branch 'export-dialog' into cairocanvasColin Fletcher
Fix merge conflicts in: gtk2_ardour/export_range_markers_dialog.cc gtk2_ardour/wscript libs/ardour/ardour/export_handler.h libs/ardour/system_exec.cc libs/pbd/pbd/system_exec.h libs/pbd/system_exec.cc
2014-05-18Add back libardour wrappers for PBD::SystemExecColin Fletcher
Add back ARDOUR::SystemExec wrapper for PBD::SystemExec, and add constructor for command line with parameter substitution.
2014-05-18Use ARDOUR namespace for SystemExecColin Fletcher
Explicitly use ARDOUR::SystemExec, and #include the right header for it too.
2014-05-17partial fix for #5871 - midi-buffer sizeRobin Gareus
2014-05-17vst - fix effGetParameterProperties; label may be unset.Robin Gareus
2014-05-17vst-scanner app: properly init and use libpbd's TransmitterRobin Gareus
2014-05-15fix midi output on audio-tracks (e.g. audio->midi plugins)Robin Gareus
2014-05-14don't use llrint on already-integral variablesDevin J. Pohly
This could trick people into thinking that there is a floating-point type hiding behind the typedef instead of an integer.
2014-05-14fix accumulated rounding error in BBT gridDevin J. Pohly
Though current_frame is an integral type (framepos_t), it was being added to as if it were floating-point, leading to an ever-increasing rounding error when creating the grid for bars/beats/ticks.
2014-05-14Fix pattern to match possible audio backends on windowsTim Mayberry
2014-05-10Bug fix imported from Mixbus2 (SVN r11025)John Emmas
Fix a crashing bug when trying to launch in a non-English locale (possibly only affects Windows)
2014-05-06provide plugins with all available buffers.Robin Gareus
e.g. Audio in -> Midi out plugins (on an audio-track). Midi-buffers do exist in the route but no corresponding (physical) Input port-buffer exists and ardour crashed. Now, the plugin itself still only accesses the mapped ports (ChanMapping), but the mapped buffers are at most "processor_max_streams" and at least the required in+out buffers for the plugin.
2014-05-06Add some casting and namespace specifiers to keep MSVC happyJohn Emmas
2014-05-06Add 'midi_scene_change' sources to ardour.vcprojJohn Emmas
2014-05-02a variety of changes to finalize (?) (MIDI) SceneChange functionalityPaul Davis
2014-05-02tell the SceneChanger to emit any relevant scene changes after a locatePaul Davis
2014-05-02changing the start (position) of a marker with a scene change needs to ↵Paul Davis
update the SceneChanger
2014-05-01Introduce global default-fade-shape configuration variableAdrian Knoth
Some users always want the same fade in/out style, e.g., constant power, symmetric, fast etc. To avoid having them change the fade style manually for each fade, use a global configuration variable instead.
2014-05-01Drop unused set_default-fade(float, framecnt_t) prototypeAdrian Knoth
2014-05-01fix crash in butler when destroying before thread is startedPaul Davis
2014-05-01use AudioBackendInfo::already_configured() to correctly determine if backend ↵Paul Davis
requires setup Fixes issues when using JACK backend in combination with others, that prevented connecting to an existing JACK server.
2014-05-01Add AudioBackend::info() method to retrieve AudioBackendInfo objectPaul Davis
Goal is to be able to call AudioBackendInfo::already_configured() from the right place.
2014-04-30use per-channel signals to pick up scene changes, rather than global onesPaul Davis
2014-04-28remove redundant os.path.join() calls when specifying install path as ↵Paul Davis
bld.env['LIBDIR']