673eb133fda7bd0c77944507be70cc54830a69a2
[libdcp.git] / src / reel_picture_asset.cc
1 /*
2     Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "content.h"
21 #include "reel_picture_asset.h"
22 #include "picture_mxf.h"
23 #include "compose.hpp"
24 #include <libcxml/cxml.h>
25
26 using std::bad_cast;
27 using std::string;
28 using std::stringstream;
29 using boost::shared_ptr;
30 using namespace dcp;
31
32 ReelPictureAsset::ReelPictureAsset ()
33         : _frame_rate (Fraction (24, 1))
34         , _screen_aspect_ratio (Fraction (1998, 1080))
35 {
36
37 }
38
39 ReelPictureAsset::ReelPictureAsset (boost::shared_ptr<PictureMXF> content, int64_t entry_point)
40         : ReelAsset (content, entry_point)
41         , _frame_rate (content->frame_rate ())
42         , _screen_aspect_ratio (content->screen_aspect_ratio ())
43 {
44         
45 }
46
47 ReelPictureAsset::ReelPictureAsset (boost::shared_ptr<const cxml::Node> node)
48         : ReelAsset (node)
49 {
50         _frame_rate = Fraction (node->string_child ("FrameRate"));
51         try {
52                 _screen_aspect_ratio = Fraction (node->string_child ("ScreenAspectRatio"));
53         } catch (XMLError& e) {
54                 /* Maybe it's not a fraction */
55         }
56         try {
57                 float f = node->number_child<float> ("ScreenAspectRatio");
58                 _screen_aspect_ratio = Fraction (f * 1000, 1000);
59         } catch (bad_cast& e) {
60
61         }
62 }
63
64 void
65 ReelPictureAsset::write_to_cpl (xmlpp::Node* node, Standard standard) const
66 {
67         ReelAsset::write_to_cpl (node, standard);
68
69         xmlpp::Node::NodeList c = node->get_children ();
70         xmlpp::Node::NodeList::iterator i = c.begin();
71         while (i != c.end() && (*i)->get_name() != cpl_node_name ()) {
72                 ++i;
73         }
74
75         assert (i != c.end ());
76         
77         (*i)->add_child ("FrameRate")->add_child_text (String::compose ("%1 %2", _frame_rate.numerator, _frame_rate.denominator));
78         if (standard == INTEROP) {
79                 stringstream s;
80                 s << std::fixed << std::setprecision (2) << (float (_screen_aspect_ratio.numerator) / _screen_aspect_ratio.denominator);
81                 (*i)->add_child ("ScreenAspectRatio")->add_child_text (s.str ());
82         } else {
83                 (*i)->add_child ("ScreenAspectRatio")->add_child_text (
84                         String::compose ("%1 %2", _screen_aspect_ratio.numerator, _screen_aspect_ratio.denominator)
85                         );
86         }
87 }