Partially fix crop.
authorCarl Hetherington <cth@carlh.net>
Sat, 15 Jun 2013 18:22:04 +0000 (19:22 +0100)
committerCarl Hetherington <cth@carlh.net>
Sat, 15 Jun 2013 18:22:04 +0000 (19:22 +0100)
src/lib/video_decoder.cc

index c5e1850c0f6d6351bc112504a87d97958c508e26..d1a8fc6e66c172edcb3e82168392517cb0a76ca6 100644 (file)
@@ -51,7 +51,7 @@ VideoDecoder::video (shared_ptr<Image> image, bool same, Time t)
                return;
        }
 
-       image->crop (_video_content->crop(), true);
+       image = image->crop (_video_content->crop(), true);
 
        shared_ptr<const Film> film = _film.lock ();
        assert (film);