e18b95b4f4
vtl: rc config dialog for simple/advanced config
2013-03-28 13:42:45 +01:00
c97244aaa9
vtl: prepare simple/advanced usage modes
...
"simple": localhost only system; hide much of the setup complexity
"advanced":' allow for remote-server, paths mapping, server index etc.
2013-03-28 13:42:40 +01:00
4abbabdcf9
Squashed commit of the following:
...
commit fdbae82077db53add90df7448a06869dac89acc6
Author: Paul Davis <paul@linuxaudiosystems.com>
Date: Wed Mar 27 21:45:28 2013 -0400
mammoth changes in basic signal flow, total redesign of MIDI channel filtering and more.
commit 59343a8283698e02bc0f622313b29e98f449e4c8
Author: Paul Davis <paul@linuxaudiosystems.com>
Date: Wed Mar 27 01:58:53 2013 -0400
initial working version after changes to MIDI channel filtering. may affect metering input too. testing not yet finished
this commit merges many deep changes in ardour's internal architecture,
combined with a total redesign of how MIDI channel filtering works.
data in a track used to flow from JACK port buffers to diskstream's ringbuffers
and was then copied from the ringbuffers into a BufferSet for use during
Route::process_output_buffers(). The butler thread would handle the movement of
data between the ringbuffers and disk.
with this commit, data now flows from JACK port buffers into the BufferSet used
for Route processing, and is copied from the BufferSet into the diskstream's
ringbuffers (the butler thread continues to handle interactions with disk as
usual).
this change allowed a dramatic consolidation of code and simplification of most
aspects of Track/Route::roll() and Track/Route::no_roll(). in particular, see
Route::fill_buffers_with_input() which now concisely describes how we move data
from JACK port buffers into the BufferSet for all Route types (including Tracks).
this work was initially motivated by changing MIDI channel filtering so that we
can process capture and playback independently. there is now a very clean
pathway for this - see MidiTrack::roll() (NOTE: This needs implementing in the
no-roll case too - a TODO item).
the channel selector for MIDI tracks has been moved out of the track header and
is now accessible via the context menu. more work is likely here, to make it
(more) obvious to the user when filtering is going on.
2013-03-27 21:50:18 -04:00
78aa7a13fd
use C++ std function for max()
2013-03-27 18:45:08 +01:00
7697ff6b7c
move "Video Monitor" to WindowMenu
2013-03-27 18:27:16 +01:00
b3fa4dd8f3
vtl: video sets session start/end markers.
2013-03-27 18:21:09 +01:00
ba7def458e
messages related to video-server & ffmpeg external binaries
2013-03-27 16:04:56 +01:00
bb9847abcd
optionally include video-server in linux bundle
2013-03-27 14:51:25 +01:00
1bec1059fb
canonical names for video-tools
2013-03-26 22:19:04 +01:00
41faeb76e1
fix typo in prev commit
2013-03-26 14:48:15 +01:00
0781b871d4
vtl: increase retry timeout on 503, print http status on error.
2013-03-26 14:11:52 +01:00
8d2a6b7687
add <ardour-root>/bin to PATH
...
prepare for video-util deployment in Linux bundle
2013-03-26 14:11:20 +01:00
7c19d00544
use new VisibilityTracker class for ArdourWindow
2013-03-25 20:04:36 -04:00
bd2d4d4247
add new VisibilityTracker class to implement cycling window visibility "properly" - i.e. avoiding hide+show/present to get a hidden or partially obscured window visible again
2013-03-25 20:03:59 -04:00
43b09fdd9a
remove notion of BUILD from build and uninstall scripts
2013-03-25 10:39:00 -04:00
03572e8454
remove notion of BUILD from stage2.run
2013-03-25 10:37:47 -04:00
7aca3a9221
possible new naming convention, plus factor out version/DEBUG info into a sourced shell script fragment that can be shared by build+package
2013-03-25 09:49:07 -04:00
f9c7603bdb
Merge branch 'master' of git.ardour.org:ardour/ardour
2013-03-25 09:25:03 -04:00
936362abc2
more packaging tweaks related to git/wscript/python
2013-03-25 09:10:38 -04:00
fe29965980
Fix memory leak.
2013-03-24 20:10:11 -04:00
024dfe47f5
Merge branch 'master' of git.ardour.org:ardour/ardour
2013-03-24 18:47:49 -04:00
adf40b97e0
Load LV2 presets using lilv state API to support presets with state.
2013-03-24 18:44:18 -04:00
781ec13084
more packaging changes/debugging
2013-03-24 17:24:12 -04:00
52363ebefd
Merge branch 'master' of git.ardour.org:ardour/ardour
2013-03-24 17:06:46 -04:00
cf98b72c23
more packaging name fixes
2013-03-24 17:01:21 -04:00
Sakari Bergen
010a75d389
Add option to export track output to stem export dialog
2013-03-24 21:53:34 +02:00
Sakari Bergen
b6c2dec8fa
Fix static initialization order problem
2013-03-24 21:18:20 +02:00
Sakari Bergen
24816de6ca
Fix PBD wscript to be python3 compatible
2013-03-24 14:51:57 +02:00
Julien de Kozak
16f8fc0657
Fix some compilation warnings
2013-03-23 14:50:58 +01:00
3276856105
more packaging name tweaks
2013-03-22 20:42:08 -04:00
d05f3b0a7c
more tweaks to get package names right
2013-03-22 20:30:14 -04:00
0348f9543e
Merge branch 'master' of git.ardour.org:ardour/ardour
2013-03-22 20:28:42 -04:00
7a3e9032ca
make 0/KP_0 do the same thing in the mono panner as it does in the stereo panner (reset to center)
2013-03-22 20:22:46 -04:00
e155338aa0
change extraction of revision and build from revision.cc, and use in the build, package and uninstall scripts
2013-03-22 16:54:06 -04:00
268553ecd4
honor CTRL modifier when drag/drop importing files (copy vs embed)
2013-03-21 21:33:02 +01:00
d99b5dfa37
fix nasty crash when using double-nested compound (consolidated) regions caused by not (re)allocating enough mixdown buffers; fix up various warnings from valgrind about mismatching operator delete[] by using shared_array<T> rather than shared_ptr<T>, as should have been the case all along
2013-03-21 10:14:01 -04:00
027f0e156a
Merge branch 'patches' of https://github.com/jdekozak/ardour
2013-03-20 17:47:47 -04:00
7b998ceba1
fix an old bug introduced when cth tried (valiantly) to make region-list -> DnD -> canvas behave like a regular region drag. this doesnt' work because the RegionInsertDrag() grabs the mouse and breaks the DnD. in addition, the code failed to correctly indicate when a drop was possible (over a Track) and when it was not (over a Bus) - this has also been fixed. the actual code in Editor::drop_regions() could and should be simplified - no reason to use a RegionInsertDrag here, but it was fast
2013-03-20 17:33:25 -04:00
9eaefe3d12
remaining part of static library commit, should have been a part of 16ce39c230
2013-03-20 17:22:32 -04:00
a5d3f2d578
make PBD::stacktrace() be clear if it cannot generate stacktraces for some (runtime) reason. not sure why this is an issue, but it is, right now, on my machine
2013-03-20 17:20:13 -04:00
16ce39c230
initial, prototype modifications to permit compilation of local libraries as static libs. required a "fix" to libs/pbd/debug.cc to even get the program up and running, and still does not work due to issues with boost::shared_ptr::enable_shared_from_this. controlled by configure-time --internal-{static,shared}-libs, set to shared by default (as has been the case for years)
2013-03-20 17:18:55 -04:00
4caecfa310
fix other potential crashes with non-existing plugins and presets caused by indiscriminate use of vector_delete<T>
2013-03-20 17:15:08 -04:00
Julien de Kozak
1e6d12be03
Fix guard name
2013-03-20 20:17:56 +01:00
a1a8794dad
add missing files
2013-03-20 08:43:19 -04:00
a2d6577210
move path_expand() and search_path_expand() into libpbd, and use them to expand search paths given to pathscanner objects (always)
2013-03-20 07:43:19 -04:00
b2a667266b
fix crash when deleting non-existing presets
2013-03-20 07:42:17 -04:00
78c6c9c04a
fix mishanding of LXVST (and windows VST) plugin names where the path includes a directory with a period/dot in its name such as ~/.lxvst
2013-03-19 16:44:25 -04:00
Adrian Knoth
57d758c9e2
[cosmetics] Replace "misformed" by "malformed" in PO files
...
Found by Debian's automatic QA tool.
2013-03-19 17:36:24 +01:00
Adrian Knoth
1e32454b36
[cosmetics] Fix typo in debug output
...
Found by Debian's automatic QA tool.
2013-03-19 17:24:34 +01:00
c71e381019
Merge branch 'master' of git.ardour.org:ardour/ardour
2013-03-19 10:25:31 -04:00