summaryrefslogtreecommitdiff
path: root/src/lib/export_config.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-06-04 00:26:56 +0200
committerCarl Hetherington <cth@carlh.net>2022-06-06 23:10:58 +0200
commitfcba100f0dfd1d4214291abb76f22ebd696c24d4 (patch)
treed31225dbe78d324615a55e0abdbd0f6b1740e2c4 /src/lib/export_config.h
parent7b30ec45f8d3d2881d633356058628373eb47057 (diff)
Preserve export video settings in the config (#2259).
Diffstat (limited to 'src/lib/export_config.h')
-rw-r--r--src/lib/export_config.h79
1 files changed, 79 insertions, 0 deletions
diff --git a/src/lib/export_config.h b/src/lib/export_config.h
new file mode 100644
index 000000000..2b0ddfda2
--- /dev/null
+++ b/src/lib/export_config.h
@@ -0,0 +1,79 @@
+/*
+ Copyright (C) 2022 Carl Hetherington <cth@carlh.net>
+
+ This file is part of DCP-o-matic.
+
+ DCP-o-matic is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ DCP-o-matic is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
+
+*/
+
+
+#ifndef DCPOMATIC_EXPORT_CONFIG_H
+#define DCPOMATIC_EXPORT_CONFIG_H
+
+
+#include "types.h"
+#include <libcxml/cxml.h>
+
+
+class Config;
+
+
+class ExportConfig
+{
+public:
+ ExportConfig(Config* parent);
+
+ void set_defaults();
+ void read(cxml::ConstNodePtr node);
+ void write(xmlpp::Element* node) const;
+
+ ExportFormat format() const {
+ return _format;
+ }
+
+ bool mixdown_to_stereo() const {
+ return _mixdown_to_stereo;
+ }
+
+ bool split_reels() const {
+ return _split_reels;
+ }
+
+ bool split_streams() const {
+ return _split_streams;
+ }
+
+ int x264_crf() const {
+ return _x264_crf;
+ }
+
+ void set_format(ExportFormat format);
+ void set_mixdown_to_stereo(bool mixdown);
+ void set_split_reels(bool split);
+ void set_split_streams(bool split);
+ void set_x264_crf(int crf);
+
+private:
+ Config* _config;
+ ExportFormat _format;
+ bool _mixdown_to_stereo;
+ bool _split_reels;
+ bool _split_streams;
+ int _x264_crf;
+};
+
+
+#endif
+