summaryrefslogtreecommitdiff
path: root/src/reader_factory.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-12-16 00:23:24 +0000
committerCarl Hetherington <cth@carlh.net>2014-12-16 00:23:24 +0000
commit19b5ac5e09e204a9c22daff460f3cbb2137d265b (patch)
treedade81e56e3ad9934686c650eef23f92d3111211 /src/reader_factory.h
parenta49e1c2df1568391651344ae368c53f76d504571 (diff)
Use libdcp for DCP subtitle parsing so that we get support for MXF-wrapped SMPTE subtitles.
Diffstat (limited to 'src/reader_factory.h')
-rw-r--r--src/reader_factory.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/reader_factory.h b/src/reader_factory.h
index c12a475..e7c349b 100644
--- a/src/reader_factory.h
+++ b/src/reader_factory.h
@@ -18,12 +18,13 @@
*/
#include <boost/shared_ptr.hpp>
+#include <boost/filesystem.hpp>
namespace sub {
class Reader;
extern boost::shared_ptr<Reader>
-reader_factory (std::string);
+reader_factory (boost::filesystem::path);
}