From: Carl Hetherington Date: Sat, 15 Jun 2013 18:22:04 +0000 (+0100) Subject: Partially fix crop. X-Git-Tag: v2.0.48~1337^2~322 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=9517063ff43737301e46f40cb91563f1e75cef24;p=dcpomatic.git Partially fix crop. --- diff --git a/src/lib/video_decoder.cc b/src/lib/video_decoder.cc index c5e1850c0..d1a8fc6e6 100644 --- a/src/lib/video_decoder.cc +++ b/src/lib/video_decoder.cc @@ -51,7 +51,7 @@ VideoDecoder::video (shared_ptr image, bool same, Time t) return; } - image->crop (_video_content->crop(), true); + image = image->crop (_video_content->crop(), true); shared_ptr film = _film.lock (); assert (film);