diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-04-10 00:23:35 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-04-10 00:23:35 +0200 |
| commit | 3a141d70f95dc447644197832f56c04e83cd49cb (patch) | |
| tree | a32a22fe341db1706ba82a340be9447fc82aeb79 /src/lib/hints.h | |
| parent | 0f8227817cfde6079c28fb18bbab11d9105d2bfc (diff) | |
Add a hint about >79 length subtitles.
Diffstat (limited to 'src/lib/hints.h')
| -rw-r--r-- | src/lib/hints.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/lib/hints.h b/src/lib/hints.h index a7e476b2c..c692f6fca 100644 --- a/src/lib/hints.h +++ b/src/lib/hints.h @@ -83,16 +83,17 @@ private: */ std::shared_ptr<Writer> _writer; - bool _long_ccap; - bool _overlap_ccap; - bool _too_many_ccap_lines; + bool _long_ccap = false; + bool _overlap_ccap = false; + bool _too_many_ccap_lines = false; boost::optional<dcpomatic::DCPTimePeriod> _last_ccap; - bool _early_subtitle; - bool _short_subtitle; - bool _subtitles_too_close; - bool _too_many_subtitle_lines; - bool _long_subtitle; + bool _early_subtitle = false; + bool _short_subtitle = false; + bool _subtitles_too_close = false; + bool _too_many_subtitle_lines = false; + bool _long_subtitle = false; + bool _very_long_subtitle = false; boost::optional<dcpomatic::DCPTimePeriod> _last_subtitle; boost::atomic<bool> _stop; |
