mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
add non-functional meta-controls for 2in/2out panning, to control direction+width. support exists in OSC and MIDI maps. no GUI elements yet
git-svn-id: svn://localhost/ardour2/branches/3.0@8121 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
ad4e0cd2d1
commit
c7df5f5271
8 changed files with 145 additions and 15 deletions
|
|
@ -84,9 +84,11 @@ ControllableDescriptor::set (const std::string& str)
|
|||
} else if (path[1] == "balance") {
|
||||
_subtype = Balance;
|
||||
|
||||
} else if (path[1] == "pan") {
|
||||
_subtype = Pan;
|
||||
_target.push_back (atoi (rest[1]));
|
||||
} else if (path[1] == "panwidth") {
|
||||
_subtype = PanWidth;
|
||||
|
||||
} else if (path[1] == "pandirection") {
|
||||
_subtype = PanDirection;
|
||||
|
||||
} else if (path[1] == "plugin") {
|
||||
if (path.size() == 3 && rest.size() == 3) {
|
||||
|
|
|
|||
|
|
@ -37,7 +37,8 @@ public:
|
|||
Solo,
|
||||
Mute,
|
||||
Recenable,
|
||||
Pan,
|
||||
PanDirection,
|
||||
PanWidth,
|
||||
Balance,
|
||||
SendGain,
|
||||
PluginParameter
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue