summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-10-01update DoxyfileRobin Gareus
2015-10-01there's no class called "The" :)Robin Gareus
2015-10-01ALSA: update error-codes for HW initialization.Robin Gareus
2015-10-01Add parent window argument to ARDOUR_UI::check_audioengineTim Mayberry
Ensures relevant placement of the dialog when presented
2015-10-01Display warning when closing Audio Setup dialog with engine stoppedTim Mayberry
Only show warning when a session is loaded
2015-10-01Don't hide Audio Setup dialog when clicking 'OK' if engine fails to startTim Mayberry
This has to be handled in two places, in ARDOUR_UI::do_audio_midi_setup and in the dialogs response handler and in as the window can also be triggered via the window action manager.
2015-10-01Use AudioSetupDialog as parent of the error message popup when failing to ↵Tim Mayberry
start engine Without a session loaded this makes the message dialog appear in front of the AudioSetup dialog instead of randomly up in the top left somewhere. This does mean though that if the AudioSetup dialog is not visible the error message popup will appear randomly up in the top left(at least on windows, it seems fine on linux) but I will fix that shortly.
2015-10-01Return meaningful error codes when ALSA backend fails to startTim Mayberry
Unfortunately it seems that in zita-alsa-pcmi doesn't set state() correctly in some cases. Setting an invalid SR doesn't display the correct error message, first guess would be that set_hwpar is failing and state() is not representative of the actual error.
2015-10-01Return meaningful error codes when PortaudioBackend fails to startTim Mayberry
So they can be used to give a contextual error message in the GUI
2015-10-01Use portaudio error codes in the PortaudioIO class.Tim Mayberry
Having error codes defined in PortaudioIO means it is not dependent on the ErrorCodes in AudioBackend but it doesn't really make sense to have another set, so just use the PA ones until they become insufficient.
2015-10-01Use AudioEngine::get_last_backend_error in message dialog when failing to ↵Tim Mayberry
start engine If a backend is not returning AudioBackend::ErrorCode values to indicate the type of error then the default string will be returned which is the same as what was previously displayed.
2015-10-01Reinterpret the return value of AudioBackend::start as AudioBackend::ErrorCodeTim Mayberry
This will allow backends to return a more meaningful error message. Eventually an error code could be returned by AudioEngine::start and the GUI can then use AudioBackend::get_error_string to convert the error into a translated error message directly, or it may be desirable to define its own error messages. The reasons for not doing that right now is that this is a workable solution with the least change required.
2015-10-01Add a couple of error codes to AudioBackend::ErrorCodeTim Mayberry
Also use the error message from ARDOUR_UI::reconnect_to_engine as the default error string
2015-09-30Gray out "strip silence" and "rhtyhm ferret" for midi regions.André Nusser
The former even triggered a segfault.
2015-09-30Merge branch 'chaot4-fix_track_list_context_menu'Paul Davis
2015-09-30Fixed spelling.André Nusser
2015-09-30Make all the context menu entries of the track list work.André Nusser
2015-09-30change the logic for a capture buffer flush to disk when a locate is occuringPaul Davis
We can't check for Session::actively_recording() because punch out may have disabled that. Rather than add logic to check if a flush is needed (which is not much different than the code that runs as part of the flush to disk), just do a flush anyway.
2015-09-30tweak some debug outputPaul Davis
2015-09-30remove apparently bogus adjustment to capture_captured in ↵Paul Davis
AudioDiskstream::transport_looped
2015-09-30split Butler::flush_tracks_to_disk() into two distinct versions with clear ↵Paul Davis
names and make one of them private
2015-09-29is there a better way to make gcc+enumwriter happy?Robin Gareus
2015-09-29Fix midi tracer to show MSB too. (fixes #6566)Len Ovens
2015-09-29set waveform height depending on Layer modeRobin Gareus
Fixes background peakfile/waveform creation. Waves need to be created directly with the proper attributes as set by StreamView.
2015-09-28Fix Mackie control metering (fixes #6608).Len Ovens
2015-09-28Revert "change the way the audio clock cursor is drawn (somewhat of an ↵Paul Davis
experiment but it has some benefits" This reverts commit 601770837e2530a73056a6aa67759d56e16e735a. This work continued in the "clockwork" branch where it was done correctly.
2015-09-29BWF USID according to EBU-R99Robin Gareus
2015-09-28change clearlooks style file so that small_entry and related styles use text ↵Paul Davis
color for text even when selected
2015-09-28Merge branch 'chaot4-fix_lock_solo_ctrl_shift'Paul Davis
2015-09-28Introduce Ctrl+Shift+Click on lock solo in the mixer.André Nusser
2015-09-28fix initialization of reserved I/O names vectorPaul Davis
2015-09-28fix const-nessPaul Davis
2015-09-28Revert "add new action and loop marker menu item for setting up loop record"Paul Davis
This reverts commit ebb43508f1ab75b7d7467e0e95cdd1c816cf3183.
2015-09-28get loop recording working when using seam-ed loopingPaul Davis
2015-09-28better more reliable checks on renamed, newly created and imported track/bus ↵Paul Davis
names
2015-09-28change semantics of 4th argument to Session::locate to mean "this locate is ↵Paul Davis
connected with play-loop just being enabled"
2015-09-28change the way the audio clock cursor is drawn (somewhat of an experiment ↵Paul Davis
but it has some benefits
2015-09-28when editing an audio clock, swallow illegal keys rather than allowing them ↵Paul Davis
to reach the rest of the GUI
2015-09-28fix the logic of the GUI "toggle roll" action as it pertains to loop recordingPaul Davis
2015-09-28a few new DEBUG_TRACE calls related to session transport statePaul Davis
2015-09-28minor fix for possible off-by-one logic when at/near the end of the loop rangePaul Davis
2015-09-28fix a long-standing bug arising from a change to some logic which reversed ↵Paul Davis
an "is-rolling" test
2015-09-28move code location where loop playback is cancelled when stoppingPaul Davis
2015-09-28loop record is a feature whether or not loop-is-mode is true or notPaul Davis
2015-09-28Session::disable_record() should work whether we are in loop mode or notPaul Davis
2015-09-28add new action and loop marker menu item for setting up loop recordPaul Davis
2015-09-28fix long options of gcc-glibmm-abi-check.Robin Gareus
2015-09-28remove outdated limiationRobin Gareus
2015-09-28remove cruft.Robin Gareus
2015-09-27mixer-strip name context-menu cleanupRobin Gareus
patch thanks to chaot4