From: Carl Hetherington Date: Tue, 1 Sep 2015 17:34:27 +0000 (+0100) Subject: Add basic test for client/server with a J2K image. X-Git-Tag: v2.1.50~8 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=78d8f1166fb0f8f8cee7996e3c9b7f5d088f72df Add basic test for client/server with a J2K image. --- diff --git a/src/lib/j2k_image_proxy.cc b/src/lib/j2k_image_proxy.cc index f809c5b35..7877eca17 100644 --- a/src/lib/j2k_image_proxy.cc +++ b/src/lib/j2k_image_proxy.cc @@ -149,3 +149,10 @@ J2KImageProxy::same (shared_ptr other) const return memcmp (_data.data().get(), jp->_data.data().get(), _data.size()) == 0; } + +J2KImageProxy::J2KImageProxy (Data data, dcp::Size size) + : _data (data) + , _size (size) +{ + +} diff --git a/src/lib/j2k_image_proxy.h b/src/lib/j2k_image_proxy.h index 666bcf9dd..bb8c216e3 100644 --- a/src/lib/j2k_image_proxy.h +++ b/src/lib/j2k_image_proxy.h @@ -51,6 +51,10 @@ public: } private: + friend struct client_server_test_j2k; + + J2KImageProxy (Data data, dcp::Size size); + Data _data; dcp::Size _size; boost::optional _eye; diff --git a/test/client_server_test.cc b/test/client_server_test.cc index 22c0f7ea8..dcd62ba96 100644 --- a/test/client_server_test.cc +++ b/test/client_server_test.cc @@ -31,6 +31,7 @@ #include "lib/dcp_video.h" #include "lib/player_video.h" #include "lib/raw_image_proxy.h" +#include "lib/j2k_image_proxy.h" #include "lib/data.h" #include "lib/server_description.h" #include "lib/file_log.h" @@ -139,7 +140,6 @@ BOOST_AUTO_TEST_CASE (client_server_test_rgb) BOOST_AUTO_TEST_CASE (client_server_test_yuv) { shared_ptr image (new Image (PIX_FMT_YUV420P, dcp::Size (1998, 1080), true)); - uint8_t* p = image->data()[0]; for (int i = 0; i < image->planes(); ++i) { uint8_t* p = image->data()[i]; @@ -149,7 +149,7 @@ BOOST_AUTO_TEST_CASE (client_server_test_yuv) } shared_ptr sub_image (new Image (PIX_FMT_RGBA, dcp::Size (100, 200), true)); - p = sub_image->data()[0]; + uint8_t* p = sub_image->data()[0]; for (int y = 0; y < 200; ++y) { uint8_t* q = p; for (int x = 0; x < 100; ++x) { @@ -216,3 +216,95 @@ BOOST_AUTO_TEST_CASE (client_server_test_yuv) delete server; } + +BOOST_AUTO_TEST_CASE (client_server_test_j2k) +{ + shared_ptr image (new Image (PIX_FMT_YUV420P, dcp::Size (1998, 1080), true)); + + for (int i = 0; i < image->planes(); ++i) { + uint8_t* p = image->data()[i]; + for (int j = 0; j < image->line_size()[i]; ++j) { + *p++ = j % 256; + } + } + + shared_ptr log (new FileLog ("build/test/client_server_test_j2k.log")); + + shared_ptr raw_pvf ( + new PlayerVideo ( + shared_ptr (new RawImageProxy (image)), + DCPTime (), + Crop (), + optional (), + dcp::Size (1998, 1080), + dcp::Size (1998, 1080), + EYES_BOTH, + PART_WHOLE, + ColourConversion () + ) + ); + + shared_ptr raw_frame ( + new DCPVideo ( + raw_pvf, + 0, + 24, + 200000000, + RESOLUTION_2K, + log + ) + ); + + Data raw_locally_encoded = raw_frame->encode_locally (boost::bind (&Log::dcp_log, log.get(), _1, _2)); + + shared_ptr j2k_pvf ( + new PlayerVideo ( + shared_ptr (new J2KImageProxy (raw_locally_encoded, dcp::Size (1998, 1080))), + DCPTime (), + Crop (), + optional (), + dcp::Size (1998, 1080), + dcp::Size (1998, 1080), + EYES_BOTH, + PART_WHOLE, + PresetColourConversion::all().front().conversion + ) + ); + + shared_ptr j2k_frame ( + new DCPVideo ( + j2k_pvf, + 0, + 24, + 200000000, + RESOLUTION_2K, + log + ) + ); + + Data j2k_locally_encoded = j2k_frame->encode_locally (boost::bind (&Log::dcp_log, log.get(), _1, _2)); + + Server* server = new Server (log, true); + + new thread (boost::bind (&Server::run, server, 2)); + + /* Let the server get itself ready */ + dcpomatic_sleep (1); + + ServerDescription description ("localhost", 2); + + list threads; + for (int i = 0; i < 8; ++i) { + threads.push_back (new thread (boost::bind (do_remote_encode, j2k_frame, description, j2k_locally_encoded))); + } + + for (list::iterator i = threads.begin(); i != threads.end(); ++i) { + (*i)->join (); + } + + for (list::iterator i = threads.begin(); i != threads.end(); ++i) { + delete *i; + } + + delete server; +}