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