summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-08-19 11:58:21 +0100
committerCarl Hetherington <cth@carlh.net>2015-08-19 11:58:21 +0100
commita7971193b2fdbac8adb58d3eecf9ba48643cf93f (patch)
treebb7930f0f04271269b4aedb6a6373c08d74a837c /src
parent30d1ece08b080010ac8256a655f2b629fa0bda7f (diff)
More timing tweaks.
Diffstat (limited to 'src')
-rw-r--r--src/lib/dcp_video.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/dcp_video.cc b/src/lib/dcp_video.cc
index 7d060b30d..f4c6222e2 100644
--- a/src/lib/dcp_video.cc
+++ b/src/lib/dcp_video.cc
@@ -268,15 +268,15 @@ DCPVideo::encode_remotely (ServerDescription serv)
/* Send binary data */
LOG_TIMING("start-remote-send thread=%1", boost::this_thread::get_id());
_frame->send_binary (socket);
- LOG_TIMING("finish-remote-send thread=%1", boost::this_thread::get_id());
/* Read the response (JPEG2000-encoded data); this blocks until the data
is ready and sent back.
*/
- LOG_TIMING("start-remote-encode-and-receive thread=%1", boost::this_thread::get_id ());
+ 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-encode-and-receive thread=%1", boost::this_thread::get_id ());
+ LOG_TIMING("finish-remote-receive thread=%1", boost::this_thread::get_id ());
LOG_DEBUG_ENCODE (N_("Finished remotely-encoded frame %1"), _index);