/* Copyright (C) 2019 Carl Hetherington 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 . */ #include "types.h" #include #include #include #include class DCPContentType; class Ratio; class CreateCLI { public: CreateCLI (int argc, char* argv[]); struct Content { boost::filesystem::path path; VideoFrameType frame_type; }; bool version; std::string name; boost::optional template_name; bool encrypt; bool threed; DCPContentType const * dcp_content_type; boost::optional dcp_frame_rate; Ratio const * container_ratio; int still_length; dcp::Standard standard; bool no_use_isdcf_name; boost::optional config_dir; boost::optional output_dir; boost::optional error; std::vector content; bool fourk; boost::optional j2k_bandwidth; private: static std::string _help; };