summaryrefslogtreecommitdiff
path: root/libs/ardour/export_format_specification.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-02-10 21:26:02 +0100
committerRobin Gareus <robin@gareus.org>2016-02-10 22:35:01 +0100
commit837f8fac2b3193fd181ef80086aa25108414e0f0 (patch)
treea1899932f59840ecd0505b545259c8602dd54a6d /libs/ardour/export_format_specification.cc
parentfd3772a40f4e3d6573bc5e9d2c101501efd3db75 (diff)
make post-export analysis optional (default to enabled)
Diffstat (limited to 'libs/ardour/export_format_specification.cc')
-rw-r--r--libs/ardour/export_format_specification.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/ardour/export_format_specification.cc b/libs/ardour/export_format_specification.cc
index 5bc10e813c..fd85c322d6 100644
--- a/libs/ardour/export_format_specification.cc
+++ b/libs/ardour/export_format_specification.cc
@@ -173,6 +173,7 @@ ExportFormatSpecification::ExportFormatSpecification (Session & s)
, _with_mp4chaps (false)
, _soundcloud_upload (false)
, _command ("")
+ , _analyse (true)
{
format_ids.insert (F_None);
endiannesses.insert (E_FileDefault);
@@ -186,6 +187,7 @@ ExportFormatSpecification::ExportFormatSpecification (Session & s, XMLNode const
, _silence_beginning (s)
, _silence_end (s)
, _soundcloud_upload (false)
+ , _analyse (true)
{
_silence_beginning.type = Time::Timecode;
_silence_end.type = Time::Timecode;
@@ -199,6 +201,7 @@ ExportFormatSpecification::ExportFormatSpecification (ExportFormatSpecification
, _silence_beginning (other.session)
, _silence_end (other.session)
, _soundcloud_upload (false)
+ , _analyse (other._analyse)
{
if (modify_name) {
set_name (other.name() + " (copy)");