X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ftext_subtitle_content.cc;h=08722a065d0f66bdfdce8e907cf0c4603b4075fa;hb=3412af70b950dcdc604413ef05c26becda6da789;hp=79a225c47f14f74d7170cdad151745553214bac8;hpb=65b331d32c383f3a9049f29bf03ab3fe3193b31a;p=dcpomatic.git diff --git a/src/lib/text_subtitle_content.cc b/src/lib/text_subtitle_content.cc index 79a225c47..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 @@ -55,11 +55,11 @@ TextSubtitleContent::examine (boost::shared_ptr job) TextSubtitle s (shared_from_this ()); /* Default to turning these subtitles on */ - subtitle->set_use_subtitles (true); + subtitle->set_use (true); 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->subtitle_video_frame_rate(), film()->video_frame_rate ()); + FrameRateChange const frc (active_video_frame_rate(), film()->video_frame_rate ()); return DCPTime (_length, frc); }