Add a hint to disable "apply track/bus processing" for LT stem exports

This commit is contained in:
Robin Gareus 2025-01-10 17:52:36 +01:00
parent baef68b1e6
commit ec0adbc1a9
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04

View file

@ -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;