Merge master.
[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 a piece of video (with sound), including naming,
22  *  the source content file, and how it 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 "stream.h"
41 #include "dci_metadata.h"
42
43 class Format;
44 class Job;
45 class Filter;
46 class Log;
47 class ExamineContentJob;
48 class AnalyseAudioJob;
49 class ExternalAudioStream;
50
51 /** @class Film
52  *  @brief A representation of a video, maybe with sound.
53  *
54  *  A representation of a piece of video (maybe with sound), including naming,
55  *  the source content file, and how it should be presented in a DCP.
56  */
57 class Film : public boost::enable_shared_from_this<Film>
58 {
59 public:
60         Film (std::string d, bool must_exist = true);
61         Film (Film const &);
62         ~Film ();
63
64         std::string info_dir () const;
65         std::string j2c_path (int f, bool t) const;
66         std::string info_path (int f) const;
67         std::string video_mxf_dir () const;
68         std::string video_mxf_filename () const;
69         std::string audio_analysis_path () const;
70
71         void examine_content ();
72         void analyse_audio ();
73         void send_dcp_to_tms ();
74
75         void make_dcp ();
76
77         /** @return Logger.
78          *  It is safe to call this from any thread.
79          */
80         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         std::string content_path () const;
90         ContentType content_type () const;
91         
92         int target_audio_sample_rate () const;
93         
94         void write_metadata () const;
95         void read_metadata ();
96
97         libdcp::Size cropped_size (libdcp::Size) const;
98         std::string dci_name (bool if_created_now) const;
99         std::string dcp_name (bool if_created_now = false) const;
100
101         boost::optional<int> dcp_intrinsic_duration () const {
102                 return _dcp_intrinsic_duration;
103         }
104
105         /** @return true if our state has changed since we last saved it */
106         bool dirty () const {
107                 return _dirty;
108         }
109
110         int audio_channels () const;
111
112         void set_dci_date_today ();
113
114         bool have_dcp () const;
115
116         /** Identifiers for the parts of our state;
117             used for signalling changes.
118         */
119         enum Property {
120                 NONE,
121                 NAME,
122                 USE_DCI_NAME,
123                 CONTENT,
124                 TRUST_CONTENT_HEADER,
125                 DCP_CONTENT_TYPE,
126                 FORMAT,
127                 CROP,
128                 FILTERS,
129                 SCALER,
130                 TRIM_START,
131                 TRIM_END,
132                 DCP_AB,
133                 CONTENT_AUDIO_STREAM,
134                 EXTERNAL_AUDIO,
135                 USE_CONTENT_AUDIO,
136                 AUDIO_GAIN,
137                 AUDIO_DELAY,
138                 STILL_DURATION,
139                 SUBTITLE_STREAM,
140                 WITH_SUBTITLES,
141                 SUBTITLE_OFFSET,
142                 SUBTITLE_SCALE,
143                 COLOUR_LUT,
144                 J2K_BANDWIDTH,
145                 DCI_METADATA,
146                 SIZE,
147                 LENGTH,
148                 DCP_INTRINSIC_DURATION,
149                 CONTENT_AUDIO_STREAMS,
150                 SUBTITLE_STREAMS,
151                 SOURCE_FRAME_RATE,
152                 DCP_FRAME_RATE
153         };
154
155
156         /* GET */
157
158         std::string directory () const {
159                 boost::mutex::scoped_lock lm (_directory_mutex);
160                 return _directory;
161         }
162
163         std::string name () const {
164                 boost::mutex::scoped_lock lm (_state_mutex);
165                 return _name;
166         }
167
168         bool use_dci_name () const {
169                 boost::mutex::scoped_lock lm (_state_mutex);
170                 return _use_dci_name;
171         }
172
173         std::string content () const {
174                 boost::mutex::scoped_lock lm (_state_mutex);
175                 return _content;
176         }
177
178         bool trust_content_header () const {
179                 boost::mutex::scoped_lock lm (_state_mutex);
180                 return _trust_content_header;
181         }
182
183         DCPContentType const * dcp_content_type () const {
184                 boost::mutex::scoped_lock lm (_state_mutex);
185                 return _dcp_content_type;
186         }
187
188         Format const * format () const {
189                 boost::mutex::scoped_lock lm (_state_mutex);
190                 return _format;
191         }
192
193         Crop crop () const {
194                 boost::mutex::scoped_lock lm (_state_mutex);
195                 return _crop;
196         }
197
198         std::vector<Filter const *> filters () const {
199                 boost::mutex::scoped_lock lm (_state_mutex);
200                 return _filters;
201         }
202
203         Scaler const * scaler () const {
204                 boost::mutex::scoped_lock lm (_state_mutex);
205                 return _scaler;
206         }
207
208         int trim_start () const {
209                 boost::mutex::scoped_lock lm (_state_mutex);
210                 return _trim_start;
211         }
212
213         int trim_end () const {
214                 boost::mutex::scoped_lock lm (_state_mutex);
215                 return _trim_end;
216         }
217
218         bool dcp_ab () const {
219                 boost::mutex::scoped_lock lm (_state_mutex);
220                 return _dcp_ab;
221         }
222
223         boost::shared_ptr<AudioStream> content_audio_stream () const {
224                 boost::mutex::scoped_lock lm (_state_mutex);
225                 return _content_audio_stream;
226         }
227
228         std::vector<std::string> external_audio () const {
229                 boost::mutex::scoped_lock lm (_state_mutex);
230                 return _external_audio;
231         }
232
233         bool use_content_audio () const {
234                 boost::mutex::scoped_lock lm (_state_mutex);
235                 return _use_content_audio;
236         }
237         
238         float audio_gain () const {
239                 boost::mutex::scoped_lock lm (_state_mutex);
240                 return _audio_gain;
241         }
242
243         int audio_delay () const {
244                 boost::mutex::scoped_lock lm (_state_mutex);
245                 return _audio_delay;
246         }
247
248         int still_duration () const {
249                 boost::mutex::scoped_lock lm (_state_mutex);
250                 return _still_duration;
251         }
252
253         int still_duration_in_frames () const;
254
255         boost::shared_ptr<SubtitleStream> subtitle_stream () const {
256                 boost::mutex::scoped_lock lm (_state_mutex);
257                 return _subtitle_stream;
258         }
259
260         bool with_subtitles () const {
261                 boost::mutex::scoped_lock lm (_state_mutex);
262                 return _with_subtitles;
263         }
264
265         int subtitle_offset () const {
266                 boost::mutex::scoped_lock lm (_state_mutex);
267                 return _subtitle_offset;
268         }
269
270         float subtitle_scale () const {
271                 boost::mutex::scoped_lock lm (_state_mutex);
272                 return _subtitle_scale;
273         }
274
275         int colour_lut () const {
276                 boost::mutex::scoped_lock lm (_state_mutex);
277                 return _colour_lut;
278         }
279
280         int j2k_bandwidth () const {
281                 boost::mutex::scoped_lock lm (_state_mutex);
282                 return _j2k_bandwidth;
283         }
284
285         DCIMetadata dci_metadata () const {
286                 boost::mutex::scoped_lock lm (_state_mutex);
287                 return _dci_metadata;
288         }
289
290         int dcp_frame_rate () const {
291                 boost::mutex::scoped_lock lm (_state_mutex);
292                 return _dcp_frame_rate;
293         }
294         
295         libdcp::Size size () const {
296                 boost::mutex::scoped_lock lm (_state_mutex);
297                 return _size;
298         }
299
300         boost::optional<SourceFrame> length () const {
301                 boost::mutex::scoped_lock lm (_state_mutex);
302                 return _length;
303         }
304         
305         std::string content_digest () const {
306                 boost::mutex::scoped_lock lm (_state_mutex);
307                 return _content_digest;
308         }
309         
310         std::vector<boost::shared_ptr<AudioStream> > content_audio_streams () const {
311                 boost::mutex::scoped_lock lm (_state_mutex);
312                 return _content_audio_streams;
313         }
314
315         std::vector<boost::shared_ptr<SubtitleStream> > subtitle_streams () const {
316                 boost::mutex::scoped_lock lm (_state_mutex);
317                 return _subtitle_streams;
318         }
319         
320         float source_frame_rate () const {
321                 boost::mutex::scoped_lock lm (_state_mutex);
322                 if (content_type() == STILL) {
323                         return 24;
324                 }
325                 
326                 return _source_frame_rate;
327         }
328
329         boost::shared_ptr<AudioStream> audio_stream () const;
330
331         
332         /* SET */
333
334         void set_directory (std::string);
335         void set_name (std::string);
336         void set_use_dci_name (bool);
337         void set_content (std::string);
338         void set_trust_content_header (bool);
339         void set_dcp_content_type (DCPContentType const *);
340         void set_format (Format const *);
341         void set_crop (Crop);
342         void set_left_crop (int);
343         void set_right_crop (int);
344         void set_top_crop (int);
345         void set_bottom_crop (int);
346         void set_filters (std::vector<Filter const *>);
347         void set_scaler (Scaler const *);
348         void set_trim_start (int);
349         void set_trim_end (int);
350         void set_dcp_ab (bool);
351         void set_content_audio_stream (boost::shared_ptr<AudioStream>);
352         void set_external_audio (std::vector<std::string>);
353         void set_use_content_audio (bool);
354         void set_audio_gain (float);
355         void set_audio_delay (int);
356         void set_still_duration (int);
357         void set_subtitle_stream (boost::shared_ptr<SubtitleStream>);
358         void set_with_subtitles (bool);
359         void set_subtitle_offset (int);
360         void set_subtitle_scale (float);
361         void set_colour_lut (int);
362         void set_j2k_bandwidth (int);
363         void set_dci_metadata (DCIMetadata);
364         void set_dcp_frame_rate (int);
365         void set_size (libdcp::Size);
366         void set_length (SourceFrame);
367         void unset_length ();
368         void set_dcp_intrinsic_duration (int);
369         void set_content_digest (std::string);
370         void set_content_audio_streams (std::vector<boost::shared_ptr<AudioStream> >);
371         void set_subtitle_streams (std::vector<boost::shared_ptr<SubtitleStream> >);
372         void set_source_frame_rate (float);
373
374         /** Emitted when some property has changed */
375         mutable boost::signals2::signal<void (Property)> Changed;
376
377         boost::signals2::signal<void ()> AudioAnalysisFinished;
378
379         /** Current version number of the state file */
380         static int const state_version;
381
382 private:
383         
384         /** Log to write to */
385         Log* _log;
386
387         /** Any running ExamineContentJob, or 0 */
388         boost::shared_ptr<ExamineContentJob> _examine_content_job;
389         /** Any running AnalyseAudioJob, or 0 */
390         boost::shared_ptr<AnalyseAudioJob> _analyse_audio_job;
391
392         void signal_changed (Property);
393         void examine_content_finished ();
394         void analyse_audio_finished ();
395         std::string video_state_identifier () const;
396
397         /** Complete path to directory containing the film metadata;
398          *  must not be relative.
399          */
400         std::string _directory;
401         /** Mutex for _directory */
402         mutable boost::mutex _directory_mutex;
403         
404         /** Name for DVD-o-matic */
405         std::string _name;
406         /** True if a auto-generated DCI-compliant name should be used for our DCP */
407         bool _use_dci_name;
408         /** File or directory containing content; may be relative to our directory
409          *  or an absolute path.
410          */
411         std::string _content;
412         /** If this is true, we will believe the length specified by the content
413          *  file's header; if false, we will run through the whole content file
414          *  the first time we see it in order to obtain the length.
415          */
416         bool _trust_content_header;
417         /** The type of content that this Film represents (feature, trailer etc.) */
418         DCPContentType const * _dcp_content_type;
419         /** The format to present this Film in (flat, scope, etc.) */
420         Format const * _format;
421         /** The crop to apply to the source */
422         Crop _crop;
423         /** Video filters that should be used when generating DCPs */
424         std::vector<Filter const *> _filters;
425         /** Scaler algorithm to use */
426         Scaler const * _scaler;
427         /** Frames to trim off the start of the DCP */
428         int _trim_start;
429         /** Frames to trim off the end of the DCP */
430         int _trim_end;
431         /** true to create an A/B comparison DCP, where the left half of the image
432             is the video without any filters or post-processing, and the right half
433             has the specified filters and post-processing.
434         */
435         bool _dcp_ab;
436         /** The audio stream to use from our content */
437         boost::shared_ptr<AudioStream> _content_audio_stream;
438         /** List of filenames of external audio files, in channel order
439             (L, R, C, Lfe, Ls, Rs)
440         */
441         std::vector<std::string> _external_audio;
442         /** true to use audio from our content file; false to use external audio */
443         bool _use_content_audio;
444         /** Gain to apply to audio in dB */
445         float _audio_gain;
446         /** Delay to apply to audio (positive moves audio later) in milliseconds */
447         int _audio_delay;
448         /** Duration to make still-sourced films (in seconds) */
449         int _still_duration;
450         boost::shared_ptr<SubtitleStream> _subtitle_stream;
451         /** True if subtitles should be shown for this film */
452         bool _with_subtitles;
453         /** y offset for placing subtitles, in source pixels; +ve is further down
454             the frame, -ve is further up.
455         */
456         int _subtitle_offset;
457         /** scale factor to apply to subtitles */
458         float _subtitle_scale;
459         /** index of colour LUT to use when converting RGB to XYZ.
460          *  0: sRGB
461          *  1: Rec 709
462          */
463         int _colour_lut;
464         /** bandwidth for J2K files in bits per second */
465         int _j2k_bandwidth;
466
467         /** DCI naming stuff */
468         DCIMetadata _dci_metadata;
469         /** The date that we should use in a DCI name */
470         boost::gregorian::date _dci_date;
471         /** Frames per second to run our DCP at */
472         int _dcp_frame_rate;
473
474         /* Data which are cached to speed things up */
475
476         /** Size, in pixels, of the source (ignoring cropping) */
477         libdcp::Size _size;
478         /** The length of the source, in video frames (as far as we know) */
479         boost::optional<SourceFrame> _length;
480         boost::optional<int> _dcp_intrinsic_duration;
481         /** MD5 digest of our content file */
482         std::string _content_digest;
483         /** The audio streams in our content */
484         std::vector<boost::shared_ptr<AudioStream> > _content_audio_streams;
485         /** A stream to represent possible external audio (will always exist) */
486         boost::shared_ptr<AudioStream> _external_audio_stream;
487         /** the subtitle streams that we can use */
488         std::vector<boost::shared_ptr<SubtitleStream> > _subtitle_streams;
489         /** Frames per second of the source */
490         float _source_frame_rate;
491
492         /** true if our state has changed since we last saved it */
493         mutable bool _dirty;
494
495         /** Mutex for all state except _directory */
496         mutable boost::mutex _state_mutex;
497
498         friend class paths_test;
499         friend class film_metadata_test;
500 };
501
502 #endif