X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_mxf_decoder.cc;h=3c4002ca2b6d9acbbe20079627ebd5f3f39f0c94;hb=84012cdd64f451891febd36154b7226ea21a899b;hp=95dd668ee4246709ed72c08479613cd02536b9d2;hpb=de2af791bdfdcd653752cba970e59efc7bf810c7;p=dcpomatic.git diff --git a/src/lib/video_mxf_decoder.cc b/src/lib/video_mxf_decoder.cc index 95dd668ee..3c4002ca2 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,13 @@ #include using boost::shared_ptr; +using boost::optional; -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 { @@ -66,34 +68,49 @@ VideoMXFDecoder::VideoMXFDecoder (shared_ptr content, sha } } -void +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; + return true; } if (_mono_reader) { video->emit ( - shared_ptr (new J2KImageProxy (_mono_reader->get_frame(frame), _size, AV_PIX_FMT_XYZ12LE)), frame + film(), + shared_ptr ( + new J2KImageProxy (_mono_reader->get_frame(frame), _size, AV_PIX_FMT_XYZ12LE, optional()) + ), + frame ); } else { video->emit ( - shared_ptr (new J2KImageProxy (_stereo_reader->get_frame(frame), _size, dcp::EYE_LEFT, AV_PIX_FMT_XYZ12LE)), frame + film(), + shared_ptr ( + new J2KImageProxy (_stereo_reader->get_frame(frame), _size, dcp::EYE_LEFT, AV_PIX_FMT_XYZ12LE, optional()) + ), + frame ); video->emit ( - shared_ptr (new J2KImageProxy (_stereo_reader->get_frame(frame), _size, dcp::EYE_RIGHT, AV_PIX_FMT_XYZ12LE)), frame + 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); + return false; } void -VideoMXFDecoder::seek (ContentTime t, bool) +VideoMXFDecoder::seek (ContentTime t, bool accurate) { + Decoder::seek (t, accurate); _next = t; }