X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fimage_decoder.cc;h=ce45abdd906d2473d4c11224e54097376d2979ec;hb=94ee305348f7d3eb548fd44ca4aa1c57645056b1;hp=f7afbc0a153b86cbabc77d88ba0c3f4d4bf1684d;hpb=92c691f29c5da9abca6a06605998e09f9b8103bb;p=dcpomatic.git diff --git a/src/lib/image_decoder.cc b/src/lib/image_decoder.cc index f7afbc0a1..ce45abdd9 100644 --- a/src/lib/image_decoder.cc +++ b/src/lib/image_decoder.cc @@ -22,12 +22,11 @@ #include "image_decoder.h" #include "video_decoder.h" #include "image.h" -#include "magick_image_proxy.h" +#include "ffmpeg_image_proxy.h" #include "j2k_image_proxy.h" #include "film.h" #include "exceptions.h" #include "video_content.h" -#include #include #include @@ -37,23 +36,24 @@ using std::cout; using boost::shared_ptr; using dcp::Size; -ImageDecoder::ImageDecoder (shared_ptr c, shared_ptr log) - : _image_content (c) - , _video_position (0) +ImageDecoder::ImageDecoder (shared_ptr film, shared_ptr c) + : Decoder (film) + , _image_content (c) + , _frame_video_position (0) { - video.reset (new VideoDecoder (this, c, log)); + video.reset (new VideoDecoder (this, c)); } bool -ImageDecoder::pass (PassReason, bool) +ImageDecoder::pass () { - if (_video_position >= _image_content->video->length()) { + if (_frame_video_position >= _image_content->video->length()) { return true; } if (!_image_content->still() || !_image) { /* Either we need an image or we are using moving images, so load one */ - boost::filesystem::path path = _image_content->path (_image_content->still() ? 0 : _video_position); + boost::filesystem::path path = _image_content->path (_image_content->still() ? 0 : _frame_video_position); if (valid_j2k_file (path)) { AVPixelFormat pf; if (_image_content->video->colour_conversion()) { @@ -68,18 +68,18 @@ ImageDecoder::pass (PassReason, bool) */ _image.reset (new J2KImageProxy (path, _image_content->video->size(), pf)); } else { - _image.reset (new MagickImageProxy (path)); + _image.reset (new FFmpegImageProxy (path)); } } - video->give (_image, _video_position); - ++_video_position; + video->emit (film(), _image, _frame_video_position); + ++_frame_video_position; return false; } void ImageDecoder::seek (ContentTime time, bool accurate) { - video->seek (time, accurate); - _video_position = time.frames_round (_image_content->active_video_frame_rate ()); + Decoder::seek (time, accurate); + _frame_video_position = time.frames_round (_image_content->active_video_frame_rate(film())); }