/* Copyright (C) 2016 Carl Hetherington This file is part of DCP-o-matic. DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with DCP-o-matic. If not, see . */ #include "video_mxf_content.h" #include "video_mxf_examiner.h" #include #include #include using std::shared_ptr; using boost::optional; VideoMXFExaminer::VideoMXFExaminer (shared_ptr content) { try { _asset = std::make_shared(content->path(0)); } catch (dcp::MXFFileError& e) { /* maybe it's stereo */ } catch (dcp::ReadError& e) { /* maybe it's stereo */ } if (!_asset) { _asset = std::make_shared(content->path(0)); } } optional VideoMXFExaminer::video_frame_rate () const { return _asset->frame_rate().as_float (); } optional VideoMXFExaminer::video_size () const { return _asset->size (); } Frame VideoMXFExaminer::video_length () const { return _asset->intrinsic_duration (); } optional VideoMXFExaminer::sample_aspect_ratio () const { return 1.0; } bool VideoMXFExaminer::yuv () const { return false; }