Barely-functioning GL playback with new arrangement.
[dcpomatic.git] / src / lib / video_mxf_content.cc
1 /*
2     Copyright (C) 2016 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "video_mxf_examiner.h"
22 #include "video_mxf_content.h"
23 #include "video_content.h"
24 #include "job.h"
25 #include "film.h"
26 #include "compose.hpp"
27 #include <asdcp/KM_log.h>
28 #include <dcp/mono_picture_asset.h>
29 #include <dcp/stereo_picture_asset.h>
30 #include <dcp/exceptions.h>
31 #include <libxml++/libxml++.h>
32
33 #include "i18n.h"
34
35 using std::list;
36 using std::string;
37 using boost::shared_ptr;
38 using namespace dcpomatic;
39
40 VideoMXFContent::VideoMXFContent (boost::filesystem::path path)
41         : Content (path)
42 {
43
44 }
45
46 VideoMXFContent::VideoMXFContent (cxml::ConstNodePtr node, int version)
47         : Content (node)
48 {
49         video = VideoContent::from_xml (this, node, version);
50 }
51
52 bool
53 VideoMXFContent::valid_mxf (boost::filesystem::path path)
54 {
55         Kumu::DefaultLogSink().UnsetFilterFlag(Kumu::LOG_ALLOW_ALL);
56
57         try {
58                 shared_ptr<dcp::MonoPictureAsset> mp (new dcp::MonoPictureAsset (path));
59                 return true;
60         } catch (dcp::MXFFileError& e) {
61
62         } catch (dcp::DCPReadError& e) {
63
64         }
65
66         try {
67                 Kumu::DefaultLogSink().SetFilterFlag(0);
68                 shared_ptr<dcp::StereoPictureAsset> sp (new dcp::StereoPictureAsset (path));
69                 return true;
70         } catch (dcp::MXFFileError& e) {
71
72         } catch (dcp::DCPReadError& e) {
73
74         }
75
76         Kumu::DefaultLogSink().SetFilterFlag(Kumu::LOG_ALLOW_ALL);
77
78         return false;
79 }
80
81 void
82 VideoMXFContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job)
83 {
84         job->set_progress_unknown ();
85
86         Content::examine (film, job);
87
88         video.reset (new VideoContent (this));
89         shared_ptr<VideoMXFExaminer> examiner (new VideoMXFExaminer (shared_from_this ()));
90         video->take_from_examiner (examiner);
91         video->unset_colour_conversion ();
92 }
93
94 string
95 VideoMXFContent::summary () const
96 {
97         return String::compose (_("%1 [video]"), path_summary());
98 }
99
100 string
101 VideoMXFContent::technical_summary () const
102 {
103         return Content::technical_summary() + " - " + video->technical_summary ();
104 }
105
106 string
107 VideoMXFContent::identifier () const
108 {
109         return Content::identifier() + "_" + video->identifier();
110 }
111
112 void
113 VideoMXFContent::as_xml (xmlpp::Node* node, bool with_paths) const
114 {
115         node->add_child("Type")->add_child_text ("VideoMXF");
116         Content::as_xml (node, with_paths);
117         video->as_xml (node);
118 }
119
120 DCPTime
121 VideoMXFContent::full_length (shared_ptr<const Film> film) const
122 {
123         FrameRateChange const frc (film, shared_from_this());
124         return DCPTime::from_frames (llrint (video->length_after_3d_combine() * frc.factor()), film->video_frame_rate());
125 }
126
127 DCPTime
128 VideoMXFContent::approximate_length () const
129 {
130         return DCPTime::from_frames (video->length_after_3d_combine(), 24);
131 }
132
133 void
134 VideoMXFContent::add_properties (shared_ptr<const Film> film, list<UserProperty>& p) const
135 {
136         Content::add_properties (film, p);
137         video->add_properties (p);
138 }