summaryrefslogtreecommitdiff
path: root/src/lib/video_content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-10-03 21:22:14 +0200
committerCarl Hetherington <cth@carlh.net>2021-10-03 23:41:02 +0200
commit969906f2dd6c5c144781861f53e2a0f6baefb9a3 (patch)
treed4091610b2c0582f52a8d484fd7a36a9c4878111 /src/lib/video_content.cc
parent70b72b53eab0f247eb4dc605a2d669d4adb4e469 (diff)
Don't scale chroma subsampled images to sizes that don't align with the subsampling (#1872).v2.15.166
There's a slightly odd effect when scaling e.g. YVU420 images to odd and then even widths - there's a small but visible luminance shift. I don't know why this happens, but keeping the scaling sizes locked to the subsampling seems to help.
Diffstat (limited to 'src/lib/video_content.cc')
-rw-r--r--src/lib/video_content.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc
index 0ef102116..9ff35ffdf 100644
--- a/src/lib/video_content.cc
+++ b/src/lib/video_content.cc
@@ -655,7 +655,7 @@ VideoContent::scaled_size (dcp::Size film_container)
_legacy_ratio = boost::optional<float>();
}
- return auto_size;
+ return _pixel_quanta.round (auto_size);
}