summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/export_format_specification.h
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/ardour/export_format_specification.h
parentfd3772a40f4e3d6573bc5e9d2c101501efd3db75 (diff)
make post-export analysis optional (default to enabled)
Diffstat (limited to 'libs/ardour/ardour/export_format_specification.h')
-rw-r--r--libs/ardour/ardour/export_format_specification.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/libs/ardour/ardour/export_format_specification.h b/libs/ardour/ardour/export_format_specification.h
index 1223fa2d4b..89ce0e5168 100644
--- a/libs/ardour/ardour/export_format_specification.h
+++ b/libs/ardour/ardour/export_format_specification.h
@@ -99,6 +99,7 @@ class LIBARDOUR_API ExportFormatSpecification : public ExportFormatBase {
void set_with_mp4chaps (bool yn) { _with_mp4chaps = yn; }
void set_soundcloud_upload (bool yn) { _soundcloud_upload = yn; }
void set_command (std::string command) { _command = command; }
+ void set_analyse (bool yn) { _analyse = yn; }
void set_silence_beginning (AnyTime const & value) { _silence_beginning = value; }
void set_silence_end (AnyTime const & value) { _silence_end = value; }
@@ -163,6 +164,7 @@ class LIBARDOUR_API ExportFormatSpecification : public ExportFormatBase {
bool soundcloud_upload() const { return _soundcloud_upload; }
std::string command() const { return _command; }
+ bool analyse() const { return _analyse; }
bool tag () const { return _tag && supports_tagging; }
@@ -214,7 +216,9 @@ class LIBARDOUR_API ExportFormatSpecification : public ExportFormatBase {
bool _with_cue;
bool _with_mp4chaps;
bool _soundcloud_upload;
- std::string _command;
+
+ std::string _command;
+ bool _analyse;
/* serialization helpers */