Fix no-stretch / no-scale for non-square pixels (#1636). v2.14.14
authorCarl Hetherington <cth@carlh.net>
Fri, 8 Nov 2019 16:21:19 +0000 (17:21 +0100)
committerCarl Hetherington <cth@carlh.net>
Sat, 16 Nov 2019 21:48:35 +0000 (21:48 +0000)
Backported from ee0f2219f3799881bc9f5060edd2ceeecff4217d in v2.15.x

src/lib/video_content_scale.cc

index 137d78ad2ff7a9a2629c009bb278c495f60a8d3c..73dfd27fef38d9ef4ea5a9cbf707952e0dfee4f7 100644 (file)
@@ -107,13 +107,15 @@ VideoContentScale::name () const
 
 /** @param display_container Size of the container that we are displaying this content in.
  *  @param film_container The size of the film's image.
+ *  @return Size, in pixels that the VideoContent's image should be scaled to (taking into account its pixel aspect ratio)
  */
 dcp::Size
 VideoContentScale::size (shared_ptr<const VideoContent> c, dcp::Size display_container, dcp::Size film_container) const
 {
        /* Work out the size of the content if it were put inside film_container */
 
-       dcp::Size const video_size_after_crop = c->size_after_crop ();
+       dcp::Size video_size_after_crop = c->size_after_crop();
+       video_size_after_crop.width *= c->sample_aspect_ratio().get_value_or(1);
 
        dcp::Size size;