summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-10-29Remove unused per-port buffer offsetRobin Gareus
2017-10-29NO-OP: whitespaceRobin Gareus
2017-10-29Quick hack to test engine vari-speed (2/2)Robin Gareus
2017-10-29Quick hack to test engine vari-speed (1/2)Robin Gareus
2017-10-29Move vari-speed into backend (resample ports)Robin Gareus
Previously Ardour used a /local/ per track vari-speed mechanism. Now that the disk-reader is a latency-compensated processor, the speed of each disk-reader would need to be maintained locally, offset by each disk-reader's output latency. Furthermore each disk-reader may produce a different number of samples, depending on its global alignment. This commit introduces port-data resampling directly at the engine-level: Up/down-sample all input ports at the beginning, and down/up-sample output port-data using the inverse ratio at the end of the session's process cycle. The session itself is unaware of the speed-change, and only needs to handle transport speeds {-1, 0, +1}. This also allows for aligned cue-monitoring and vari-speed recording, and also pitch-shifts synthesized MIDI along.
2017-10-29Add a dedicated mono variable resampler versionRobin Gareus
2017-10-29Fix/update alsa backend build recipe (statically link zresampler)Robin Gareus
2017-10-29Update Lua Bindings, fix inconsistencies.Robin Gareus
2017-10-29Revert "relax zita-resampler's relative ratio"Robin Gareus
This reverts commit d1b5a9ed3deb3045971bd16f6613ef328e49b7e8.
2017-10-28Fix loading sessions w/new tempo-map.Robin Gareus
Newly constructed sessions don't save "Tempo-start" property. If there's no "start" node, _legacy_bbt is never explicitly set and the default c'tor is used, which sets bar = 1. The test for legacy session checks bar != 0. All new sessions were processed with fix_legacy_session(), which breaks the tempo-map and makes the session not loadable (duplicate Tempo).
2017-10-28Fix initial cycle noise with dummy-loopbackRobin Gareus
2017-10-28relax zita-resampler's relative ratioRobin Gareus
2017-10-27Accommodate newly added/removed source(s) in our MSVC project (libpbd)John Emmas
2017-10-26Add a RAII SpinLock (using boost's spinlock)Robin Gareus
2017-10-26NO-OP: whitespace cleanupPaul Davis
2017-10-26move mixbus-only variable declarationPaul Davis
2017-10-26remove unused variablePaul Davis
2017-10-26fix preprocessor error on some/many systemsPaul Davis
2017-10-26switch from std::auto_ptr<> (deprecated) to boost::scoped_ptr<>Paul Davis
2017-10-26remove unused variablePaul Davis
2017-10-26switch from std::auto_ptr<> (deprecated) to boost::scoped_ptr<>Paul Davis
2017-10-26switch from std::auto_ptr<> (deprecated) to boost::scoped_ptr<>Paul Davis
2017-10-26remove unused variablesPaul Davis
2017-10-26remove unused variablePaul Davis
2017-10-26optimization for track with zero audio channels should not short-circuit ↵Paul Davis
MIDI disk reading
2017-10-26remove unnecessary callsPaul Davis
2017-10-26allow hardev to work againPaul Davis
2017-10-26headless arval scriptPaul Davis
2017-10-25OSC: fix mixed types keeps from building on serverLen Ovens
2017-10-25OSC: Provide click level controlLen Ovens
2017-10-25OSC: add feedback for punch in/out, click and click levelLen Ovens
2017-10-25OSC: add feedback for toggle_rollLen Ovens
2017-10-25OSC: fix monitor input/disk buttons so both can be onLen Ovens
2017-10-24OSC: fix /strip/receives to have the original ssid like /strip/sendsLen Ovens
2017-10-24OSC: fix refresh surfaceLen Ovens
2017-10-24OSC: remove duplicate code.Len Ovens
2017-10-24OSC: cleaned up selectLen Ovens
2017-10-24OSC: fix add and remove tracks to update without bank change.Len Ovens
2017-10-23lv2 compat for liblilv < 1.10.0Robin Gareus
2017-10-22OSC: fix various crash pointsLen Ovens
2017-10-22Update rc_option_editor.ccOlivier Humbert
2017-10-21Detected boost using a compile-time check (works w/x-compile)Robin Gareus
2017-10-21Tweak 842d758e: selection & move into viewRobin Gareus
Use separate editor + mixer flags for moving selected tracks into view. Changing selection in the Editor will only pan the mixer-view and vice- versa. This fixes an issue with the track that is being clicked-on to be moved out of view (due to groups)
2017-10-21'Route::tape_drive_controllable()' needs to return somethingJohn Emmas
2017-10-20Don't move track into view due to indirect selectionRobin Gareus
This fixes an issue with grouped tracks, starting a [range] selection on the bottom-most. Due to group-selection all tracks in the group are selected. Previously this vertically-scrolled to move the top-most into view, which could move the bottom-most out of view.
2017-10-20Don't offer possible recursive VCA assignments in the GUIRobin Gareus
2017-10-20Add example script to assign VCAsRobin Gareus
2017-10-20Add Lua bindings for new VCA/Slavable APIRobin Gareus
2017-10-20Prevent recursive VCA assignmentsRobin Gareus
The GUI so far only prevents direct connections VCA 1 > VCA 2 > VCA 1, but does not recurse VCA 1 > VCA 2 > VCA 3 > VCA 1
2017-10-20Remove not implemented APIRobin Gareus