diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-08-31 23:42:16 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-08-31 23:42:16 +0100 |
| commit | bbb2a4b7ccec953900d13e7bcdad229028bc7795 (patch) | |
| tree | b8cff6e8d8885f7b26c020e7bf242f1f202fe5f4 /src/lib/config.h | |
| parent | 7cc1c3108a1b9358aff2108a159d0c910130683b (diff) | |
Stop CPL <Creator> tag being configurable and use DCP-o-matic version number instead.
Diffstat (limited to 'src/lib/config.h')
| -rw-r--r-- | src/lib/config.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/lib/config.h b/src/lib/config.h index aa3c06356..4f6b57f56 100644 --- a/src/lib/config.h +++ b/src/lib/config.h @@ -28,7 +28,6 @@ #include <boost/shared_ptr.hpp> #include <boost/signals2.hpp> #include <boost/filesystem.hpp> -#include <libdcp/metadata.h> #include "isdcf_metadata.h" #include "colour_conversion.h" #include "server.h" @@ -145,8 +144,8 @@ public: return _default_dcp_content_type; } - libdcp::XMLMetadata dcp_metadata () const { - return _dcp_metadata; + std::string dcp_issuer () const { + return _dcp_issuer; } int default_j2k_bandwidth () const { @@ -309,8 +308,8 @@ public: changed (); } - void set_dcp_metadata (libdcp::XMLMetadata m) { - _dcp_metadata = m; + void set_dcp_issuer (std::string i) { + _dcp_issuer = i; changed (); } @@ -445,7 +444,7 @@ private: Ratio const * _default_scale; Ratio const * _default_container; DCPContentType const * _default_dcp_content_type; - libdcp::XMLMetadata _dcp_metadata; + std::string _dcp_issuer; int _default_j2k_bandwidth; int _default_audio_delay; std::vector<PresetColourConversion> _colour_conversions; |
