mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-20 20:36:01 +01:00
make a distinction between total channels with or without the embedded bed chans
This commit is contained in:
parent
d03cdf86e1
commit
310e7f2279
1 changed files with 2 additions and 2 deletions
|
|
@ -68,8 +68,8 @@ public:
|
|||
return _current_n_channels;
|
||||
}
|
||||
|
||||
size_t total_n_channels () const {
|
||||
return _total_n_channels;
|
||||
size_t total_n_channels (bool with_beds = true) const {
|
||||
return _total_n_channels - (with_beds ? 0 : 10);
|
||||
}
|
||||
|
||||
std::shared_ptr<LV2Plugin> surround_processor () const {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue