13
0

Skip any postprocessing when exporting for analysis only

This commit is contained in:
Robin Gareus 2022-05-28 18:18:50 +02:00
parent b04ee501ff
commit 51b507b831
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -390,6 +390,12 @@ ExportHandler::finish_timespan ()
config.filename->set_channel_config (config.channel_config);
std::string filename = config.filename->get_path (fmt);
if (fmt->type () == ExportFormatBase::T_None) {
graph_builder->reset ();
config_map.erase (config_map.begin());
continue;
}
if (fmt->with_cue()) {
export_cd_marker_file (current_timespan, fmt, filename, CDMarkerCUE);
}