X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fcontent.cc;h=b5bae69b684f8a57c50a94dc96803ee74571c15a;hb=234623db3306626520e06cac985eb157379eff99;hp=a56573ed28536503e4099a7bdd88c44ebb23604f;hpb=422be0eece2bf6ee80db1d3c21553cd82efff789;p=dcpomatic.git diff --git a/src/lib/content.cc b/src/lib/content.cc index a56573ed2..b5bae69b6 100644 --- a/src/lib/content.cc +++ b/src/lib/content.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2015 Carl Hetherington + Copyright (C) 2013-2016 Carl Hetherington This file is part of DCP-o-matic. @@ -25,12 +25,15 @@ #include "content.h" #include "util.h" #include "content_factory.h" +#include "video_content.h" +#include "audio_content.h" +#include "subtitle_content.h" #include "exceptions.h" #include "film.h" #include "job.h" #include "compose.hpp" -#include "raw_convert.h" -#include +#include +#include #include #include #include @@ -45,6 +48,8 @@ using std::vector; using std::max; using std::pair; using boost::shared_ptr; +using dcp::raw_convert; +using dcp::locale_convert; int const ContentProperty::PATH = 400; int const ContentProperty::POSITION = 401; @@ -133,12 +138,14 @@ Content::Content (shared_ptr film, vector > c) } void -Content::as_xml (xmlpp::Node* node) const +Content::as_xml (xmlpp::Node* node, bool with_paths) const { boost::mutex::scoped_lock lm (_mutex); - for (vector::const_iterator i = _paths.begin(); i != _paths.end(); ++i) { - node->add_child("Path")->add_child_text (i->string ()); + if (with_paths) { + for (vector::const_iterator i = _paths.begin(); i != _paths.end(); ++i) { + node->add_child("Path")->add_child_text (i->string ()); + } } node->add_child("Digest")->add_child_text (_digest); node->add_child("Position")->add_child_text (raw_convert (_position.get ())); @@ -229,7 +236,7 @@ Content::clone () const /* This is a bit naughty, but I can't think of a compelling reason not to do it ... */ xmlpp::Document doc; xmlpp::Node* node = doc.create_root_node ("Content"); - as_xml (node); + as_xml (node, true); /* notes is unused here (we assume) */ list notes; @@ -254,14 +261,12 @@ Content::length_after_trim () const string Content::identifier () const { - locked_stringstream s; - - s << Content::digest() - << "_" << position().get() - << "_" << trim_start().get() - << "_" << trim_end().get(); - - return s.str (); + char buffer[256]; + snprintf ( + buffer, sizeof(buffer), "%s_%" PRId64 "_%" PRId64 "_%" PRId64, + Content::digest().c_str(), position().get(), trim_start().get(), trim_end().get() + ); + return buffer; } bool @@ -367,7 +372,7 @@ Content::add_properties (list& p) const UserProperty ( UserProperty::VIDEO, _("Frame rate"), - raw_convert (_video_frame_rate.get(), 5), + locale_convert (_video_frame_rate.get(), 5), _("frames per second") ) ); @@ -376,10 +381,24 @@ Content::add_properties (list& p) const UserProperty ( UserProperty::GENERAL, _("Prepared for video frame rate"), - raw_convert (_video_frame_rate.get(), 5), + locale_convert (_video_frame_rate.get(), 5), _("frames per second") ) ); } } } + +void +Content::use_template (shared_ptr c) +{ + if (video && c->video) { + video->use_template (c->video); + } + if (audio && c->audio) { + audio->use_template (c->audio); + } + if (subtitle && c->subtitle) { + subtitle->use_template (c->subtitle); + } +}