summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-09-23 14:47:45 +0100
committerCarl Hetherington <cth@carlh.net>2012-09-23 14:47:45 +0100
commit794e306a0f5b16cbb49ef9e75e1b9fb88c489b31 (patch)
tree40fbb3a6bbfce0c2c7089935bcc56e1496d6d196 /src/lib
parent70c67b4f762e111ce4f91660898544b601adf1ac (diff)
Bump timeouts a bit.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/dcp_video_frame.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/dcp_video_frame.cc b/src/lib/dcp_video_frame.cc
index ade615bfb..d202109d0 100644
--- a/src/lib/dcp_video_frame.cc
+++ b/src/lib/dcp_video_frame.cc
@@ -325,10 +325,10 @@ DCPVideoFrame::encode_remotely (ServerDescription const * serv)
s << _input->line_size()[i] << " ";
}
- wrapper.write ((uint8_t *) s.str().c_str(), s.str().length() + 1, 10);
+ wrapper.write ((uint8_t *) s.str().c_str(), s.str().length() + 1, 30);
for (int i = 0; i < _input->components(); ++i) {
- wrapper.write (_input->data()[i], _input->line_size()[i] * _input->lines(i), 10);
+ wrapper.write (_input->data()[i], _input->line_size()[i] * _input->lines(i), 30);
}
char buffer[32];