summaryrefslogtreecommitdiff
path: root/src/lib/export_config.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-06-12 21:44:53 +0200
committerCarl Hetherington <cth@carlh.net>2022-06-12 21:44:53 +0200
commit59209af1e2d73334ff7dfe6c7da465293dc24c0b (patch)
treed82ac343b7ca27cb493d1458dda85bb15d6c4e23 /src/lib/export_config.cc
parent407b3f5a4696d1c2f77e6167bca10f880b168f9c (diff)
Rename PRORES -> PRORES_HQ
Diffstat (limited to 'src/lib/export_config.cc')
-rw-r--r--src/lib/export_config.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/export_config.cc b/src/lib/export_config.cc
index 6c9807935..66c5e3d66 100644
--- a/src/lib/export_config.cc
+++ b/src/lib/export_config.cc
@@ -41,7 +41,7 @@ ExportConfig::ExportConfig(Config* parent)
void
ExportConfig::set_defaults()
{
- _format = ExportFormat::PRORES;
+ _format = ExportFormat::PRORES_HQ;
_mixdown_to_stereo = false;
_split_reels = false;
_split_streams = false;
@@ -64,7 +64,7 @@ ExportConfig::read(cxml::ConstNodePtr node)
} else if (format == "h264-aac") {
_format = ExportFormat::H264_AAC;
} else {
- _format = ExportFormat::PRORES;
+ _format = ExportFormat::PRORES_HQ;
}
_mixdown_to_stereo = node->bool_child("MixdownToStereo");
@@ -80,7 +80,7 @@ ExportConfig::write(xmlpp::Element* node) const
string name;
switch (_format) {
- case ExportFormat::PRORES:
+ case ExportFormat::PRORES_HQ:
name = "prores";
break;
case ExportFormat::H264_AAC: