diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-02-28 00:37:34 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-02-29 23:53:47 +0100 |
| commit | 54af50c3b8e9082f9751e809d63540c51197a4a1 (patch) | |
| tree | 9025a623ce5453ff73c3ce76924567e941de6cdd /src/lib/spl_entry.h | |
| parent | d3f97ca7ca2877689f4ed59482e935431d43f027 (diff) | |
Various playlist editor developments and fixes.
Diffstat (limited to 'src/lib/spl_entry.h')
| -rw-r--r-- | src/lib/spl_entry.h | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/src/lib/spl_entry.h b/src/lib/spl_entry.h index 75e0b5223..740082eaf 100644 --- a/src/lib/spl_entry.h +++ b/src/lib/spl_entry.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2018 Carl Hetherington <cth@carlh.net> + Copyright (C) 2018-2020 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -18,8 +18,8 @@ */ -#ifndef DCPOMATIC_SWAROOP_SPL_ENTRY_H -#define DCPOMATIC_SWAROOP_SPL_ENTRY_H +#ifndef DCPOMATIC_SPL_ENTRY_H +#define DCPOMATIC_SPL_ENTRY_H #include <libcxml/cxml.h> #include <dcp/types.h> @@ -35,7 +35,6 @@ class SPLEntry { public: SPLEntry (boost::shared_ptr<Content> content); - SPLEntry (boost::shared_ptr<Content> content, cxml::ConstNodePtr node); void as_xml (xmlpp::Element* e); @@ -43,18 +42,10 @@ public: std::string name; /** Digest of this content */ std::string digest; - /** CPL ID or something else for MP4 (?) */ + /** CPL ID */ std::string id; dcp::ContentKind kind; - enum Type { - DCP, - ECINEMA - }; - Type type; bool encrypted; - bool skippable; - bool disable_timeline; - bool stop_after_play; private: void construct (boost::shared_ptr<Content> content); |
