summaryrefslogtreecommitdiff
path: root/src/lib/server.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-08-17 22:21:15 +0100
committerCarl Hetherington <cth@carlh.net>2013-08-17 22:21:15 +0100
commit5f64a83b76dd015cc03d106061bf890d3d80d788 (patch)
treeca26a9e9c94d98d4d6dc5fbf0af71279546c1063 /src/lib/server.cc
parent395b88b4ee3a0739a32af4129b0a47d2f063a937 (diff)
Try to actually use colour conversion; bump libdcp in cscript.
Diffstat (limited to 'src/lib/server.cc')
-rw-r--r--src/lib/server.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/server.cc b/src/lib/server.cc
index de265dca4..e4c281172 100644
--- a/src/lib/server.cc
+++ b/src/lib/server.cc
@@ -112,8 +112,10 @@ Server::process (shared_ptr<Socket> socket)
image->read_from_socket (socket);
+ /* XXX: colour conversion... */
+
DCPVideoFrame dcp_video_frame (
- image, frame, eyes, frames_per_second, j2k_bandwidth, _log
+ image, frame, eyes, ColourConversion(), frames_per_second, j2k_bandwidth, _log
);
shared_ptr<EncodedData> encoded = dcp_video_frame.encode_locally ();