X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Ftools%2Fdcpomatic_create.cc;h=14eae6b3ed643b547d8ee7f3c18754ca3db91e6f;hb=472959c1357f43e2eb33366c58bed0466474c2b7;hp=3ab84d1161dc9524e92dc6494bccd6a953ae1496;hpb=5753269a807a0ca3b34e12596cdfa3e0362b250f;p=dcpomatic.git diff --git a/src/tools/dcpomatic_create.cc b/src/tools/dcpomatic_create.cc index 3ab84d116..14eae6b3e 100644 --- a/src/tools/dcpomatic_create.cc +++ b/src/tools/dcpomatic_create.cc @@ -34,10 +34,10 @@ #include "lib/dcp_content.h" #include "lib/create_cli.h" #include "lib/version.h" +#include "lib/dcpomatic_log.h" #include #include #include -#include #include #include #include @@ -49,8 +49,8 @@ using std::cout; using std::cerr; using std::list; using std::exception; -using boost::shared_ptr; -using boost::dynamic_pointer_cast; +using std::shared_ptr; +using std::dynamic_pointer_cast; using boost::optional; class SimpleSignalManager : public SignalManager @@ -75,7 +75,7 @@ main (int argc, char* argv[]) } if (cc.version) { - cerr << "dcpomatic version " << dcpomatic_version << " " << dcpomatic_git_commit << "\n"; + cout << "dcpomatic version " << dcpomatic_version << " " << dcpomatic_git_commit << "\n"; exit (EXIT_SUCCESS); } @@ -88,24 +88,29 @@ main (int argc, char* argv[]) try { shared_ptr film (new Film(cc.output_dir)); + dcpomatic_log = film->log (); + dcpomatic_log->set_types (Config::instance()->log_types()); if (cc.template_name) { film->use_template (cc.template_name.get()); } film->set_name (cc.name); - film->set_container (cc.container_ratio); + if (cc.container_ratio) { + film->set_container (cc.container_ratio); + } film->set_dcp_content_type (cc.dcp_content_type); - film->set_interop (cc.standard == dcp::INTEROP); + film->set_interop (cc.standard == dcp::Standard::INTEROP); film->set_use_isdcf_name (!cc.no_use_isdcf_name); - film->set_signed (!cc.no_sign); film->set_encrypted (cc.encrypt); film->set_three_d (cc.threed); - film->set_resolution (cc.fourk ? RESOLUTION_4K : RESOLUTION_2K); + if (cc.fourk) { + film->set_resolution (Resolution::FOUR_K); + } if (cc.j2k_bandwidth) { film->set_j2k_bandwidth (*cc.j2k_bandwidth); } - BOOST_FOREACH (CreateCLI::Content i, cc.content) { + for (auto i: cc.content) { boost::filesystem::path const can = boost::filesystem::canonical (i.path); list > content; @@ -116,19 +121,18 @@ main (int argc, char* argv[]) content = content_factory (can); } - BOOST_FOREACH (shared_ptr j, content) { + for (auto j: content) { film->examine_and_add_content (j); } while (jm->work_to_do ()) { - dcpomatic_sleep (1); + dcpomatic_sleep_seconds (1); } while (signal_manager->ui_idle() > 0) {} - BOOST_FOREACH (shared_ptr j, content) { + for (auto j: content) { if (j->video) { - j->video->set_scale (VideoContentScale(cc.content_ratio)); j->video->set_frame_type (i.frame_type); } } @@ -138,7 +142,7 @@ main (int argc, char* argv[]) film->set_video_frame_rate (*cc.dcp_frame_rate); } - BOOST_FOREACH (shared_ptr i, film->content()) { + for (auto i: film->content()) { shared_ptr ic = dynamic_pointer_cast (i); if (ic && ic->still()) { ic->video->set_length (cc.still_length * 24); @@ -146,7 +150,7 @@ main (int argc, char* argv[]) } if (jm->errors ()) { - BOOST_FOREACH (shared_ptr i, jm->get()) { + for (auto i: jm->get()) { if (i->finished_in_error()) { cerr << i->error_summary() << "\n" << i->error_details() << "\n";