X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fconfig.h;h=91926750b8a9a44b37096c144756fe6dca65ff95;hb=f85101ff72bf93ab3546ea0c4ec8e3f1242f256f;hp=c84ce76b514bf64cf6e370c8231871857832c534;hpb=ae118502865c95f15317716aef8d26641b9e9c3f;p=dcpomatic.git diff --git a/src/lib/config.h b/src/lib/config.h index c84ce76b5..91926750b 100644 --- a/src/lib/config.h +++ b/src/lib/config.h @@ -21,12 +21,13 @@ * @brief Class holding configuration. */ -#ifndef DVDOMATIC_CONFIG_H -#define DVDOMATIC_CONFIG_H +#ifndef DCPOMATIC_CONFIG_H +#define DCPOMATIC_CONFIG_H #include #include #include +#include "dci_metadata.h" class ServerDescription; class Scaler; @@ -94,6 +95,22 @@ public: return _sound_processor; } + std::list allowed_dcp_frame_rates () const { + return _allowed_dcp_frame_rates; + } + + DCIMetadata default_dci_metadata () const { + return _default_dci_metadata; + } + + boost::optional language () const { + return _language; + } + + int default_still_length () const { + return _default_still_length; + } + /** @param n New number of local encoding threads */ void set_num_local_encoding_threads (int n) { _num_local_encoding_threads = n; @@ -140,14 +157,36 @@ public: void set_tms_password (std::string p) { _tms_password = p; } - + + void set_allowed_dcp_frame_rates (std::list const & r) { + _allowed_dcp_frame_rates = r; + } + + void set_default_dci_metadata (DCIMetadata d) { + _default_dci_metadata = d; + } + + void set_language (std::string l) { + _language = l; + } + + void unset_language () { + _language = boost::none; + } + + void set_default_still_length (int s) { + _default_still_length = s; + } + void write () const; static Config* instance (); + static void drop (); private: Config (); - std::string file () const; + std::string file (bool) const; + void read_old_metadata (); /** number of threads to use for J2K encoding on the local machine */ int _num_local_encoding_threads; @@ -172,6 +211,11 @@ private: std::string _tms_password; /** Our sound processor */ SoundProcessor const * _sound_processor; + std::list _allowed_dcp_frame_rates; + /** Default DCI metadata for newly-created Films */ + DCIMetadata _default_dci_metadata; + boost::optional _language; + int _default_still_length; /** Singleton instance, or 0 */ static Config* _instance;