From 65c8d673a2f88db61c68bf119f9dccbe82efd9ff Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 18 Jan 2012 21:56:06 +0000 Subject: restore ability to create TOC and CUE files during export. this is an option in a given export format, not a per-export choice. so you need export formats with them set (or not) in order to utilize this choice. the resulting CUE/TOC files have not been checked with a burner (e.g. cdrdao) and testing of them would be appreciated - i (paul) have no CD burner h/w git-svn-id: svn://localhost/ardour2/branches/3.0@11266 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/ardour/export_format_specification.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'libs/ardour/ardour/export_format_specification.h') diff --git a/libs/ardour/ardour/export_format_specification.h b/libs/ardour/ardour/export_format_specification.h index 7afb0bc734..4bf3ed4013 100644 --- a/libs/ardour/ardour/export_format_specification.h +++ b/libs/ardour/ardour/export_format_specification.h @@ -93,6 +93,8 @@ class ExportFormatSpecification : public ExportFormatBase { void set_normalize_target (float value) { _normalize_target = value; } void set_tag (bool tag_it) { _tag = tag_it; } + void set_with_cue (bool yn) { _with_cue = yn; } + void set_with_toc (bool yn) { _with_toc = yn; } void set_silence_beginning (AnyTime const & value) { _silence_beginning = value; } void set_silence_end (AnyTime const & value) { _silence_end = value; } @@ -120,6 +122,8 @@ class ExportFormatSpecification : public ExportFormatBase { bool trim_end () const { return _trim_end; } bool normalize () const { return _normalize; } float normalize_target () const { return _normalize_target; } + bool with_toc() const { return _with_toc; } + bool with_cue() const { return _with_cue; } bool tag () const { return _tag && supports_tagging; } @@ -167,6 +171,8 @@ class ExportFormatSpecification : public ExportFormatBase { bool _normalize; float _normalize_target; + bool _with_toc; + bool _with_cue; /* serialization helpers */ -- cgit v1.2.3