diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-06-15 19:22:04 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-06-15 19:22:04 +0100 |
| commit | 9517063ff43737301e46f40cb91563f1e75cef24 (patch) | |
| tree | bde69dc1726a583571d5ce9c86f62ace223c5c46 /src/lib/video_decoder.cc | |
| parent | 9de5bc65c8c8753d23cb775e6d26369aa2b8198d (diff) | |
Partially fix crop.
Diffstat (limited to 'src/lib/video_decoder.cc')
| -rw-r--r-- | src/lib/video_decoder.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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> 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); |
