X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ftext_subtitle_content.cc;h=08722a065d0f66bdfdce8e907cf0c4603b4075fa;hb=c180f317d5a8b27dd191c1f2228ceb6fc4039393;hp=0ad41114eb6f52e13490ba7c7dbc8777cb604385;hpb=2d5beb0d6794df13ad1df47e84fd7a57d1d1c64d;p=dcpomatic.git diff --git a/src/lib/text_subtitle_content.cc b/src/lib/text_subtitle_content.cc index 0ad41114e..08722a065 100644 --- a/src/lib/text_subtitle_content.cc +++ b/src/lib/text_subtitle_content.cc @@ -1,19 +1,20 @@ /* Copyright (C) 2014-2016 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ @@ -22,8 +23,8 @@ #include "text_subtitle.h" #include "film.h" #include "font.h" -#include "raw_convert.h" #include "subtitle_content.h" +#include #include #include @@ -32,20 +33,19 @@ using std::string; using std::cout; using boost::shared_ptr; - -std::string const TextSubtitleContent::font_id = "font"; +using dcp::raw_convert; TextSubtitleContent::TextSubtitleContent (shared_ptr film, boost::filesystem::path path) : Content (film, path) { - subtitle.reset (new SubtitleContent (this, film)); + subtitle.reset (new SubtitleContent (this)); } TextSubtitleContent::TextSubtitleContent (shared_ptr film, cxml::ConstNodePtr node, int version) : Content (film, node) , _length (node->number_child ("Length")) { - subtitle.reset (new SubtitleContent (this, film, node, version)); + subtitle = SubtitleContent::from_xml (this, node, version); } void @@ -59,7 +59,7 @@ TextSubtitleContent::examine (boost::shared_ptr job) boost::mutex::scoped_lock lm (_mutex); _length = s.length (); - subtitle->add_font (shared_ptr (new Font (font_id))); + subtitle->add_font (shared_ptr (new Font (TEXT_FONT_ID))); } string @@ -75,17 +75,21 @@ TextSubtitleContent::technical_summary () const } void -TextSubtitleContent::as_xml (xmlpp::Node* node) const +TextSubtitleContent::as_xml (xmlpp::Node* node, bool with_paths) const { node->add_child("Type")->add_child_text ("TextSubtitle"); - Content::as_xml (node); - subtitle->as_xml (node); + Content::as_xml (node, with_paths); + + if (subtitle) { + subtitle->as_xml (node); + } + node->add_child("Length")->add_child_text (raw_convert (_length.get ())); } DCPTime TextSubtitleContent::full_length () const { - FrameRateChange const frc (subtitle->video_frame_rate(), film()->video_frame_rate ()); + FrameRateChange const frc (active_video_frame_rate(), film()->video_frame_rate ()); return DCPTime (_length, frc); }