Make subs work again (sort of).
[dcpomatic.git] / src / lib / film.h
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file  src/film.h
21  *  @brief A representation of some audio and video content, and details of
22  *  how they should be presented in a DCP.
23  */
24
25 #ifndef DVDOMATIC_FILM_H
26 #define DVDOMATIC_FILM_H
27
28 #include <string>
29 #include <vector>
30 #include <inttypes.h>
31 #include <boost/thread/mutex.hpp>
32 #include <boost/thread.hpp>
33 #include <boost/signals2.hpp>
34 #include <boost/enable_shared_from_this.hpp>
35 extern "C" {
36 #include <libavcodec/avcodec.h>
37 }
38 #include "dcp_content_type.h"
39 #include "util.h"
40 #include "dci_metadata.h"
41 #include "types.h"
42 #include "ffmpeg_content.h"
43
44 class Format;
45 class Job;
46 class Filter;
47 class Log;
48 class ExamineContentJob;
49 class AnalyseAudioJob;
50 class ExternalAudioStream;
51 class Content;
52 class Player;
53 class Playlist;
54
55 /** @class Film
56  *  @brief A representation of some audio and video content, and details of
57  *  how they should be presented in a DCP.
58  */
59 class Film : public boost::enable_shared_from_this<Film>
60 {
61 public:
62         Film (std::string d, bool must_exist = true);
63         Film (Film const &);
64
65         std::string info_dir () const;
66         std::string j2c_path (int f, bool t) const;
67         std::string info_path (int f) const;
68         std::string video_mxf_dir () const;
69         std::string video_mxf_filename () const;
70         std::string audio_analysis_path () const;
71
72         void examine_content (boost::shared_ptr<Content>);
73         void analyse_audio ();
74         void send_dcp_to_tms ();
75         void make_dcp ();
76
77         /** @return Logger.
78          *  It is safe to call this from any thread.
79          */
80         boost::shared_ptr<Log> log () const {
81                 return _log;
82         }
83
84         int encoded_frames () const;
85         
86         std::string file (std::string f) const;
87         std::string dir (std::string d) const;
88
89         int target_audio_sample_rate () const;
90         
91         void write_metadata () const;
92
93         libdcp::Size cropped_size (libdcp::Size) const;
94         std::string dci_name (bool if_created_now) const;
95         std::string dcp_name (bool if_created_now = false) const;
96
97         /** @return true if our state has changed since we last saved it */
98         bool dirty () const {
99                 return _dirty;
100         }
101
102         bool have_dcp () const;
103
104         boost::shared_ptr<Player> player () const;
105
106         /* Proxies for some Playlist methods */
107
108         ContentAudioFrame audio_length () const;
109         int audio_channels () const;
110         int audio_frame_rate () const;
111         int64_t audio_channel_layout () const;
112         bool has_audio () const;
113         
114         float video_frame_rate () const;
115         libdcp::Size video_size () const;
116         ContentVideoFrame video_length () const;        
117
118         std::vector<FFmpegSubtitleStream> ffmpeg_subtitle_streams () const;
119         boost::optional<FFmpegSubtitleStream> ffmpeg_subtitle_stream () const;
120         std::vector<FFmpegAudioStream> ffmpeg_audio_streams () const;
121         boost::optional<FFmpegAudioStream> ffmpeg_audio_stream () const;
122         
123         /** Identifiers for the parts of our state;
124             used for signalling changes.
125         */
126         enum Property {
127                 NONE,
128                 NAME,
129                 USE_DCI_NAME,
130                 TRUST_CONTENT_HEADERS,
131                 /** The content list has changed (i.e. content has been added, moved around or removed) */
132                 CONTENT,
133                 DCP_CONTENT_TYPE,
134                 FORMAT,
135                 CROP,
136                 FILTERS,
137                 SCALER,
138                 TRIM_START,
139                 TRIM_END,
140                 AB,
141                 AUDIO_GAIN,
142                 AUDIO_DELAY,
143                 WITH_SUBTITLES,
144                 SUBTITLE_OFFSET,
145                 SUBTITLE_SCALE,
146                 COLOUR_LUT,
147                 J2K_BANDWIDTH,
148                 DCI_METADATA,
149                 DCP_FRAME_RATE
150         };
151
152
153         /* GET */
154
155         std::string directory () const {
156                 boost::mutex::scoped_lock lm (_directory_mutex);
157                 return _directory;
158         }
159
160         std::string name () const {
161                 boost::mutex::scoped_lock lm (_state_mutex);
162                 return _name;
163         }
164
165         bool use_dci_name () const {
166                 boost::mutex::scoped_lock lm (_state_mutex);
167                 return _use_dci_name;
168         }
169
170         bool trust_content_headers () const {
171                 boost::mutex::scoped_lock lm (_state_mutex);
172                 return _trust_content_headers;
173         }
174
175         ContentList content () const {
176                 boost::mutex::scoped_lock lm (_state_mutex);
177                 return _content;
178         }
179
180         DCPContentType const * dcp_content_type () const {
181                 boost::mutex::scoped_lock lm (_state_mutex);
182                 return _dcp_content_type;
183         }
184
185         Format const * format () const {
186                 boost::mutex::scoped_lock lm (_state_mutex);
187                 return _format;
188         }
189
190         Crop crop () const {
191                 boost::mutex::scoped_lock lm (_state_mutex);
192                 return _crop;
193         }
194
195         std::vector<Filter const *> filters () const {
196                 boost::mutex::scoped_lock lm (_state_mutex);
197                 return _filters;
198         }
199
200         Scaler const * scaler () const {
201                 boost::mutex::scoped_lock lm (_state_mutex);
202                 return _scaler;
203         }
204
205         int trim_start () const {
206                 boost::mutex::scoped_lock lm (_state_mutex);
207                 return _trim_start;
208         }
209
210         int trim_end () const {
211                 boost::mutex::scoped_lock lm (_state_mutex);
212                 return _trim_end;
213         }
214
215         bool ab () const {
216                 boost::mutex::scoped_lock lm (_state_mutex);
217                 return _ab;
218         }
219
220         float audio_gain () const {
221                 boost::mutex::scoped_lock lm (_state_mutex);
222                 return _audio_gain;
223         }
224
225         int audio_delay () const {
226                 boost::mutex::scoped_lock lm (_state_mutex);
227                 return _audio_delay;
228         }
229
230         bool with_subtitles () const {
231                 boost::mutex::scoped_lock lm (_state_mutex);
232                 return _with_subtitles;
233         }
234
235         int subtitle_offset () const {
236                 boost::mutex::scoped_lock lm (_state_mutex);
237                 return _subtitle_offset;
238         }
239
240         float subtitle_scale () const {
241                 boost::mutex::scoped_lock lm (_state_mutex);
242                 return _subtitle_scale;
243         }
244
245         int colour_lut () const {
246                 boost::mutex::scoped_lock lm (_state_mutex);
247                 return _colour_lut;
248         }
249
250         int j2k_bandwidth () const {
251                 boost::mutex::scoped_lock lm (_state_mutex);
252                 return _j2k_bandwidth;
253         }
254
255         DCIMetadata dci_metadata () const {
256                 boost::mutex::scoped_lock lm (_state_mutex);
257                 return _dci_metadata;
258         }
259
260         int dcp_frame_rate () const {
261                 boost::mutex::scoped_lock lm (_state_mutex);
262                 return _dcp_frame_rate;
263         }
264
265         /* SET */
266
267         void set_directory (std::string);
268         void set_name (std::string);
269         void set_use_dci_name (bool);
270         void set_trust_content_headers (bool);
271         void add_content (boost::shared_ptr<Content>);
272         void remove_content (boost::shared_ptr<Content>);
273         void move_content_earlier (boost::shared_ptr<Content>);
274         void move_content_later (boost::shared_ptr<Content>);
275         void set_dcp_content_type (DCPContentType const *);
276         void set_format (Format const *);
277         void set_crop (Crop);
278         void set_left_crop (int);
279         void set_right_crop (int);
280         void set_top_crop (int);
281         void set_bottom_crop (int);
282         void set_filters (std::vector<Filter const *>);
283         void set_scaler (Scaler const *);
284         void set_trim_start (int);
285         void set_trim_end (int);
286         void set_ab (bool);
287         void set_audio_gain (float);
288         void set_audio_delay (int);
289         void set_with_subtitles (bool);
290         void set_subtitle_offset (int);
291         void set_subtitle_scale (float);
292         void set_colour_lut (int);
293         void set_j2k_bandwidth (int);
294         void set_dci_metadata (DCIMetadata);
295         void set_dcp_frame_rate (int);
296         void set_dci_date_today ();
297
298         /** Emitted when some property has of the Film has changed */
299         mutable boost::signals2::signal<void (Property)> Changed;
300
301         /** Emitted when some property of our content has changed */
302         mutable boost::signals2::signal<void (int)> ContentChanged;
303
304         boost::signals2::signal<void ()> AudioAnalysisSucceeded;
305
306         /** Current version number of the state file */
307         static int const state_version;
308
309 private:
310         
311         void signal_changed (Property);
312         void analyse_audio_finished ();
313         std::string video_state_identifier () const;
314         void read_metadata ();
315         void content_changed (int);
316
317         /** Log to write to */
318         boost::shared_ptr<Log> _log;
319         /** Any running AnalyseAudioJob, or 0 */
320         boost::shared_ptr<AnalyseAudioJob> _analyse_audio_job;
321         boost::shared_ptr<Playlist> _playlist;
322
323         /** Complete path to directory containing the film metadata;
324          *  must not be relative.
325          */
326         std::string _directory;
327         /** Mutex for _directory */
328         mutable boost::mutex _directory_mutex;
329         
330         /** Name for DVD-o-matic */
331         std::string _name;
332         /** True if a auto-generated DCI-compliant name should be used for our DCP */
333         bool _use_dci_name;
334         bool _trust_content_headers;
335         ContentList _content;
336         std::list<boost::signals2::connection> _content_connections;
337         /** The type of content that this Film represents (feature, trailer etc.) */
338         DCPContentType const * _dcp_content_type;
339         /** The format to present this Film in (flat, scope, etc.) */
340         Format const * _format;
341         /** The crop to apply to the source */
342         Crop _crop;
343         /** Video filters that should be used when generating DCPs */
344         std::vector<Filter const *> _filters;
345         /** Scaler algorithm to use */
346         Scaler const * _scaler;
347         /** Frames to trim off the start of the DCP */
348         int _trim_start;
349         /** Frames to trim off the end of the DCP */
350         int _trim_end;
351         /** true to create an A/B comparison DCP, where the left half of the image
352             is the video without any filters or post-processing, and the right half
353             has the specified filters and post-processing.
354         */
355         bool _ab;
356         /** Gain to apply to audio in dB */
357         float _audio_gain;
358         /** Delay to apply to audio (positive moves audio later) in milliseconds */
359         int _audio_delay;
360         /** True if subtitles should be shown for this film */
361         bool _with_subtitles;
362         /** y offset for placing subtitles, in source pixels; +ve is further down
363             the frame, -ve is further up.
364         */
365         int _subtitle_offset;
366         /** scale factor to apply to subtitles */
367         float _subtitle_scale;
368         /** index of colour LUT to use when converting RGB to XYZ.
369          *  0: sRGB
370          *  1: Rec 709
371          */
372         int _colour_lut;
373         /** bandwidth for J2K files in bits per second */
374         int _j2k_bandwidth;
375         /** DCI naming stuff */
376         DCIMetadata _dci_metadata;
377         /** Frames per second to run our DCP at */
378         int _dcp_frame_rate;
379         /** The date that we should use in a DCI name */
380         boost::gregorian::date _dci_date;
381
382         /** true if our state has changed since we last saved it */
383         mutable bool _dirty;
384
385         /** Mutex for all state except _directory */
386         mutable boost::mutex _state_mutex;
387
388         friend class paths_test;
389         friend class film_metadata_test;
390 };
391
392 #endif