diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-05-24 23:29:39 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-05-24 23:29:39 +0100 |
| commit | 92784c9c28c48859578cd6e75aa01d5657d0c341 (patch) | |
| tree | 595a34ecd2c59bf9d3dbcfa0c6f0a91b17ecfa5b /src/lib/player_video.h | |
| parent | 6c78f6d31a457ad34fb14b7c926fb418b4d6790d (diff) | |
Basic ability to set video range (JPEG/MPEG) at least for YUV content. May not work for RGB. See #1509.
Diffstat (limited to 'src/lib/player_video.h')
| -rw-r--r-- | src/lib/player_video.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/player_video.h b/src/lib/player_video.h index c38d60641..3cd559409 100644 --- a/src/lib/player_video.h +++ b/src/lib/player_video.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net> + Copyright (C) 2013-2019 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -54,6 +54,7 @@ public: Eyes, Part, boost::optional<ColourConversion>, + VideoRange video_range, boost::weak_ptr<Content>, boost::optional<Frame> ); @@ -117,6 +118,7 @@ private: Eyes _eyes; Part _part; boost::optional<ColourConversion> _colour_conversion; + VideoRange _video_range; boost::optional<PositionImage> _text; /** Content that we came from. This is so that reset_metadata() can work, and also * for variant:swaroop's non-skippable ads. |
