Hint on making Interop DCPs (#1949).
[dcpomatic.git] / src / lib / hints.h
1 /*
2     Copyright (C) 2016-2020 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "signaller.h"
22 #include "player_text.h"
23 #include "types.h"
24 #include "dcp_text_track.h"
25 #include "dcpomatic_time.h"
26 #include "weak_film.h"
27 #include <boost/signals2.hpp>
28 #include <boost/atomic.hpp>
29 #include <vector>
30 #include <string>
31
32
33 class Film;
34 class Writer;
35
36
37 class Hints : public Signaller, public ExceptionStore, public WeakConstFilm
38 {
39 public:
40         explicit Hints (std::weak_ptr<const Film> film);
41         ~Hints ();
42
43         void start ();
44
45         boost::signals2::signal<void (std::string)> Hint;
46         boost::signals2::signal<void (std::string)> Progress;
47         boost::signals2::signal<void (void)> Pulse;
48         boost::signals2::signal<void (void)> Finished;
49
50         /* For tests only */
51         void join ();
52
53 private:
54         friend struct hint_subtitle_too_early;
55
56         void thread ();
57         void hint (std::string h);
58         void text (PlayerText text, TextType type, boost::optional<DCPTextTrack> track, dcpomatic::DCPTimePeriod period);
59         void closed_caption (PlayerText text, dcpomatic::DCPTimePeriod period);
60         void open_subtitle (PlayerText text, dcpomatic::DCPTimePeriod period);
61
62         void check_interop ();
63         void check_big_font_files ();
64         void check_few_audio_channels ();
65         void check_upmixers ();
66         void check_incorrect_container ();
67         void check_unusual_container ();
68         void check_high_j2k_bandwidth ();
69         void check_frame_rate ();
70         void check_speed_up ();
71         void check_vob ();
72         void check_3d_in_2d ();
73         void check_loudness ();
74         void check_ffec_and_ffmc_in_smpte_feature ();
75         void check_out_of_range_markers ();
76
77         boost::thread _thread;
78         /** This is used to make a partial DCP containing only the subtitles and closed captions that
79          *  our final DCP will have.  This means we can see how big the files will be and warn if they
80          *  will be too big.
81          */
82         std::shared_ptr<Writer> _writer;
83
84         bool _long_ccap;
85         bool _overlap_ccap;
86         bool _too_many_ccap_lines;
87         boost::optional<dcpomatic::DCPTimePeriod> _last_ccap;
88
89         bool _early_subtitle;
90         bool _short_subtitle;
91         bool _subtitles_too_close;
92         bool _too_many_subtitle_lines;
93         bool _long_subtitle;
94         boost::optional<dcpomatic::DCPTimePeriod> _last_subtitle;
95
96         boost::atomic<bool> _stop;
97 };