X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_mxf_decoder.cc;h=adef544a7d201947b6d4750a6d871553201b3bbd;hb=3443fdbc38f56f4c83776d000f6aa61d00305cc8;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..adef544a7 100644 --- a/src/lib/video_mxf_decoder.cc +++ b/src/lib/video_mxf_decoder.cc @@ -22,6 +22,7 @@ #include "video_decoder.h" #include "video_mxf_content.h" #include "j2k_image_proxy.h" +#include "frame_interval_checker.h" #include #include #include @@ -31,8 +32,9 @@ using boost::shared_ptr; using boost::optional; -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)); @@ -68,18 +70,19 @@ VideoMXFDecoder::VideoMXFDecoder (shared_ptr content) } bool -VideoMXFDecoder::pass (shared_ptr film) +VideoMXFDecoder::pass () { - double const vfr = _content->active_video_frame_rate (film); + 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->emit ( - film, + film(), shared_ptr ( new J2KImageProxy (_mono_reader->get_frame(frame), _size, AV_PIX_FMT_XYZ12LE, optional()) ), @@ -87,14 +90,14 @@ VideoMXFDecoder::pass (shared_ptr film) ); } else { video->emit ( - film, + film(), shared_ptr ( new J2KImageProxy (_stereo_reader->get_frame(frame), _size, dcp::EYE_LEFT, AV_PIX_FMT_XYZ12LE, optional()) ), frame ); video->emit ( - film, + film(), shared_ptr ( new J2KImageProxy (_stereo_reader->get_frame(frame), _size, dcp::EYE_RIGHT, AV_PIX_FMT_XYZ12LE, optional()) ), @@ -107,8 +110,8 @@ VideoMXFDecoder::pass (shared_ptr film) } 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; }