diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-08-22 12:32:52 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-08-22 12:32:52 +0100 |
| commit | c70373ba74504ae39453c2a41ce1ab047fd441b4 (patch) | |
| tree | 020b40133c93a797341b7a19c46c787f449cebe1 /src/cpl.cc | |
| parent | dbdef419973ea00817022a4352126925025857dd (diff) | |
Rough support for 3D.
Diffstat (limited to 'src/cpl.cc')
| -rw-r--r-- | src/cpl.cc | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -67,7 +67,8 @@ CPLReel::CPLReel (xmlpp::Node const * node) CPLAssetList::CPLAssetList (xmlpp::Node const * node) : XMLNode (node) { - main_picture = sub_node<MainPicture> ("MainPicture"); + main_picture = optional_sub_node<MainPicture> ("MainPicture"); + main_stereoscopic_picture = optional_sub_node<MainStereoscopicPicture> ("MainStereoscopicPicture"); main_sound = optional_sub_node<MainSound> ("MainSound"); main_subtitle = optional_sub_node<MainSubtitle> ("MainSubtitle"); @@ -75,6 +76,18 @@ CPLAssetList::CPLAssetList (xmlpp::Node const * node) } MainPicture::MainPicture (xmlpp::Node const * node) + : Picture (node) +{ + +} + +MainStereoscopicPicture::MainStereoscopicPicture (xmlpp::Node const * node) + : Picture (node) +{ + +} + +Picture::Picture (xmlpp::Node const * node) : XMLNode (node) { id = string_node ("Id"); |
