diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-01-12 17:21:41 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-01-12 17:21:41 +0000 |
| commit | dbdc438c066ee2a80943b9494e78db19905f9fa9 (patch) | |
| tree | 08daf75600719d6dd0130c596ef81d30ce4b3de3 /src/smpte_dcp_reader.cc | |
| parent | fd1d21f713e9b0abd8afebcbab36d70aac9b6cce (diff) | |
Files missed from previous commit.
Diffstat (limited to 'src/smpte_dcp_reader.cc')
| -rw-r--r-- | src/smpte_dcp_reader.cc | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/src/smpte_dcp_reader.cc b/src/smpte_dcp_reader.cc new file mode 100644 index 0000000..5999fa8 --- /dev/null +++ b/src/smpte_dcp_reader.cc @@ -0,0 +1,83 @@ +/* + Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net> + + This program 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, + 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. + +*/ + +#include "smpte_dcp_reader.h" +#include "exceptions.h" +#include "xml.h" +#include "AS_DCP.h" +#include "KM_util.h" +#include "dcp/font.h" +#include "dcp/smpte_load_font.h" +#include <libcxml/cxml.h> +#include <boost/foreach.hpp> + +using std::string; +using std::list; +using std::stringstream; +using boost::shared_ptr; +using namespace sub; + +SMPTEDCPReader::SMPTEDCPReader (boost::filesystem::path file, bool mxf) +{ + shared_ptr<cxml::Document> xml (new cxml::Document ("SubtitleReel")); + + if (mxf) { + ASDCP::TimedText::MXFReader reader; + Kumu::Result_t r = reader.OpenRead (file.string().c_str ()); + if (ASDCP_FAILURE (r)) { + boost::throw_exception (MXFError ("could not open MXF file for reading")); + } + + string s; + reader.ReadTimedTextResource (s, 0, 0); + stringstream t; + t << s; + xml->read_stream (t); + + ASDCP::WriterInfo info; + reader.FillWriterInfo (info); + + char buffer[64]; + Kumu::bin2UUIDhex (info.AssetUUID, ASDCP::UUIDlen, buffer, sizeof (buffer)); + _id = buffer; + } else { + xml->read_file (file); + _id = xml->string_child("Id").substr (9); + } + + _load_font_nodes = type_children<dcp::SMPTELoadFont> (xml, "LoadFont"); + + _timecode_rate = xml->number_child<int> ("TimeCodeRate"); + + shared_ptr<cxml::Node> subtitle_list = xml->optional_node_child ("SubtitleList"); + + list<cxml::NodePtr> f = subtitle_list->node_children ("Font"); + list<shared_ptr<dcp::Font> > font_nodes; + BOOST_FOREACH (cxml::NodePtr& i, f) { + font_nodes.push_back (shared_ptr<dcp::Font> (new dcp::Font (i, _timecode_rate))); + } + + parse_common (xml, font_nodes); +} + +int +SMPTEDCPReader::timecode_rate () const +{ + return _timecode_rate; +} |
