diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-08-13 00:10:19 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-08-13 00:10:19 +0100 |
| commit | 830d8e01713add5856f44a5246eb65781458d0b8 (patch) | |
| tree | 736702d96029223cd3403f58bbbd9286dc5680c8 /src/cpl.h | |
| parent | a1a33941351365cc371f468c6c9c8f0cf8ca32d2 (diff) | |
Tweaks for more real-life DCPs; beginning of subtitle support.
Diffstat (limited to 'src/cpl.h')
| -rw-r--r-- | src/cpl.h | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -34,6 +34,20 @@ public: int64_t duration; }; +class MainSubtitle : public XMLNode +{ +public: + MainSubtitle () {} + MainSubtitle (xmlpp::Node const * node); + + std::string id; + std::string annotation_text; + Fraction edit_rate; + int64_t intrinsic_duration; + int64_t entry_point; + int64_t duration; +}; + class CPLAssetList : public XMLNode { public: @@ -42,6 +56,7 @@ public: boost::shared_ptr<MainPicture> main_picture; boost::shared_ptr<MainSound> main_sound; + boost::shared_ptr<MainSubtitle> main_subtitle; }; class Reel : public XMLNode |
