diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-08-11 11:07:18 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-08-12 09:14:05 +0100 |
| commit | 73654117144c6de0ec4efe39ddc88485df546cc9 (patch) | |
| tree | 4402a65c2988ba6e678c4cf51f6e2d48cad424e5 /src/lib/encode_server.cc | |
| parent | b1dc9c3a2f7e55c9afc5bf2d5b465371b048e14f (diff) | |
Move raw_convert into libdcp.
Diffstat (limited to 'src/lib/encode_server.cc')
| -rw-r--r-- | src/lib/encode_server.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/encode_server.cc b/src/lib/encode_server.cc index abd8537c0..442ce3d6f 100644 --- a/src/lib/encode_server.cc +++ b/src/lib/encode_server.cc @@ -31,10 +31,10 @@ #include "config.h" #include "cross.h" #include "player_video.h" -#include "raw_convert.h" #include "compose.hpp" #include "log.h" #include "encoded_log_entry.h" +#include <dcp/raw_convert.h> #include <libcxml/cxml.h> #include <libxml++/libxml++.h> #include <boost/algorithm/string.hpp> @@ -64,6 +64,7 @@ using boost::scoped_array; using boost::optional; using dcp::Size; using dcp::Data; +using dcp::raw_convert; EncodeServer::EncodeServer (shared_ptr<Log> log, bool verbose, int num_threads) : Server (Config::instance()->server_port_base()) |
