summaryrefslogtreecommitdiff
path: root/src/lib/video_content.h
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.h
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.h')
-rw-r--r--src/lib/video_content.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/video_content.h b/src/lib/video_content.h
index ce645bb41..2adf941d9 100644
--- a/src/lib/video_content.h
+++ b/src/lib/video_content.h
@@ -183,6 +183,11 @@ public:
return _range;
}
+ PixelQuanta pixel_quanta () const {
+ boost::mutex::scoped_lock lm (_mutex);
+ return _pixel_quanta;
+ }
+
bool use () const {
boost::mutex::scoped_lock lm (_mutex);
return _use;