diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-01-11 16:46:12 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-01-11 16:46:12 +0000 |
| commit | 6649b8c96ebaa04cd3596387c24e9567504fd2a3 (patch) | |
| tree | 7bd4a2d48cf34a3f71beba06ab7c3f4166c6d660 /src/lib/writer.cc | |
| parent | 5ee4ac547e22fd9e4aadc35617ca43d02667ccb1 (diff) | |
Fix call to dcp::Time constructor.
Diffstat (limited to 'src/lib/writer.cc')
| -rw-r--r-- | src/lib/writer.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/writer.cc b/src/lib/writer.cc index 164b2cd82..7740c6936 100644 --- a/src/lib/writer.cc +++ b/src/lib/writer.cc @@ -648,6 +648,8 @@ Writer::write (PlayerSubtitles subs) if (subs.text.empty ()) { return; } + + cout << "write " << subs.text.size() << " " << subs.from << " " << subs.to << "\n"; if (!_subtitle_content) { _subtitle_content.reset (new dcp::InteropSubtitleContent (_film->name(), _film->subtitle_language ())); |
