summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-11-19 14:04:23 +0000
committerCarl Hetherington <cth@carlh.net>2014-11-19 14:04:23 +0000
commitc3d85016ac7c41925965513613b5049c1ee9237e (patch)
treea18acdaf9d6746d28fcc0b08604c0022666a77e9 /src/lib
parent7c34de96993118984ee3f683b2ff0c85fa1081cc (diff)
Improve comment.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/video_content_scale.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/video_content_scale.h b/src/lib/video_content_scale.h
index 6b718d574..d457d82f1 100644
--- a/src/lib/video_content_scale.h
+++ b/src/lib/video_content_scale.h
@@ -65,9 +65,13 @@ public:
private:
/** a ratio to stretch the content to, or 0 for no stretch */
Ratio const * _ratio;
- /** true if we want to scale the content */
+ /** true if we want to change the size of the content in any way */
bool _scale;
+ /* If _ratio is 0 and _scale is false there is no scale at all (i.e.
+ the content is used at its original size)
+ */
+
static std::vector<VideoContentScale> _scales;
};