X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fcreate_cli.h;h=a5e0c394130e2bd476df1652243012c2e4d737f9;hp=1f1cb3cc4da5948e019cc876a368b0344801e899;hb=b0fc1ec3b159b7a7fa917f2e338485921800374e;hpb=64a9030f3869e01c488a291da1c036d4e7615388 diff --git a/src/lib/create_cli.h b/src/lib/create_cli.h index 1f1cb3cc4..a5e0c3941 100644 --- a/src/lib/create_cli.h +++ b/src/lib/create_cli.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2019 Carl Hetherington + Copyright (C) 2019-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,15 +18,18 @@ */ + #include "types.h" #include #include #include #include + class DCPContentType; class Ratio; + class CreateCLI { public: @@ -35,6 +38,10 @@ public: struct Content { boost::filesystem::path path; VideoFrameType frame_type; + boost::optional channel; + boost::optional gain; + boost::optional kdm; + boost::optional cpl; }; bool version; @@ -45,15 +52,16 @@ public: DCPContentType const * dcp_content_type; boost::optional dcp_frame_rate; Ratio const * container_ratio; - Ratio const * content_ratio; int still_length; dcp::Standard standard; bool no_use_isdcf_name; - bool no_sign; boost::optional config_dir; boost::optional output_dir; boost::optional error; std::vector content; + bool twok; + bool fourk; + boost::optional j2k_bandwidth; private: static std::string _help;