X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fexport_config.cc;fp=src%2Flib%2Fexport_config.cc;h=66c5e3d664075c067ee44fa42db277290fc5688e;hp=6c98079353e68ff6bdc103aa4d2a234d2030dccd;hb=59209af1e2d73334ff7dfe6c7da465293dc24c0b;hpb=407b3f5a4696d1c2f77e6167bca10f880b168f9c 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: