mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
Add a hint to disable "apply track/bus processing" for LT stem exports
This commit is contained in:
parent
baef68b1e6
commit
ec0adbc1a9
1 changed files with 12 additions and 0 deletions
|
|
@ -543,6 +543,18 @@ ExportProfileManager::init_channel_configs (XMLNodeList nodes)
|
|||
ChannelConfigStatePtr config (new ChannelConfigState (handler->add_channel_config ()));
|
||||
channel_configs.push_back (config);
|
||||
|
||||
#ifdef LIVETRAX
|
||||
/* Do not add master-bus for stem-export.
|
||||
*
|
||||
* This changes "with processing" to be false
|
||||
* since TrackExportChannelSelector::sync_with_manager_state
|
||||
* checks for RouteExportChannel/PortExportChannel
|
||||
*/
|
||||
if (_type == StemExport) {
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Add master outs as default */
|
||||
if (!session.master_out ()) {
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue