summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-10-08Added use click emphasis toggle (gtk2_ardour)click-emphasis-optional-finalDamien Zammit
2015-10-08Added use click emphasis toggle (libs/ardour)Damien Zammit
2015-10-07fix crash on 2nd LockRobin Gareus
2015-10-07add missing includeRobin Gareus
2015-10-07fix solo-group overrideRobin Gareus
2015-10-07allow to load huge VST plugin states -fixes #6623Robin Gareus
by default libxml has a XML_MAX_TEXT_LENGTH of 10M with base64 encoding that allows at most 2.5MB state. set XML_PARSE_HUGE to read large sessions
2015-10-07amend prev commit.Robin Gareus
2015-10-07update solo button callback semanticsRobin Gareus
override-group toggles current group state (not disables groups)
2015-10-07fix crash for solo btn2 + primary-modRobin Gareus
2015-10-07fix exclusive solo group-overrideRobin Gareus
2015-10-07only subdivide plugin-cycle when automation is playingRobin Gareus
PluginInsert::automation_run() subdivides plugin-run on every control-port automation event (without splitting the process cycle). libevoral has no automation-control context, hence this function must be implemented by Automatable.
2015-10-07Fix handling of Sysex messages with WinMME midi driverTim Mayberry
2015-10-07print VST blacklist filename (for good measure)Robin Gareus
2015-10-07implement solo group overrideRobin Gareus
2015-10-06add missing includeRobin Gareus
2015-10-06renice code. RAII rocks.Robin Gareus
2015-10-06CPPUNIT workaround for mingw/wine/windowsRobin Gareus
2015-10-06cancel-solo always clears all solo-state, just in case.Robin Gareus
2015-10-06add a "reset all solo state" safeguard Robin Gareus
2015-10-06fix initial AFL/PFL state after session-loadRobin Gareus
2015-10-06add missing semicolonRobin Gareus
2015-10-06more debugging for MIDI input via WinMMEPaul Davis
2015-10-06detect windows DLL architectureRobin Gareus
2015-10-06remove newly unused codeRobin Gareus
2015-10-06propagate solo/iso when disconnecting ports.Robin Gareus
2015-10-06add more debugging to portaudio/MME MIDI backendPaul Davis
2015-10-06Do not restore engine state if we don't have controlRobin Gareus
When connecting to already running jack, display jack's buffersize correctly.
2015-10-06more solo propagation fixes.Robin Gareus
handle cases Track(s) -> Bus1 -> Bus2
2015-10-06fix implicit mute displayRobin Gareus
2015-10-06"Solo Lock" only locks explicit solo (not implicit).Robin Gareus
fixes issue: Track -> Bus 1) solo track -> implicit Bus solo 2) Solo-Lock Bus 3) un-solo track -> Bus is stuck w/implicit solo on
2015-10-06Solo-Isolate has no effect on solo propagation.Robin Gareus
'Isolate' means that when another track is solo'd the isolated track won't mute.
2015-10-06Fix WinMME midi driver shutdown with sysex enabledTim Mayberry
midiInReset triggers the sysex callback to tell the application that it has finished with the buffer. Calling midiInAddBuffer results in an infinite loop so just return during shutdown.
2015-10-06Include button number in canvas button press/release debug infoTim Mayberry
2015-10-06Remove an unnecessary boolean argument in jack utilsTim Mayberry
Specify latency in JackCommandLineOptions instead
2015-10-06Stop engine when clicking back button in latency measurement tab of ↵Tim Mayberry
EngineControl dialog The engine is started when you switch to latency measurement tab but it isn't stopped if you just click the back button without measuring for latency.
2015-10-06Remove unused methods in ARDOUR_UI for starting/stopping engineTim Mayberry
2015-10-06Add EngineControl::stop_engine method to show errors when stopping engineTim Mayberry
This replaces using ARDOUR_UI::disconnect_from_session which is only used by the EngineControl class. ARDOUR_UI::disconnect_from_session also disconnects from the AudioEngine::Halted signal which seems unnecessary as Halted is not emitted when stopping the engine and calling update_sample_rate() which is already handled when the AudioEngine::Stopped signal is emitted.
2015-10-06Handle all errors when starting backend in EngineDialogTim Mayberry
2015-10-06Align switch statement with case labels to reduce indentation in EngineDialogTim Mayberry
2015-10-06Initialize AudioEngine::last_backend_error() to the default error stringTim Mayberry
Currently the last backend error string is only set when calling AudioBackend::start. Errors that occur when calling other AudioBackend methods like AudioBackend::set_buffer_size do not set the last backend error string. So until all the required AudioBackend methods return an ErrorCode and last_backend_error() can be removed just set it to a default string. Until all errors that occur are correctly indicated by returning an error code there will still be situations where last_backend_error() is not indicative of the true error. For instance AudioEngine::start is called and it fails but returns a valid error code so last_backend_error() is set, then some other engine/backend method is called that fails and as last_backend_error is not set the GUI will display the incorrect error message.
2015-10-06Update sample rate and CPU load in status bar when AudioEngine stoppedTim Mayberry
2015-10-06Show DSP/CPU load of 0.0% when AudioEngine isn't runningTim Mayberry
2015-10-06fix implicit solo on disconnect - fixes #6308Robin Gareus
2015-10-06forward "disconnect all", partial fix for #6308Robin Gareus
2015-10-05fix typo in prev. commitRobin Gareus
2015-10-05fix typoRobin Gareus
2015-10-05use quotes for in-tree pbd/glib wrapper includeRobin Gareus
2015-10-05remove unused fstream includesRobin Gareus
2015-10-05remove ofstream from gtk2ardourRobin Gareus
2015-10-05remove i/ofstream from libardourRobin Gareus
except: * audio-unit (ifstream is known to work on OSX) * evoral curve algorithm debugger * cycle-timer debug code * export_handler's CDMarker -> TODO