diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-01-04 01:13:13 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-01-04 01:13:13 +0000 |
| commit | 8af00f5e0862c18e8c7b5f9ac0ea95a5d6ad696c (patch) | |
| tree | 925d0673ec1c3319a8cc85374acb14a27d555c60 /src/lib/dcp_subtitle.h | |
| parent | a5095486e606adfe36de635a48710cf98872c1c6 (diff) | |
Fix loading of SMPTE subtitles that are not MXF-wrapped.
Diffstat (limited to 'src/lib/dcp_subtitle.h')
| -rw-r--r-- | src/lib/dcp_subtitle.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/lib/dcp_subtitle.h b/src/lib/dcp_subtitle.h new file mode 100644 index 000000000..e15acca44 --- /dev/null +++ b/src/lib/dcp_subtitle.h @@ -0,0 +1,36 @@ +/* + 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. + +*/ + +#ifndef DCPOMATIC_SRC_LIB_DCP_SUBTITLE_H +#define DCPOMATIC_SRC_LIB_DCP_SUBTITLE_H + +#include <boost/shared_ptr.hpp> +#include <boost/filesystem.hpp> + +namespace dcp { + class SubtitleContent; +} + +class DCPSubtitle +{ +protected: + boost::shared_ptr<dcp::SubtitleContent> load (boost::filesystem::path) const; +}; + +#endif |
