More tests.
[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 boost::dynamic_pointer_cast;
36 using namespace dcp;
37
38 ReelPictureAsset::ReelPictureAsset ()
39         : _frame_rate (Fraction (24, 1))
40         , _screen_aspect_ratio (Fraction (1998, 1080))
41 {
42
43 }
44
45 ReelPictureAsset::ReelPictureAsset (shared_ptr<PictureMXF> content, int64_t entry_point)
46         : ReelMXFAsset (content, content->edit_rate(), content->intrinsic_duration(), entry_point)
47         , _frame_rate (content->frame_rate ())
48         , _screen_aspect_ratio (content->screen_aspect_ratio ())
49 {
50         
51 }
52
53 ReelPictureAsset::ReelPictureAsset (shared_ptr<const cxml::Node> node)
54         : ReelMXFAsset (node)
55 {
56         _frame_rate = Fraction (node->string_child ("FrameRate"));
57         try {
58                 _screen_aspect_ratio = Fraction (node->string_child ("ScreenAspectRatio"));
59         } catch (XMLError& e) {
60                 /* Maybe it's not a fraction */
61         }
62         try {
63                 float f = node->number_child<float> ("ScreenAspectRatio");
64                 _screen_aspect_ratio = Fraction (f * 1000, 1000);
65         } catch (bad_cast& e) {
66
67         }
68 }
69
70 void
71 ReelPictureAsset::write_to_cpl (xmlpp::Node* node, Standard standard) const
72 {
73         ReelMXFAsset::write_to_cpl (node, standard);
74
75         xmlpp::Node::NodeList c = node->get_children ();
76         xmlpp::Node::NodeList::iterator i = c.begin();
77         while (i != c.end() && (*i)->get_name() != cpl_node_name ()) {
78                 ++i;
79         }
80
81         assert (i != c.end ());
82         
83         (*i)->add_child ("FrameRate")->add_child_text (String::compose ("%1 %2", _frame_rate.numerator, _frame_rate.denominator));
84         if (standard == INTEROP) {
85                 stringstream s;
86                 s << std::fixed << std::setprecision (2) << (float (_screen_aspect_ratio.numerator) / _screen_aspect_ratio.denominator);
87                 (*i)->add_child ("ScreenAspectRatio")->add_child_text (s.str ());
88         } else {
89                 (*i)->add_child ("ScreenAspectRatio")->add_child_text (
90                         String::compose ("%1 %2", _screen_aspect_ratio.numerator, _screen_aspect_ratio.denominator)
91                         );
92         }
93 }
94
95 string
96 ReelPictureAsset::key_type () const
97 {
98         return "MDIK";
99 }
100
101 bool
102 ReelPictureAsset::equals (shared_ptr<const ReelAsset> other, EqualityOptions opt, boost::function<void (NoteType, std::string)> note) const
103 {
104         if (!ReelAsset::equals (other, opt, note)) {
105                 return false;
106         }
107         
108         shared_ptr<const ReelPictureAsset> rpa = dynamic_pointer_cast<const ReelPictureAsset> (other);
109         if (!rpa) {
110                 return false;
111         }
112
113         if (_frame_rate != rpa->_frame_rate) {
114                 note (DCP_ERROR, "frame rates differ in reel");
115                 return false;
116         }
117
118         if (_screen_aspect_ratio != rpa->_screen_aspect_ratio) {
119                 note (DCP_ERROR, "screen aspect ratios differ in reel");
120                 return false;
121         }
122
123         return true;
124 }