X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_mxf_decoder.cc;h=194830c635e4ec5cab4495c99fb2e6790d38515f;hb=61a3f348c433ca4f8d2e7bb9758ad5d61bd35407;hp=321728f58e0e8cd3c2ebfd7649a9e562a0f70069;hpb=24e890682b3f2aa211277ad8b6b3591f2026d4be;p=dcpomatic.git diff --git a/src/lib/video_mxf_decoder.cc b/src/lib/video_mxf_decoder.cc index 321728f58..194830c63 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,6 +29,7 @@ #include using boost::shared_ptr; +using boost::optional; VideoMXFDecoder::VideoMXFDecoder (shared_ptr content, shared_ptr log) : _content (content) @@ -67,7 +68,7 @@ VideoMXFDecoder::VideoMXFDecoder (shared_ptr content, sha } bool -VideoMXFDecoder::pass (PassReason, bool) +VideoMXFDecoder::pass () { double const vfr = _content->active_video_frame_rate (); int64_t const frame = _next.frames_round (vfr); @@ -77,19 +78,27 @@ VideoMXFDecoder::pass (PassReason, bool) } if (_mono_reader) { - video->give ( - shared_ptr (new J2KImageProxy (_mono_reader->get_frame(frame), _size, AV_PIX_FMT_XYZ12LE)), frame + video->emit ( + 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, AV_PIX_FMT_XYZ12LE)), frame + video->emit ( + shared_ptr ( + new J2KImageProxy (_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 ( + shared_ptr ( + new J2KImageProxy (_stereo_reader->get_frame(frame), _size, dcp::EYE_RIGHT, AV_PIX_FMT_XYZ12LE, optional()) + ), + frame ); } - _video_position = _next; _next += ContentTime::from_frames (1, vfr); return false; } @@ -97,6 +106,6 @@ VideoMXFDecoder::pass (PassReason, bool) void VideoMXFDecoder::seek (ContentTime t, bool accurate) { - video->seek (t, accurate); + Decoder::seek (t, accurate); _next = t; }