diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-01-11 10:57:09 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-01-11 11:23:42 +0000 |
| commit | 04ae4d393603da286d78a72c4f60c545c03b35e8 (patch) | |
| tree | c7ce2f66a96d76408587bc22c9b88688a2c943e0 /src/dcp_reader.h | |
| parent | 586f9b90034640c82eb51d7e4573f4125a2f4ad0 (diff) | |
Replace DCP parser with basic version that uses libdcp.
Diffstat (limited to 'src/dcp_reader.h')
| -rw-r--r-- | src/dcp_reader.h | 30 |
1 files changed, 3 insertions, 27 deletions
diff --git a/src/dcp_reader.h b/src/dcp_reader.h index 82a211c..8f49dfd 100644 --- a/src/dcp_reader.h +++ b/src/dcp_reader.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net> + Copyright (C) 2014-2017 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 @@ -21,41 +21,17 @@ #define LIBSUB_DCP_READER_H #include "reader.h" -#include <libcxml/cxml.h> -#include <boost/shared_ptr.hpp> #include <boost/filesystem.hpp> namespace sub { -namespace dcp { - class Font; - class Text; - class Subtitle; -} - /** @class DCPReader * @brief A class which reads DCP subtitles. */ class DCPReader : public Reader { -protected: - - struct ParseState { - std::list<boost::shared_ptr<dcp::Font> > font_nodes; - std::list<boost::shared_ptr<dcp::Text> > text_nodes; - std::list<boost::shared_ptr<dcp::Subtitle> > subtitle_nodes; - }; - - void parse_common (cxml::NodePtr root, boost::optional<int> tcr); - - std::string _id; - -private: - void parse_node (xmlpp::Node const * node, ParseState& parse_state, boost::optional<int> tcr); - void maybe_add_subtitle (std::string text, ParseState const & parse_state); - - std::string _reel_number; - std::string _language; +public: + DCPReader (boost::filesystem::path file); }; } |
