diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-12-15 13:59:15 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-12-15 13:59:15 +0000 |
| commit | 784b55d18f4bddddd49fdb62475638336dcdcb21 (patch) | |
| tree | d19dabb2c09861559209e7831c190a882e7b5354 /src/lib/dcp_subtitle_decoder.cc | |
| parent | 3ea29cc912632a74116b42f3f14a018e265722e9 (diff) | |
Modify for new libdcp API.
Diffstat (limited to 'src/lib/dcp_subtitle_decoder.cc')
| -rw-r--r-- | src/lib/dcp_subtitle_decoder.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/dcp_subtitle_decoder.cc b/src/lib/dcp_subtitle_decoder.cc index f61c69a7b..2a9b52869 100644 --- a/src/lib/dcp_subtitle_decoder.cc +++ b/src/lib/dcp_subtitle_decoder.cc @@ -19,7 +19,7 @@ #include "dcp_subtitle_decoder.h" #include "dcp_subtitle_content.h" -#include <dcp/subtitle_content.h> +#include <dcp/interop_subtitle_content.h> using std::list; using std::cout; @@ -28,7 +28,7 @@ using boost::shared_ptr; DCPSubtitleDecoder::DCPSubtitleDecoder (shared_ptr<const DCPSubtitleContent> content) : SubtitleDecoder (content) { - dcp::SubtitleContent c (content->path (0), false); + dcp::InteropSubtitleContent c (content->path (0)); _subtitles = c.subtitles (); _next = _subtitles.begin (); } |
