X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdcp_video.cc;h=b94093d3860a08fb62c4f9a6c73014c631282ccb;hb=aa7edc3114fa3b7868088a9f8f22b5ee195a8668;hp=7610e6c9f43a5e1dda8643c8ad5f850ec5e1c67b;hpb=78bc6f9286864052b304a1871739479c16e393dd;p=dcpomatic.git diff --git a/src/lib/dcp_video.cc b/src/lib/dcp_video.cc index 7610e6c9f..b94093d38 100644 --- a/src/lib/dcp_video.cc +++ b/src/lib/dcp_video.cc @@ -31,7 +31,7 @@ #include "dcp_video.h" #include "config.h" #include "exceptions.h" -#include "server.h" +#include "server_description.h" #include "dcpomatic_socket.h" #include "image.h" #include "log.h" @@ -39,34 +39,27 @@ #include "player_video.h" #include "raw_convert.h" #include "data.h" +#include "compose.hpp" #include #include #include #include -#include +#include #include -#include -#include +#include #include -#include -#include -#include -#include #include #include -#include -#include -#include -#define LOG_GENERAL(...) _log->log (String::compose (__VA_ARGS__), Log::TYPE_GENERAL); -#define LOG_DEBUG_ENCODE(...) _log->log (String::compose (__VA_ARGS__), Log::TYPE_DEBUG_ENCODE); +#define LOG_GENERAL(...) _log->log (String::compose (__VA_ARGS__), LogEntry::TYPE_GENERAL); +#define LOG_DEBUG_ENCODE(...) _log->log (String::compose (__VA_ARGS__), LogEntry::TYPE_DEBUG_ENCODE); +#define LOG_TIMING(...) _log->log (String::compose (__VA_ARGS__), LogEntry::TYPE_TIMING); #include "i18n.h" using std::string; using std::cout; using boost::shared_ptr; -using boost::lexical_cast; using dcp::Size; #define DCI_COEFFICENT (48.0 / 52.37) @@ -100,27 +93,35 @@ DCPVideo::DCPVideo (shared_ptr frame, shared_ptroptional_number_child("Resolution").get_value_or (RESOLUTION_2K)); } -/** J2K-encode this frame on the local host. - * @return Encoded data. - */ -Data -DCPVideo::encode_locally (dcp::NoteHandler note) +shared_ptr +DCPVideo::convert_to_xyz (shared_ptr frame, dcp::NoteHandler note) { shared_ptr xyz; - shared_ptr image = _frame->image (AV_PIX_FMT_RGB48LE, note); - if (_frame->colour_conversion()) { + shared_ptr image = frame->image (note); + if (frame->colour_conversion()) { xyz = dcp::rgb_to_xyz ( image->data()[0], image->size(), image->stride()[0], - _frame->colour_conversion().get(), + frame->colour_conversion().get(), note ); } else { xyz = dcp::xyz_to_xyz (image->data()[0], image->size(), image->stride()[0]); } + return xyz; +} + +/** J2K-encode this frame on the local host. + * @return Encoded data. + */ +Data +DCPVideo::encode_locally (dcp::NoteHandler note) +{ + shared_ptr xyz = convert_to_xyz (_frame, note); + /* Set the max image and component sizes based on frame_rate */ int max_cs_len = ((float) _j2k_bandwidth) / 8 / _frames_per_second; if (_frame->eyes() == EYES_LEFT || _frame->eyes() == EYES_RIGHT) { @@ -275,13 +276,17 @@ DCPVideo::encode_remotely (ServerDescription serv) socket->write ((uint8_t *) xml.c_str(), xml.length() + 1); /* Send binary data */ + LOG_TIMING("start-remote-send thread=%1", boost::this_thread::get_id()); _frame->send_binary (socket); /* Read the response (JPEG2000-encoded data); this blocks until the data is ready and sent back. */ + LOG_TIMING("start-remote-encode thread=%1", boost::this_thread::get_id ()); Data e (socket->read_uint32 ()); + LOG_TIMING("start-remote-receive thread=%1", boost::this_thread::get_id ()); socket->read (e.data().get(), e.size()); + LOG_TIMING("finish-remote-receive thread=%1", boost::this_thread::get_id ()); LOG_DEBUG_ENCODE (N_("Finished remotely-encoded frame %1"), _index);