diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-11-27 23:33:23 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-11-27 23:33:23 +0000 |
| commit | 3a42767c354cb0877f17a2a0078bbf37380967d0 (patch) | |
| tree | c9d347cd9b367c5c164ebf66f12cddf39223fdb2 /src/lib/player_video.h | |
| parent | 51bdd082283e39ebeca5150995d98cdade189fe1 (diff) | |
Similar fix for scaling (#1416).
Diffstat (limited to 'src/lib/player_video.h')
| -rw-r--r-- | src/lib/player_video.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/player_video.h b/src/lib/player_video.h index 1e214beea..6275c5113 100644 --- a/src/lib/player_video.h +++ b/src/lib/player_video.h @@ -126,8 +126,12 @@ private: mutable boost::mutex _mutex; mutable boost::shared_ptr<Image> _image; - /** crop that was used to make _image */ + /** _crop that was used to make _image */ mutable Crop _image_crop; + /** _inter_size that was used to make _image */ + mutable dcp::Size _image_inter_size; + /** _out_size that was used to make _image */ + mutable dcp::Size _image_out_size; }; #endif |
