summaryrefslogtreecommitdiff
path: root/libs/ardour
AgeCommit message (Collapse)Author
2017-09-18don't crash when recording due to null midi_write_sourcePaul Davis
2017-09-18manual fixes for various XML API changes in master, required after rebase on ↵Paul Davis
master
2017-09-18remove all remaining vestiges of per-track varispeed from libardourPaul Davis
2017-09-18get diskreader working, and remove per-track varispeed API and mechanismPaul Davis
2017-09-18remove debug outputPaul Davis
2017-09-18correctly create Tracks, not BussesPaul Davis
2017-09-18save processor type for Disk{Reader,Writer}Paul Davis
2017-09-18addd more DEBUG_TRACE for DiskIO; set DiskIOProcess::_need_butler more ↵Paul Davis
appropriately; other minor adjustments
2017-09-18nothing to do anymore at the Track level when input config changesPaul Davis
2017-09-18reinstate input monitoring functionPaul Davis
2017-09-18fully remove diskstream codePaul Davis
2017-09-18random changes required to get an audio track created and transport functionalPaul Davis
2017-09-18remove Diskstream from Track and derivatives; get ardour to actually startupPaul Davis
2017-09-18remove now-non-existent method from LuaPaul Davis
2017-09-18add DEBUG::DiskIOPaul Davis
2017-09-18remove Session::track_by_diskstream_id()Paul Davis
2017-09-18mega-commit to save state of first "it compilesand links" state for ↵Paul Davis
separated disk i/o changes. THIS WILL NOT RUN. THIS REQUIRES MANY CHANGES
2017-09-18merge almost all audio & midi diskstream code, redistribute between ↵Paul Davis
DiskIOProcessor, DiskReader,DiskWriter; compile and link
2017-09-18remove duplicated (in heirarchy) loop location from DiskReaderPaul Davis
2017-09-18move need-butler from DiskReader to DiskIOProcessorPaul Davis
2017-09-18move ChannelInfo structure from DiskReader into DiskIOProcessorPaul Davis
2017-09-18merge MidiDiskstream into DiskReader (playback parts)Paul Davis
2017-09-18two additional AudioDiskstream methods, partially commented out nowPaul Davis
2017-09-18merge AudioDiskstream playback code into DiskReaderPaul Davis
2017-09-18crawling towards the APIs for separate disk i/oPaul Davis
2017-09-18totally crude mockup of new disk_io.h headerPaul Davis
2017-09-18Bump session file format (pre 6.0)Robin Gareus
* latch automation * logarithmic interpolation option
2017-09-18Add support for Latch AutomationRobin Gareus
2017-09-18Revert "Temporary session-format compatibility (revert before release)"Robin Gareus
This reverts commit 8cd8cb165037906d5a35c8e147785845d0f4f808.
2017-09-18NO-OP: whitespaceRobin Gareus
2017-09-16Namespace PBD::RingBufferRobin Gareus
class RingBuffer<> is a very generic name and should not pollute the global namespace.
2017-09-09Only emit InstrumentInfo::Changed() on actual changeRobin Gareus
Ignore plugin re-order, meter-pos changes and other cases where Route calls reset_instrument_info()
2017-09-09Fix signal-emission order (first re/set instrument info)Robin Gareus
2017-09-09Prepare for singleton patch-selector per midi-track UI (mixer, editor,..)Robin Gareus
2017-09-09LV2/midnam tweaks - fix race conditionsRobin Gareus
* Emit signal once midnam was actually updated * only re-read midnam if was it changed. This allows idempotent calls to read_midnam() - from the same thread. At session-load a synth-plugin may load a soundfont in the background and emit midnam_update() after the synth was initialized but before the GUI thread connects to the signal. By making the call idempotent the GUI can call read_midnam() after connecting to the signal to catch up.
2017-09-09Allow to send MIDI data directly to a pluginRobin Gareus
2017-09-08Add LV2 extension to notify host about midi-bank/pgm state.Robin Gareus
2017-09-08Non-numeric Properties are not automatableRobin Gareus
Fixes a crash, when the Generic-UI tries to access the AutomationList of LV2 URID or String Properties.
2017-09-08Emit Changed() signal when MIDI bank/pgm changesRobin Gareus
2017-09-07Fix bumping .mid file name (snapshots & playlist copy)Robin Gareus
When forking regions, copying playlists or saving snapshots we do not have a reference to the track and cannot use the track's name as basis for the new filename like Editor::fork_region() does. A cloned midi region's name is based on the original region name. This prevents endless addition "name-1-1-1-1-1-1-1-1.mid", adding to the region's basename.
2017-08-31Call curl_global_init() exactly only once (2/2)Robin Gareus
2017-08-30Don't use API definition as namespace & fix whitespaceRobin Gareus
2017-08-30Gracefully handle templates that lack contents in their description or ↵Ben Loftis
created_with node.
2017-08-29Abstract definition of rt-scheduler policyRobin Gareus
pthread-w32 does not support pthread_setschedparam() with SCHED_FIFO and bails out. While pthread_create() simply ignores the policy and sets the priority regadless. This only affects ctrl-surface event-loops & AutomationWatch on Windows.
2017-08-29Set Automationwatch thread priority (needs to be higher than GUI)Robin Gareus
This fixes an issue with sparse automation touch/write when the CPU is busy (stationary playhead, waveform rendering, or just high DSP load)
2017-08-29Compare bundle ports per-typeJulien "_FrnchFrgg_" RIVAUD
This addresses the XXX comment in Bundle::has_same_ports()
2017-08-29Make Bundle::disconnect() more robustJulien "_FrnchFrgg_" RIVAUD
Instead of asserting or crashing if the number of channels of both bundles don't match, just try to disconnect as much as possible.
2017-08-28Make Bundle::connected_to() optionally check for exclusivityJulien "_FrnchFrgg_" RIVAUD
If the new optional argument is true, then the first bundle will also check if it has other connections than to the given bundle.
2017-08-28Make Bundle::connected_to() able to check only a single DataTypeJulien "_FrnchFrgg_" RIVAUD
Also use the same iteration logic than in Bundle::connect to avoid mismatched port types.
2017-08-24Remove all manual accounting of connected user bundlesJulien "_FrnchFrgg_" RIVAUD
IO used to manually keep a list of user bundles it was connected to, but it didn't work correctly: sometimes it didn't notice that a bundle wasn't connected anymore, and the list wasn't correctly persisted across save/reloads among other things. Moreover, it wasn't needed at all, since the user bundles are correctly listed by _session.bundles() and IO already notices they are connected ! Remove all occurrences of |_bundles_connected| and |check_bundles_connected|.