506e6985c10c03156a40aafd20340bcb69c151a4
[dcpomatic.git] / src / lib / video_mxf_examiner.cc
1 /*
2     Copyright (C) 2016 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 #include "video_mxf_content.h"
21 #include "video_mxf_examiner.h"
22 #include <dcp/exceptions.h>
23 #include <dcp/mono_picture_asset.h>
24 #include <dcp/stereo_picture_asset.h>
25
26 using boost::shared_ptr;
27 using boost::optional;
28
29 VideoMXFExaminer::VideoMXFExaminer (shared_ptr<const VideoMXFContent> content)
30 {
31         try {
32                 _asset.reset (new dcp::MonoPictureAsset (content->path(0)));
33         } catch (dcp::MXFFileError& e) {
34                 /* maybe it's stereo */
35         } catch (dcp::DCPReadError& e) {
36                 /* maybe it's stereo */
37         }
38
39         if (!_asset) {
40                 _asset.reset (new dcp::StereoPictureAsset (content->path(0)));
41         }
42 }
43
44 optional<double>
45 VideoMXFExaminer::video_frame_rate () const
46 {
47         return _asset->frame_rate().as_float ();
48 }
49
50 dcp::Size
51 VideoMXFExaminer::video_size () const
52 {
53         return _asset->size ();
54 }
55
56 Frame
57 VideoMXFExaminer::video_length () const
58 {
59         return _asset->intrinsic_duration ();
60 }
61
62 optional<double>
63 VideoMXFExaminer::sample_aspect_ratio () const
64 {
65         return 1.0;
66 }
67
68 bool
69 VideoMXFExaminer::yuv () const
70 {
71         return false;
72 }