summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-08-29 21:56:44 +0100
committerCarl Hetherington <cth@carlh.net>2013-08-29 21:56:44 +0100
commitff275e3afd1d9e3ef84b508a1a34a3211f605d5f (patch)
tree4347f64bb3ee1bcc13984a608b85f11de1c50557 /src/lib
parentda6872547733756642d97ac9cb7d0cb2629a6cd0 (diff)
Fix encoding of XML used to communicate with server.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/dcp_video_frame.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dcp_video_frame.cc b/src/lib/dcp_video_frame.cc
index b5b031292..1c812cbf2 100644
--- a/src/lib/dcp_video_frame.cc
+++ b/src/lib/dcp_video_frame.cc
@@ -272,7 +272,7 @@ DCPVideoFrame::encode_remotely (ServerDescription serv)
add_metadata (root);
stringstream xml;
- doc.write_to_stream (xml);
+ doc.write_to_stream (xml, "UTF-8");
_log->log (String::compose (
N_("Sending to remote; pixel format %1, components %2, lines (%3,%4,%5), line sizes (%6,%7,%8)"),