Barely-functioning GL playback with new arrangement.
[dcpomatic.git] / src / lib / atmos_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 "atmos_mxf_content.h"
22 #include "job.h"
23 #include "film.h"
24 #include "compose.hpp"
25 #include <asdcp/KM_log.h>
26 #include <dcp/atmos_asset.h>
27 #include <dcp/exceptions.h>
28 #include <libxml++/libxml++.h>
29
30 #include "i18n.h"
31
32 using std::list;
33 using std::string;
34 using boost::shared_ptr;
35 using namespace dcpomatic;
36
37 AtmosMXFContent::AtmosMXFContent (boost::filesystem::path path)
38         : Content (path)
39 {
40
41 }
42
43 AtmosMXFContent::AtmosMXFContent (cxml::ConstNodePtr node, int)
44         : Content (node)
45 {
46
47 }
48
49 bool
50 AtmosMXFContent::valid_mxf (boost::filesystem::path path)
51 {
52         Kumu::DefaultLogSink().UnsetFilterFlag(Kumu::LOG_ALLOW_ALL);
53
54         try {
55                 shared_ptr<dcp::AtmosAsset> a (new dcp::AtmosAsset (path));
56                 return true;
57         } catch (dcp::MXFFileError& e) {
58
59         } catch (dcp::DCPReadError& e) {
60
61         }
62
63         Kumu::DefaultLogSink().SetFilterFlag(Kumu::LOG_ALLOW_ALL);
64
65         return false;
66 }
67
68 void
69 AtmosMXFContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job)
70 {
71         job->set_progress_unknown ();
72         Content::examine (film, job);
73         shared_ptr<dcp::AtmosAsset> a (new dcp::AtmosAsset (path(0)));
74
75         {
76                 boost::mutex::scoped_lock lm (_mutex);
77                 _length = a->intrinsic_duration ();
78         }
79 }
80
81 string
82 AtmosMXFContent::summary () const
83 {
84         return String::compose (_("%1 [Atmos]"), path_summary());
85 }
86
87 void
88 AtmosMXFContent::as_xml (xmlpp::Node* node, bool with_paths) const
89 {
90         node->add_child("Type")->add_child_text ("AtmosMXF");
91         Content::as_xml (node, with_paths);
92 }
93
94 DCPTime
95 AtmosMXFContent::full_length (shared_ptr<const Film> film) const
96 {
97         FrameRateChange const frc (film, shared_from_this());
98         return DCPTime::from_frames (llrint (_length * frc.factor()), film->video_frame_rate());
99 }
100
101 DCPTime
102 AtmosMXFContent::approximate_length () const
103 {
104         return DCPTime::from_frames (_length, 24);
105 }