X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Flib%2Fvideo_mxf_decoder.cc;h=39c4a37fb865be99d11b0769bdaedec453050b37;hb=689fa55d1529ad88449ca464e9107c4dcc54d1cb;hp=4482606f030b08bc98d4db0309b175d0f5e2b5c4;hpb=0b15f493754d1b630338b17f2a6dfc66ccc4f6b7;p=dcpomatic.git diff --git a/src/lib/video_mxf_decoder.cc b/src/lib/video_mxf_decoder.cc index 4482606f0..39c4a37fb 100644 --- a/src/lib/video_mxf_decoder.cc +++ b/src/lib/video_mxf_decoder.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2016-2017 Carl Hetherington + Copyright (C) 2016-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,6 +18,7 @@ */ + #include "video_mxf_decoder.h" #include "video_decoder.h" #include "video_mxf_content.h" @@ -29,33 +30,36 @@ #include #include -using boost::shared_ptr; + +using std::make_shared; +using std::shared_ptr; using boost::optional; using namespace dcpomatic; + VideoMXFDecoder::VideoMXFDecoder (shared_ptr film, shared_ptr content) : Decoder (film) , _content (content) { - video.reset (new VideoDecoder (this, content)); + video = make_shared(this, content); shared_ptr mono; try { - mono.reset (new dcp::MonoPictureAsset (_content->path(0))); + mono = make_shared(_content->path(0)); } catch (dcp::MXFFileError& e) { /* maybe it's stereo */ - } catch (dcp::DCPReadError& e) { + } catch (dcp::ReadError& e) { /* maybe it's stereo */ } shared_ptr stereo; try { - stereo.reset (new dcp::StereoPictureAsset (_content->path(0))); + stereo = make_shared(_content->path(0)); } catch (dcp::MXFFileError& e) { if (!mono) { throw; } - } catch (dcp::DCPReadError& e) { + } catch (dcp::ReadError& e) { if (!mono) { throw; } @@ -70,12 +74,12 @@ VideoMXFDecoder::VideoMXFDecoder (shared_ptr film, shared_ptractive_video_frame_rate (film()); - int64_t const frame = _next.frames_round (vfr); - + auto const vfr = _content->active_video_frame_rate (film()); + auto const frame = _next.frames_round (vfr); if (frame >= _content->video->length()) { return true; @@ -84,24 +88,18 @@ VideoMXFDecoder::pass () if (_mono_reader) { video->emit ( film(), - shared_ptr ( - new J2KImageProxy (_mono_reader->get_frame(frame), _size, AV_PIX_FMT_XYZ12LE, optional()) - ), + std::make_shared(_mono_reader->get_frame(frame), _size, AV_PIX_FMT_XYZ12LE, optional()), frame ); } else { video->emit ( film(), - shared_ptr ( - new J2KImageProxy (_stereo_reader->get_frame(frame), _size, dcp::EYE_LEFT, AV_PIX_FMT_XYZ12LE, optional()) - ), + std::make_shared(_stereo_reader->get_frame(frame), _size, dcp::Eye::LEFT, AV_PIX_FMT_XYZ12LE, optional()), frame ); video->emit ( film(), - shared_ptr ( - new J2KImageProxy (_stereo_reader->get_frame(frame), _size, dcp::EYE_RIGHT, AV_PIX_FMT_XYZ12LE, optional()) - ), + std::make_shared(_stereo_reader->get_frame(frame), _size, dcp::Eye::RIGHT, AV_PIX_FMT_XYZ12LE, optional()), frame ); } @@ -110,6 +108,7 @@ VideoMXFDecoder::pass () return false; } + void VideoMXFDecoder::seek (ContentTime t, bool accurate) {