Various alignment adjustments.
[dcpomatic.git] / src / lib / ffmpeg_image_proxy.cc
index e7d5b424dc0da3bdb052eab77f14c90f3fd0716b..dd2f80e0e2a3ea5f94e0fa794fb07743645633d1 100644 (file)
@@ -122,7 +122,7 @@ FFmpegImageProxy::avio_seek (int64_t const pos, int whence)
 
 
 ImageProxy::Result
-FFmpegImageProxy::image (optional<dcp::Size>) const
+FFmpegImageProxy::image (bool aligned, optional<dcp::Size>) const
 {
        auto constexpr name_for_errors = "FFmpegImageProxy::image";
 
@@ -205,7 +205,7 @@ FFmpegImageProxy::image (optional<dcp::Size>) const
                throw DecodeError (N_("avcodec_receive_frame"), name_for_errors, r, *_path);
        }
 
-       _image = make_shared<Image>(frame);
+       _image = make_shared<Image>(frame, aligned);
 
        av_packet_unref (&packet);
        av_frame_free (&frame);