diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-01-07 12:12:15 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-01-07 12:12:15 +0000 |
| commit | 77f7f3be256f81d2977bccdb236582e18a625ba7 (patch) | |
| tree | 2b3880043171559a2d6b938c3c1746ba6ea5874c /src/lib/raw_image_proxy.cc | |
| parent | 48073ddb0a9a6e9c9dd81b04b196230f4372447b (diff) | |
Make a note in the log when XYZ values are clamped by libdcp on XYZ -> RGB conversion.
Diffstat (limited to 'src/lib/raw_image_proxy.cc')
| -rw-r--r-- | src/lib/raw_image_proxy.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/raw_image_proxy.cc b/src/lib/raw_image_proxy.cc index 8e8bf8824..8f05f5455 100644 --- a/src/lib/raw_image_proxy.cc +++ b/src/lib/raw_image_proxy.cc @@ -30,6 +30,7 @@ extern "C" { using std::string; using boost::shared_ptr; +using boost::optional; RawImageProxy::RawImageProxy (shared_ptr<Image> image) : _image (image) @@ -48,7 +49,7 @@ RawImageProxy::RawImageProxy (shared_ptr<cxml::Node> xml, shared_ptr<Socket> soc } shared_ptr<Image> -RawImageProxy::image () const +RawImageProxy::image (optional<dcp::NoteHandler>) const { return _image; } |
