summaryrefslogtreecommitdiff
path: root/src/lib/video_content.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-10-03 20:53:44 +0200
committerCarl Hetherington <cth@carlh.net>2021-10-03 23:41:02 +0200
commit70b72b53eab0f247eb4dc605a2d669d4adb4e469 (patch)
treeaf117017f084fc2fedf0e2eaad667cda7d832b64 /src/lib/video_content.h
parentc2a17a87868eba87072fc369102b2b3cd8905e5a (diff)
Differentiate requested and actual crop.
This is so we limit cropping to what is possible considering chroma subsampling.
Diffstat (limited to 'src/lib/video_content.h')
-rw-r--r--src/lib/video_content.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/lib/video_content.h b/src/lib/video_content.h
index de151e145..ce645bb41 100644
--- a/src/lib/video_content.h
+++ b/src/lib/video_content.h
@@ -113,27 +113,29 @@ public:
return _frame_type;
}
- Crop crop () const {
+ Crop actual_crop () const;
+
+ Crop requested_crop () const {
boost::mutex::scoped_lock lm (_mutex);
return _crop;
}
- int left_crop () const {
+ int requested_left_crop () const {
boost::mutex::scoped_lock lm (_mutex);
return _crop.left;
}
- int right_crop () const {
+ int requested_right_crop () const {
boost::mutex::scoped_lock lm (_mutex);
return _crop.right;
}
- int top_crop () const {
+ int requested_top_crop () const {
boost::mutex::scoped_lock lm (_mutex);
return _crop.top;
}
- int bottom_crop () const {
+ int requested_bottom_crop () const {
boost::mutex::scoped_lock lm (_mutex);
return _crop.bottom;
}