Add uid/euid to macOS debug message.
[dcpomatic.git] / src / lib / video_mxf_examiner.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
22 #include "video_mxf_content.h"
23 #include "video_mxf_examiner.h"
24 #include <dcp/exceptions.h>
25 #include <dcp/mono_picture_asset.h>
26 #include <dcp/stereo_picture_asset.h>
27
28
29 using std::shared_ptr;
30 using std::make_shared;
31 using boost::optional;
32
33
34 VideoMXFExaminer::VideoMXFExaminer (shared_ptr<const VideoMXFContent> content)
35 {
36         try {
37                 _asset = make_shared<dcp::MonoPictureAsset>(content->path(0));
38         } catch (dcp::MXFFileError& e) {
39                 /* maybe it's stereo */
40         } catch (dcp::ReadError& e) {
41                 /* maybe it's stereo */
42         }
43
44         if (!_asset) {
45                 _asset = make_shared<dcp::StereoPictureAsset>(content->path(0));
46         }
47 }
48
49
50 optional<double>
51 VideoMXFExaminer::video_frame_rate () const
52 {
53         return _asset->frame_rate().as_float ();
54 }
55
56
57 dcp::Size
58 VideoMXFExaminer::video_size () const
59 {
60         return _asset->size ();
61 }
62
63
64 Frame
65 VideoMXFExaminer::video_length () const
66 {
67         return _asset->intrinsic_duration ();
68 }
69
70
71 optional<double>
72 VideoMXFExaminer::sample_aspect_ratio () const
73 {
74         return 1.0;
75 }
76
77
78 bool
79 VideoMXFExaminer::yuv () const
80 {
81         return false;
82 }