X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fimage_decoder.cc;h=a9e473f25e52e500d807d59a4a662552c28c4a7c;hb=refs%2Ftags%2Fv2.13.95;hp=fd51c1ba3963888ec891fc44e19349407a29c507;hpb=89aa9d4ba69e471949f791cdafe4ae20cea554d2;p=dcpomatic.git diff --git a/src/lib/image_decoder.cc b/src/lib/image_decoder.cc index fd51c1ba3..a9e473f25 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,11 +36,12 @@ using std::cout; using boost::shared_ptr; using dcp::Size; -ImageDecoder::ImageDecoder (shared_ptr c, shared_ptr log) - : _image_content (c) +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 @@ -68,11 +68,11 @@ ImageDecoder::pass () */ _image.reset (new J2KImageProxy (path, _image_content->video->size(), pf)); } else { - _image.reset (new MagickImageProxy (path)); + _image.reset (new FFmpegImageProxy (path)); } } - video->emit (_image, _frame_video_position); + video->emit (film(), _image, _frame_video_position); ++_frame_video_position; return false; } @@ -80,6 +80,7 @@ ImageDecoder::pass () void ImageDecoder::seek (ContentTime time, bool accurate) { - Decoder::seek (time, accurate); - _frame_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())); }