Don't use --target-macos-arm64 any more, since it's not supported.
[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
36 AtmosMXFContent::AtmosMXFContent (boost::filesystem::path path)
37         : Content (path)
38 {
39
40 }
41
42 AtmosMXFContent::AtmosMXFContent (cxml::ConstNodePtr node, int)
43         : Content (node)
44 {
45
46 }
47
48 bool
49 AtmosMXFContent::valid_mxf (boost::filesystem::path path)
50 {
51         Kumu::DefaultLogSink().UnsetFilterFlag(Kumu::LOG_ALLOW_ALL);
52
53         try {
54                 shared_ptr<dcp::AtmosAsset> a (new dcp::AtmosAsset (path));
55                 return true;
56         } catch (dcp::MXFFileError& e) {
57
58         } catch (dcp::DCPReadError& e) {
59
60         }
61
62         Kumu::DefaultLogSink().SetFilterFlag(Kumu::LOG_ALLOW_ALL);
63
64         return false;
65 }
66
67 void
68 AtmosMXFContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job)
69 {
70         job->set_progress_unknown ();
71         Content::examine (film, job);
72         shared_ptr<dcp::AtmosAsset> a (new dcp::AtmosAsset (path(0)));
73
74         {
75                 boost::mutex::scoped_lock lm (_mutex);
76                 _length = a->intrinsic_duration ();
77         }
78 }
79
80 string
81 AtmosMXFContent::summary () const
82 {
83         return String::compose (_("%1 [Atmos]"), path_summary());
84 }
85
86 void
87 AtmosMXFContent::as_xml (xmlpp::Node* node, bool with_paths) const
88 {
89         node->add_child("Type")->add_child_text ("AtmosMXF");
90         Content::as_xml (node, with_paths);
91 }
92
93 DCPTime
94 AtmosMXFContent::full_length (shared_ptr<const Film> film) const
95 {
96         FrameRateChange const frc (film, shared_from_this());
97         return DCPTime::from_frames (llrint (_length * frc.factor()), film->video_frame_rate());
98 }
99
100 DCPTime
101 AtmosMXFContent::approximate_length () const
102 {
103         return DCPTime::from_frames (_length, 24);
104 }