X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Flib%2Fvideo_mxf_decoder.cc;h=40d3a461afbd4ebb4fd57765d5bc80a5f42d8c39;hb=e571e2c52e93e0dc794a620a7bb6a67f4cf0adb2;hp=dc4f8d60b6882b23b255240cc4e23359bd2dcfbc;hpb=92c691f29c5da9abca6a06605998e09f9b8103bb;p=dcpomatic.git diff --git a/src/lib/video_mxf_decoder.cc b/src/lib/video_mxf_decoder.cc index dc4f8d60b..40d3a461a 100644 --- a/src/lib/video_mxf_decoder.cc +++ b/src/lib/video_mxf_decoder.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 Carl Hetherington + Copyright (C) 2016-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,74 +18,76 @@ */ + #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; -VideoMXFDecoder::VideoMXFDecoder (shared_ptr content, shared_ptr log) - : _content (content) +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, log)); + video = make_shared(this, content); - shared_ptr mono; try { - mono.reset (new dcp::MonoPictureAsset (_content->path(0))); + auto mono = make_shared(_content->path(0)); + _mono_reader = mono->start_read (); + _mono_reader->set_check_hmac (false); + _size = mono->size (); + return; } 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))); - } catch (dcp::MXFFileError& e) { - if (!mono) { - throw; - } - } catch (dcp::DCPReadError& e) { - if (!mono) { - throw; - } - } - - if (mono) { - _mono_reader = mono->start_read (); - _size = mono->size (); - } else { - _stereo_reader = stereo->start_read (); - _size = stereo->size (); - } + auto stereo = make_shared(_content->path(0)); + _stereo_reader = stereo->start_read (); + _stereo_reader->set_check_hmac (false); + _size = stereo->size (); } + bool -VideoMXFDecoder::pass (PassReason, bool) +VideoMXFDecoder::pass () { - double const vfr = _content->active_video_frame_rate (); - 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; } if (_mono_reader) { - video->give ( - shared_ptr (new J2KImageProxy (_mono_reader->get_frame(frame), _size, AV_PIX_FMT_XYZ12LE)), frame + video->emit ( + film(), + std::make_shared(_mono_reader->get_frame(frame), _size, AV_PIX_FMT_XYZ12LE, optional()), + frame ); } else { - video->give ( - shared_ptr (new J2KImageProxy (_stereo_reader->get_frame(frame), _size, dcp::EYE_LEFT, AV_PIX_FMT_XYZ12LE)), frame + video->emit ( + film(), + std::make_shared(_stereo_reader->get_frame(frame), _size, dcp::Eye::LEFT, AV_PIX_FMT_XYZ12LE, optional()), + frame ); - video->give ( - shared_ptr (new J2KImageProxy (_stereo_reader->get_frame(frame), _size, dcp::EYE_RIGHT, AV_PIX_FMT_XYZ12LE)), frame + video->emit ( + film(), + std::make_shared(_stereo_reader->get_frame(frame), _size, dcp::Eye::RIGHT, AV_PIX_FMT_XYZ12LE, optional()), + frame ); } @@ -93,9 +95,10 @@ VideoMXFDecoder::pass (PassReason, bool) return false; } + void VideoMXFDecoder::seek (ContentTime t, bool accurate) { - video->seek (t, accurate); + Decoder::seek (t, accurate); _next = t; }