d1910bb3d2028e8304fdd7d513b8472c1fa4e6e2
[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 /** @file  src/reel_picture_asset.h
21  *  @brief ReelPictureAsset class.
22  */
23
24 #include "content.h"
25 #include "reel_picture_asset.h"
26 #include "picture_mxf.h"
27 #include "compose.hpp"
28 #include <libcxml/cxml.h>
29
30 using std::bad_cast;
31 using std::string;
32 using std::stringstream;
33 using boost::shared_ptr;
34 using namespace dcp;
35
36 ReelPictureAsset::ReelPictureAsset ()
37         : _frame_rate (Fraction (24, 1))
38         , _screen_aspect_ratio (Fraction (1998, 1080))
39 {
40
41 }
42
43 ReelPictureAsset::ReelPictureAsset (boost::shared_ptr<PictureMXF> content, int64_t entry_point)
44         : ReelAsset (content, entry_point)
45         , _frame_rate (content->frame_rate ())
46         , _screen_aspect_ratio (content->screen_aspect_ratio ())
47 {
48         
49 }
50
51 ReelPictureAsset::ReelPictureAsset (boost::shared_ptr<const cxml::Node> node)
52         : ReelAsset (node)
53 {
54         _frame_rate = Fraction (node->string_child ("FrameRate"));
55         try {
56                 _screen_aspect_ratio = Fraction (node->string_child ("ScreenAspectRatio"));
57         } catch (XMLError& e) {
58                 /* Maybe it's not a fraction */
59         }
60         try {
61                 float f = node->number_child<float> ("ScreenAspectRatio");
62                 _screen_aspect_ratio = Fraction (f * 1000, 1000);
63         } catch (bad_cast& e) {
64
65         }
66 }
67
68 void
69 ReelPictureAsset::write_to_cpl (xmlpp::Node* node, Standard standard) const
70 {
71         ReelAsset::write_to_cpl (node, standard);
72
73         xmlpp::Node::NodeList c = node->get_children ();
74         xmlpp::Node::NodeList::iterator i = c.begin();
75         while (i != c.end() && (*i)->get_name() != cpl_node_name ()) {
76                 ++i;
77         }
78
79         assert (i != c.end ());
80         
81         (*i)->add_child ("FrameRate")->add_child_text (String::compose ("%1 %2", _frame_rate.numerator, _frame_rate.denominator));
82         if (standard == INTEROP) {
83                 stringstream s;
84                 s << std::fixed << std::setprecision (2) << (float (_screen_aspect_ratio.numerator) / _screen_aspect_ratio.denominator);
85                 (*i)->add_child ("ScreenAspectRatio")->add_child_text (s.str ());
86         } else {
87                 (*i)->add_child ("ScreenAspectRatio")->add_child_text (
88                         String::compose ("%1 %2", _screen_aspect_ratio.numerator, _screen_aspect_ratio.denominator)
89                         );
90         }
91 }