Desensitise things that can't be adjusted in MPEG2 mode.
[dcpomatic.git] / src / lib / encode_server.cc
index 7eae4375f81f332c5f29bd906c35ff877ab9e85e..68ee871f884c3f9338c1db7cf1108cd7548c058d 100644 (file)
@@ -37,6 +37,8 @@
 #include "image.h"
 #include "log.h"
 #include "player_video.h"
+#include "util.h"
+#include "variant.h"
 #include "version.h"
 #include <dcp/raw_convert.h>
 #include <dcp/warnings.h>
@@ -246,7 +248,7 @@ EncodeServer::run ()
 {
        LOG_GENERAL ("Server %1 (%2) starting with %3 threads", dcpomatic_version, dcpomatic_git_commit, _num_threads);
        if (_verbose) {
-               cout << "DCP-o-matic server starting with " << _num_threads << " threads.\n";
+               cout << variant::dcpomatic_encode_server() << " starting with " << _num_threads << " threads.\n";
        }
 
        for (int i = 0; i < _num_threads; ++i) {
@@ -301,8 +303,8 @@ EncodeServer::broadcast_received ()
                /* Reply to the client saying what we can do */
                xmlpp::Document doc;
                auto root = doc.create_root_node ("ServerAvailable");
-               root->add_child("Threads")->add_child_text (raw_convert<string> (_worker_threads.size ()));
-               root->add_child("Version")->add_child_text (raw_convert<string> (SERVER_LINK_VERSION));
+               cxml::add_text_child(root, "Threads", raw_convert<string>(_worker_threads.size()));
+               cxml::add_text_child(root, "Version", raw_convert<string>(SERVER_LINK_VERSION));
                auto xml = doc.write_to_string ("UTF-8");
 
                if (_verbose) {