summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-04-06canvas markers now use ArdourCanvas::Text, not ArdourCanvas::Pixbuf, since ↵Paul Davis
the latter will be optimized to use Pixbuf too
2013-04-06fix up unusued args warning in nsm codePaul Davis
2013-04-06Merge branch 'cairocanvas' of git.ardour.org:ardour/ardour into cairocanvasPaul Davis
2013-04-06merge with master, including manual merge conflict resolutionPaul Davis
2013-04-06Merge branch 'master' into cairocanvasPaul Davis
2013-04-06rename Route::is_hidden() to Route::is_auditioner() and Route::Hidden to ↵Paul Davis
Route::Auditioner. this has been the meaning of these terms for years now and it would be better to make it explicit
2013-04-06do not include templates in a distributed version of ardour, they are ↵Paul Davis
useless. see the comments in templates/wscript on why this is so, and why this change was made
2013-04-06fix crash when using track templates caused by a recent change to the ↵Paul Davis
filescanner API. if the template contains no plugin states, the scanner would return a null pointer, and we would fail to notice
2013-04-06for the Auditioner only, do not reset the buffer count for scratch buffers ↵Paul Davis
to the input configuration, since the input config is irrelevant (data comes only from disk, no passthru). Should fix #5427 and #5432)
2013-04-06add pkg-config check on liblo, now that NSM support requires 0.26 rather ↵Paul Davis
than just "any" version (fixes #5435)
2013-04-06fix reload of Generic MIDI binding state when the target state involves just ↵Paul Davis
a binding map, with no specific controller bindings at all (should fix #5210)
2013-04-06fix up export formats search path to correctly locate bundled (or installed) ↵Paul Davis
export formats
2013-04-06vtl: make videotimeline work with new cairo canvasRobin Gareus
timeline thumbnail display, moving (drag/drop) and zoom works. There still some crashes e.g. resizing the height of the timeline and with off-screen image buffering when zooming in. Likely due to concurrency issues: VideoImageFrame::exposeimg() and direct access of the pixbuf: "Assertion `!_bounding_box_dirty' failed." in canvas/item.cc:191 more work is needed..
2013-04-06add API to directly request access to pixbufRobin Gareus
2013-04-05Merge branch 'master' of git.ardour.org:ardour/ardourPaul Davis
2013-04-05do not include harvid by default in linux build (wrong variable definition)Paul Davis
2013-04-05add -L to curl in linux build script so that 301 responses while fetching ↵Paul Davis
harvid are handled
2013-04-05mark the step entry dialog as a dialog even though it is an ArdourWindow, to ↵Paul Davis
help with WM layering issues
2013-04-05if auditioner connections are somehow wiped out in CONFIG/ardour.rc, treat ↵Paul Davis
them as if they are still "default"
2013-04-05master merge; new files not added after initial cairocanvas patch applicationPaul Davis
2013-04-05Fix display of Spectral Analysis when no tracks are selected.Colin Fletcher
Spectral Analysis now displays graphs for selected regions, even when there are no tracks selected. Fixes #2226.
2013-04-05Merge branch 'nsm' of https://github.com/royvegard/ardourPaul Davis
2013-04-05Merge branch 'patches' of https://github.com/jdekozak/ardourPaul Davis
2013-04-05lots of tweaking and adding debug output including operator<</dump(ostream&) ↵Paul Davis
methods to help visualize canvas structure
2013-04-05adjust demangling code a bit so that it can easily be used with typenames ↵Paul Davis
and not just functions in stacktraces
2013-04-05Make track header faders insensitive to vertical scroll-wheel events again.Colin Fletcher
This effectively reverts d235a27a, and restores the behaviour to that of Ardour 2.
2013-04-05midi_clock_slave.cc: report to ardour the delta that the loop sees (revert ↵Hans Baier
me if you object)
2013-04-05make MIDI clock work once more: Hans Baier
* increase filter bandwith to make it sync faster * use transport_frame instead of audible_frame for calculating the loop error (thanks robin!) * reduce the deadzone to 0.1% (thanks robin)
2013-04-05ignore "external timecode is sync locked" for non timecode slaves.Robin Gareus
2013-04-04commit immediately post linkingPaul Davis
2013-04-05vtl: remove obvious warningRobin Gareus
2013-04-04vtl: overall export progress barRobin Gareus
2013-04-04vtl: A/V sync lock on importRobin Gareus
When extracting and importing audio from a video, mark the audio region's position as locked to the video. While locked, the audio region can only be moved by moving the video with a granularity of one Timecode frame.
2013-04-04vtl: re-order view menu entriesRobin Gareus
2013-04-04initial commit of hand merging, plus getting "ancient" waf script to work ↵Paul Davis
correctly
2013-04-04vtl: audio-export progress-bar tweaksRobin Gareus
use the same concept as session > export > audio; hopefully this fixes jack-disconnects during export.
2013-04-04vtl: video-monitor letterbox & orig-zoom to menuRobin Gareus
2013-04-03Update region_ops.txt to match current behaviour, and fix a couple of comments.Colin Fletcher
Update region_ops.txt to better describe the current behaviour of Editor::get_regions_from_selection_and_edit_point(), and fix a couple of comments that still referred to the no-longer-existing 'edit' property of route groups.
2013-04-03vtl: video-monitor interactionRobin Gareus
* Menu > View > Video Monitor -- bi-directional communication with xjadeo for window-state and OSD. * fix saving state on session close (wait for xjadeo to terminate)
2013-04-03vtl: use mpeg4 with intra frames for internal seek formatRobin Gareus
2013-04-03Merge branch 'master' of git.ardour.org:ardour/ardourPaul Davis
2013-04-03fix reversed semantics from 86f1b for LaterNoteEndComparator()Paul Davis
2013-04-03Don't include unselected regions in edit grouped region operations.Colin Fletcher
Make Editor::get_regions_from_selection_and_entered() only return regions that are actually selected or entered, not their unselected equivalents.
2013-04-03Ignore track selection if there are any selected regions.Colin Fletcher
Make Editor::get_regions_from_selection_and_edit_point() only consider the selected tracks when finding regions to operate on if there are no regions selected, and never if the edit point is 'mouse'.
2013-04-03Use selection->regions instead of Editor::get_regions_from_selection()Colin Fletcher
Remove Editor::get_regions_from_selection(), and use selection->regions directly in the few places it was called.
2013-04-03Enable snapshots and port connect on startupRoy Vegard Ovesen
2013-04-03Merge branch 'nsm' of https://github.com/royvegard/ardourPaul Davis
2013-04-03Prevent infinite loopsRoy Vegard Ovesen
2013-04-03fix NSM initialization.Robin Gareus
Possible segfault on startup if NSM is not used.
2013-04-03vtl: renice export dialogRobin Gareus
* fix scale w/h min+max * update labels and alignment