X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_mxf_decoder.cc;h=1bf2b1bef87737957f55dc92f873b4d761b82b5e;hb=77c30a110a321b3b69259381a7f30c5c25f4da7c;hp=938d7deaf5c540668e0316b3a45cb99bf5b31501;hpb=368832f2ff6837d9029020b41fb97fb148c3be31;p=dcpomatic.git diff --git a/src/lib/video_mxf_decoder.cc b/src/lib/video_mxf_decoder.cc index 938d7deaf..1bf2b1bef 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-2017 Carl Hetherington This file is part of DCP-o-matic. @@ -29,11 +29,14 @@ #include using boost::shared_ptr; +using boost::optional; +using namespace dcpomatic; -VideoMXFDecoder::VideoMXFDecoder (shared_ptr content, shared_ptr log) - : _content (content) +VideoMXFDecoder::VideoMXFDecoder (shared_ptr film, shared_ptr content) + : Decoder (film) + , _content (content) { - video.reset (new VideoDecoder (this, content, log)); + video.reset (new VideoDecoder (this, content)); shared_ptr mono; try { @@ -67,20 +70,39 @@ VideoMXFDecoder::VideoMXFDecoder (shared_ptr content, sha } bool -VideoMXFDecoder::pass (PassReason, bool) +VideoMXFDecoder::pass () { - double const vfr = _content->active_video_frame_rate (); + double const vfr = _content->active_video_frame_rate (film()); int64_t 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)), frame); + video->emit ( + film(), + shared_ptr ( + new J2KImageProxy (_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)), frame); - video->give (shared_ptr (new J2KImageProxy (_stereo_reader->get_frame(frame), _size, dcp::EYE_RIGHT)), frame); + video->emit ( + film(), + shared_ptr ( + new J2KImageProxy (_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()) + ), + frame + ); } _next += ContentTime::from_frames (1, vfr); @@ -90,6 +112,6 @@ VideoMXFDecoder::pass (PassReason, bool) void VideoMXFDecoder::seek (ContentTime t, bool accurate) { - video->seek (t, accurate); + Decoder::seek (t, accurate); _next = t; }