Skip to content

Commit 51b507b

Browse files
committed
Skip any postprocessing when exporting for analysis only
1 parent b04ee50 commit 51b507b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

libs/ardour/export_handler.cc

+6
Original file line numberDiff line numberDiff line change
@@ -390,6 +390,12 @@ ExportHandler::finish_timespan ()
390390
config.filename->set_channel_config (config.channel_config);
391391
std::string filename = config.filename->get_path (fmt);
392392

393+
if (fmt->type () == ExportFormatBase::T_None) {
394+
graph_builder->reset ();
395+
config_map.erase (config_map.begin());
396+
continue;
397+
}
398+
393399
if (fmt->with_cue()) {
394400
export_cd_marker_file (current_timespan, fmt, filename, CDMarkerCUE);
395401
}

0 commit comments

Comments
 (0)