summaryrefslogtreecommitdiff
path: root/libs
AgeCommit message (Collapse)Author
2015-09-10when removing routes, don't do potentially expensive work once for each route.Paul Davis
We can update solo state and tell interested parties about the removal once the actual removal is done
2015-09-10fix deadlock when removing routes and using JACK1.Paul Davis
graph reorder callback needed an early exit if we were deleting routes, is all.
2015-09-10use FileSource::within_session() for peak-filesRobin Gareus
2015-09-10remove duplicate enum registrationPaul Davis
2015-09-10Make sure that the DSPLoadCalculator class is exportableJohn Emmas
2015-09-10Add support for newly introduced class ARDOUR::DSPLoadCalculator (when ↵John Emmas
building with MSVC)
2015-09-10Remove DSPLoadCalculator class in portaudio backend sourceTim Mayberry
2015-09-10Use ARDOUR::DSPLoadCalculator in PortAudioBackendTim Mayberry
2015-09-10Add DSPLoadCalculator class to libardourTim Mayberry
This is similar to the class in the PortaudioBackend but uses an average of the values if raw load is under 80%
2015-09-10allow LV2 plugins to query current block-size.Robin Gareus
This is akin to VST2's audioMasterGetBlockSize. It returns the current nominal block size (think jack-buffersize). It's not the only block size that may be used when calling run(), it's just the normal one. The actual block sizes used may be larger or smaller and may vary between successive calls of run(). This change became neccesary after 53e969e9. Some plugins expected maxBlockLength to be the /current/ buffer-size and not all-time maxiumum. Those plugins can now use nominalBlockLength.
2015-09-10rework peakfile handling:Robin Gareus
- copy old peak-files to new (do not require re-calc) - keep old peak-files (for now, backwards compat) - fix cleanup-sources to remove *new* peak-file - include channel-number in hash (like it was done before) see also 624f76b TODO: add Session > Cleanup > remove/re-create peaks
2015-09-10remove Ardour broken peak-file supportRobin Gareus
Ardour-2.0 put peak-files in a "broken" location for several months. Since then Ardour renamed those files. No more. When loading ancient sessions peak-files are now re-created (in the background).
2015-09-09update libltc to v1.1.4-4-gb034a23 (endianess issue)Robin Gareus
2015-09-08Made master fader touch and jog go to _master_surface instead of first surface.Len Ovens
2015-09-08RF64, RF64 (WAV) and MBWF native file header formatsPaul Davis
2015-09-08new enums required for RF64 => RIFF and MBWF supportPaul Davis
2015-09-08Replaced broken code in recent_sessions.ccGuy Sherman
The original broken code was intended to stop using ifstream and ofstream to open files, but it used a very old MSVCism to open streams from FILE*. In the case for reading, this patch replaces that code by using standard c file manipulation to read the data into a stringstream, and then it uses the existing stream-based code to read from there. Similarly the ofstream in the code for writing the recent files list is replaced by a stringstream, and then a c-string is extracted from it and written using standard c file manipulation. Also tweaked a couple of typos from rgareus :)
2015-09-08Use glib to open our 'recent file' list, rather than opening directly with ↵John Emmas
ifstream / ofstream (on Windows, ifstream & ofstream don't support UTF8)
2015-09-08dummy, allow 8k buffer-size.Robin Gareus
2015-09-07properly clean up meter-pattern cacheRobin Gareus
2015-09-07fix some more uninitialized varsRobin Gareus
2015-09-06libardour: initialize some uninitialized vars..Robin Gareus
2015-09-06consistent pango-text layout size - fixes #6490Robin Gareus
Use gdk_pango_layout() for all text-size calculations. In Canvas::Text always use the same context (local image surface) for layouting (prior to this, local and window-context mix resulted in different sizes).
2015-09-06terminate peak-file creation on session-closeRobin Gareus
2015-09-06another hint for clang static analysis.Robin Gareus
2015-09-06fix dummy-backend driver stateRobin Gareus
When loading previous state, set_driver() is called before enumerate_drivers(). The available driver list must be available early on.
2015-09-06mode dummy speedsRobin Gareus
2015-09-06add dummy-backend speed-selectionRobin Gareus
2015-09-05create peak files in background when loading sessionRobin Gareus
2015-09-05initialize private variable (unit-test)Robin Gareus
2015-09-05leave a hint for clang scan-buildRobin Gareus
2015-09-05Add a newly introduced source to our MSVC project (libardour)John Emmas
2015-09-05Add some newly introduced sources to our MSVC project (portaudio_backend)John Emmas
2015-09-05remove a float loop counterRobin Gareus
2015-09-05provide details about session-creation failure.Robin Gareus
2015-09-05add missing includeRobin Gareus
2015-09-05unit-test: set instance name to pre-configure dummy engineRobin Gareus
2015-09-05Dummy-Backend: special case unit-test Robin Gareus
2015-09-05fix bitwise enum parsingRobin Gareus
2015-09-04print insanity-check message only in debug buildsRobin Gareus
2015-09-04Fix invalid error message when selecting directories/folders in Import dialogTim Mayberry
On linux SndFileSource::get_soundfile_info was being called with an empty path value when clicking on a folder in the left side part of the file browser which resulted in an unnecessary error message. On Windows every time a directory was selected in the Import dialog, SndFileSource::get_soundfile_info would fail to open the directory in read only mode and produce an error, but as we don't want to query/open soundfile info for directories anyway just test and return if the path is a directory.
2015-09-03Review changesMathias Buhr
2015-09-03Fixes case where audiofiles used wrong peakfilesMathias Buhr
2015-09-03Use const reference and renames variableMathias Buhr
2015-09-02another -Wabsolute-value fixRobin Gareus
2015-09-02rework AudioUnit variable input port count.Robin Gareus
2015-09-02a couple of debug output statements to help diagnose a crash, part 2Paul Davis
2015-09-02a couple of debug output statements to help diagnose a crashPaul Davis
2015-09-02waveform, mutex for _current_imageRobin Gareus
may be used in render-thread while invalidate_image_cache() is called. possible fix for #6478
2015-09-02replace "None" with DeviceNone in ALSA/CoreaudioRobin Gareus
TODO: separate MidiSystemNone