Allow J2K encode backends to accept more than one frame at once.
[dcpomatic.git] / src / tools / server_test.cc
index ff3295599da1ca4e905cd922cbfd4b18d49d1dcc..baae6ac40257cf1a0d4bdd00603817c318909e4c 100644 (file)
@@ -29,6 +29,8 @@
 #include "lib/filter.h"
 #include "lib/player.h"
 #include "lib/player_video.h"
+#include "lib/j2k_encoder_cpu_backend.h"
+#include "lib/j2k_encoder_remote_backend.h"
 #include "lib/ratio.h"
 #include "lib/util.h"
 #include "lib/video_decoder.h"
 using std::cerr;
 using std::cout;
 using std::make_shared;
-using std::pair;
 using std::shared_ptr;
 using std::string;
+using std::vector;
 using boost::optional;
 using boost::bind;
 #if BOOST_VERSION >= 106100
 using namespace boost::placeholders;
 #endif
 using dcp::ArrayData;
+using namespace dcpomatic;
 
 
 static shared_ptr<Film> film;
@@ -60,37 +63,42 @@ static int frame_count = 0;
 void
 process_video (shared_ptr<PlayerVideo> pvf)
 {
-       auto local = make_shared<DCPVideo>(pvf, frame_count, film->video_frame_rate(), 250000000, Resolution::TWO_K);
-       auto remote = make_shared<DCPVideo>(pvf, frame_count, film->video_frame_rate(), 250000000, Resolution::TWO_K);
+       DCPVideo local(pvf, frame_count, film->video_frame_rate(), 250000000, Resolution::TWO_K);
+       DCPVideo remote(pvf, frame_count, film->video_frame_rate(), 250000000, Resolution::TWO_K);
 
        cout << "Frame " << frame_count << ": ";
        cout.flush ();
 
        ++frame_count;
 
-       auto local_encoded = local->encode_locally ();
-       ArrayData remote_encoded;
+       J2KEncoderCPUBackend cpu_backend;
+       auto local_encoded = cpu_backend.encode({local});
+       vector<ArrayData> remote_encoded;
 
        string remote_error;
+       J2KEncoderRemoteBackend remote_backend(*server);
        try {
-               remote_encoded = remote->encode_remotely (*server);
+               remote_encoded = remote_backend.encode({remote});
        } catch (NetworkError& e) {
                remote_error = e.what ();
        }
 
+       DCPOMATIC_ASSERT (!local_encoded.empty());
+       DCPOMATIC_ASSERT (!remote_encoded.empty());
+
        if (!remote_error.empty()) {
                cout << "\033[0;31mnetwork problem: " << remote_error << "\033[0m\n";
                return;
        }
 
-       if (local_encoded.size() != remote_encoded.size()) {
+       if (local_encoded[0].size() != remote_encoded[0].size()) {
                cout << "\033[0;31msizes differ\033[0m\n";
                return;
        }
 
-       auto p = local_encoded.data();
-       auto q = remote_encoded.data();
-       for (int i = 0; i < local_encoded.size(); ++i) {
+       auto p = local_encoded[0].data();
+       auto q = remote_encoded[0].data();
+       for (int i = 0; i < local_encoded[0].size(); ++i) {
                if (*p++ != *q++) {
                        cout << "\033[0;31mdata differ\033[0m at byte " << i << "\n";
                        return;