diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-05-12 00:57:51 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-05-12 00:57:51 +0100 |
| commit | df085fc0ea4f1a3f009de5a7a5bf9f241173bcba (patch) | |
| tree | 597ff1fe90446aa684e5fede3a72217b0b5c3d1a /src/lib/video_content.cc | |
| parent | 1b576d63f5b5babda35c3995dd375e39baa16947 (diff) | |
Remove LocaleGuard and lexical_cast<> in favour of libdcp::raw_convert,
which should get things right with both decimal and thousands
separators; LocaleGuard fixed decimal separators ok but not, it appears,
thousands ones.
Diffstat (limited to 'src/lib/video_content.cc')
| -rw-r--r-- | src/lib/video_content.cc | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index b704b6447..783cddafa 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -20,6 +20,7 @@ #include <iomanip> #include <libcxml/cxml.h> #include <libdcp/colour_matrix.h> +#include <libdcp/raw_convert.h> #include "video_content.h" #include "video_examiner.h" #include "compose.hpp" @@ -45,9 +46,9 @@ using std::setprecision; using std::cout; using std::vector; using boost::shared_ptr; -using boost::lexical_cast; using boost::optional; using boost::dynamic_pointer_cast; +using libdcp::raw_convert; vector<VideoContentScale> VideoContentScale::_scales; @@ -155,15 +156,15 @@ void VideoContent::as_xml (xmlpp::Node* node) const { boost::mutex::scoped_lock lm (_mutex); - node->add_child("VideoLength")->add_child_text (lexical_cast<string> (_video_length)); - node->add_child("VideoWidth")->add_child_text (lexical_cast<string> (_video_size.width)); - node->add_child("VideoHeight")->add_child_text (lexical_cast<string> (_video_size.height)); - node->add_child("VideoFrameRate")->add_child_text (lexical_cast<string> (_video_frame_rate)); - node->add_child("VideoFrameType")->add_child_text (lexical_cast<string> (static_cast<int> (_video_frame_type))); - node->add_child("LeftCrop")->add_child_text (boost::lexical_cast<string> (_crop.left)); - node->add_child("RightCrop")->add_child_text (boost::lexical_cast<string> (_crop.right)); - node->add_child("TopCrop")->add_child_text (boost::lexical_cast<string> (_crop.top)); - node->add_child("BottomCrop")->add_child_text (boost::lexical_cast<string> (_crop.bottom)); + node->add_child("VideoLength")->add_child_text (raw_convert<string> (_video_length)); + node->add_child("VideoWidth")->add_child_text (raw_convert<string> (_video_size.width)); + node->add_child("VideoHeight")->add_child_text (raw_convert<string> (_video_size.height)); + node->add_child("VideoFrameRate")->add_child_text (raw_convert<string> (_video_frame_rate)); + node->add_child("VideoFrameType")->add_child_text (raw_convert<string> (static_cast<int> (_video_frame_type))); + node->add_child("LeftCrop")->add_child_text (raw_convert<string> (_crop.left)); + node->add_child("RightCrop")->add_child_text (raw_convert<string> (_crop.right)); + node->add_child("TopCrop")->add_child_text (raw_convert<string> (_crop.top)); + node->add_child("BottomCrop")->add_child_text (raw_convert<string> (_crop.bottom)); _scale.as_xml (node->add_child("Scale")); _colour_conversion.as_xml (node->add_child("ColourConversion")); } |
