X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_mxf_decoder.cc;h=92cab0259dd8a1697826f2ad5213b221cba7e6e3;hb=84039db657c3cc72719706a136c90741170c765a;hp=7d9656dd5a7d755aabf1379c42212cb33c1f2326;hpb=254b3044d72de6b033d7c584f5abd2b9aa70aad5;p=dcpomatic.git diff --git a/src/lib/video_mxf_decoder.cc b/src/lib/video_mxf_decoder.cc index 7d9656dd5..92cab0259 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,41 +18,48 @@ */ + #include "video_mxf_decoder.h" #include "video_decoder.h" #include "video_mxf_content.h" #include "j2k_image_proxy.h" +#include "frame_interval_checker.h" #include #include #include #include #include -using boost::shared_ptr; + +using std::make_shared; +using std::shared_ptr; using boost::optional; +using namespace dcpomatic; + -VideoMXFDecoder::VideoMXFDecoder (shared_ptr content) - : _content (content) +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; } @@ -60,18 +67,21 @@ VideoMXFDecoder::VideoMXFDecoder (shared_ptr content) if (mono) { _mono_reader = mono->start_read (); + _mono_reader->set_check_hmac (false); _size = mono->size (); } else { _stereo_reader = stereo->start_read (); + _stereo_reader->set_check_hmac (false); _size = stereo->size (); } } + bool -VideoMXFDecoder::pass (shared_ptr film) +VideoMXFDecoder::pass () { - double const vfr = _content->active_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; @@ -79,25 +89,19 @@ VideoMXFDecoder::pass (shared_ptr film) if (_mono_reader) { video->emit ( - film, - shared_ptr ( - new J2KImageProxy (_mono_reader->get_frame(frame), _size, AV_PIX_FMT_XYZ12LE, optional()) - ), + film(), + 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()) - ), + film(), + 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()) - ), + film(), + std::make_shared(_stereo_reader->get_frame(frame), _size, dcp::Eye::RIGHT, AV_PIX_FMT_XYZ12LE, optional()), frame ); } @@ -106,9 +110,10 @@ VideoMXFDecoder::pass (shared_ptr film) return false; } + void -VideoMXFDecoder::seek (shared_ptr film, ContentTime t, bool accurate) +VideoMXFDecoder::seek (ContentTime t, bool accurate) { - Decoder::seek (film, t, accurate); + Decoder::seek (t, accurate); _next = t; }